/* Canape Shop front-end styles. */

:root {
  --ink: #191817;
  --muted: #6f6961;
  --cream: #f7f4ef;
  --sand: #ebe3d7;
  --paper: #fffdfa;
  --gold: #b08a4f;
  --gold-dark: #8b6835;
  --line: #d9d1c6;
  --charcoal: #242321;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(33, 27, 20, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, select { cursor: pointer; }
::selection { background: var(--gold); color: var(--white); }

.shell { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.eyebrow { margin: 0 0 14px; color: var(--gold-dark); font-size: 12px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.035em; line-height: 1.06; }
h1 { margin-bottom: 24px; font-size: clamp(44px, 6vw, 78px); }
h2 { margin-bottom: 20px; font-size: clamp(36px, 4.5vw, 58px); }
h3 { line-height: 1.2; }

.announcement { background: var(--charcoal); color: #f4eee5; font-size: 12px; letter-spacing: .04em; }
.announcement__inner { min-height: 34px; display: flex; align-items: center; justify-content: center; gap: 56px; }
.announcement__inner span + span { position: relative; }
.announcement__inner span + span::before { content: ""; position: absolute; width: 3px; height: 3px; border-radius: 50%; left: -29px; top: 50%; background: var(--gold); }

.site-header { position: sticky; top: 0; z-index: 40; background: rgba(255,253,250,.94); border-bottom: 1px solid rgba(217,209,198,.8); backdrop-filter: blur(16px); }
.header__inner { min-height: 78px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 10px; line-height: 1; }
.brand img { width: 48px; height: 48px; object-fit: cover; border-radius: 50%; }
.brand span { display: grid; gap: 4px; }
.brand strong { font-family: Georgia, "Times New Roman", serif; font-size: 21px; font-weight: 500; }
.brand small { font-size: 8px; font-weight: 800; letter-spacing: .35em; }
.nav { display: flex; justify-content: center; align-items: center; gap: clamp(18px, 2.4vw, 38px); }
.nav .menu { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2.4vw, 38px); margin: 0; padding: 0; list-style: none; }
.nav a { position: relative; padding-block: 28px; color: #514d47; font-size: 13px; font-weight: 700; }
.nav a::after { content: ""; position: absolute; right: 0; bottom: 20px; left: 0; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform .2s ease; }
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); }
.menu-button { display: none; width: 42px; height: 42px; padding: 10px; border: 1px solid var(--line); background: transparent; }
.menu-button span { display: block; height: 1px; margin: 5px 0; background: var(--ink); }

.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 12px 25px; border: 1px solid var(--ink); border-radius: 2px; background: var(--ink); color: var(--white); font-size: 13px; font-weight: 800; letter-spacing: .02em; transition: background .2s ease, color .2s ease, transform .2s ease; }
.button:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-1px); }
.button--small { min-height: 42px; padding: 9px 17px; }
.button--full { width: 100%; }
.button--outline { background: transparent; color: var(--ink); }
.button--outline:hover { color: var(--white); }
.button--light { background: var(--cream); border-color: var(--cream); color: var(--ink); }
.button--light:hover { background: var(--white); border-color: var(--white); color: var(--ink); }
.text-link { display: inline-flex; align-items: center; gap: 14px; min-height: 50px; padding: 10px 3px; border-bottom: 1px solid var(--ink); font-size: 13px; font-weight: 800; }

.hero { overflow: hidden; background: var(--cream); }
.hero__grid { min-height: 710px; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 66px; padding-block: 60px; }
.hero__copy { padding-right: 8px; }
.hero__lead { max-width: 620px; margin-bottom: 30px; color: var(--muted); font-size: 18px; line-height: 1.75; }
.hero__actions { display: flex; align-items: center; gap: 28px; }
.hero__meta { display: flex; gap: 52px; margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); }
.hero__meta div { display: grid; gap: 4px; }
.hero__meta strong { font-family: Georgia, "Times New Roman", serif; font-size: 21px; font-weight: 500; }
.hero__meta span { color: var(--muted); font-size: 12px; }
.hero__visual { position: relative; justify-self: end; width: min(100%, 530px); }
.hero__visual::before { content: ""; position: absolute; top: -18px; right: -18px; bottom: 18px; left: 18px; border: 1px solid #c9b895; }
.hero__visual > img { position: relative; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; box-shadow: var(--shadow); }
.hero__badge { position: absolute; right: -28px; bottom: 34px; width: 230px; padding: 20px 22px; background: var(--paper); box-shadow: 0 14px 34px rgba(31,25,19,.14); }
.hero__badge span, .hero__badge small { display: block; color: var(--muted); font-size: 11px; }
.hero__badge strong { display: block; margin: 5px 0; font-family: Georgia, "Times New Roman", serif; font-size: 22px; font-weight: 500; }

.trust-strip { padding: 34px 0 24px; border-block: 1px solid var(--line); background: var(--white); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-strip__grid div { display: grid; gap: 2px; padding: 2px 28px; border-right: 1px solid var(--line); text-align: center; }
.trust-strip__grid div:first-child { padding-left: 0; }
.trust-strip__grid div:last-child { padding-right: 0; border-right: 0; }
.trust-strip strong { font-family: Georgia, "Times New Roman", serif; font-size: 25px; font-weight: 500; }
.trust-strip span { color: var(--muted); font-size: 12px; }
.data-note { margin-top: 18px; margin-bottom: 0; color: #8a847d; font-size: 10px; text-align: center; }

.section { padding: 112px 0; }
.section--sand { background: var(--sand); }
.section--charcoal { background: var(--charcoal); color: var(--white); }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 70px; margin-bottom: 52px; }
.section-heading h2 { max-width: 730px; margin-bottom: 0; }
.section-heading > p { max-width: 430px; margin-bottom: 8px; color: var(--muted); }
.section-heading--light > p { color: #c6c0b8; }

.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.category-card { position: relative; min-height: 245px; padding: 28px; border-right: 1px solid var(--line); overflow: hidden; }
.category-card:last-child { border-right: 0; }
.category-card > span, .category-card > div > span { color: var(--gold-dark); font-size: 11px; font-weight: 800; letter-spacing: .15em; }
.category-card h3 { margin: 68px 0 8px; font-family: Georgia, "Times New Roman", serif; font-size: 28px; font-weight: 500; }
.category-card p { margin-bottom: 0; color: var(--muted); font-size: 13px; }
.category-card--dark { background: var(--charcoal); color: var(--white); }
.category-card--dark p { color: #bfb8af; }
.category-card--gold { background: #c4a36c; }
.category-card--gold > span, .category-card--gold p { color: #3f3527; }
.category-card--image { padding: 0; background: #000; }
.category-card--image img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.category-card--image > div { position: absolute; inset: 0; padding: 28px; color: var(--white); }
.category-card--image p { color: #e6dfd6; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px 22px; margin-top: 78px; }
.product-card { border-bottom: 1px solid var(--line); background: var(--white); }
.product-card__image { position: relative; overflow: hidden; background: #eee8e0; }
.product-card__image img { width: 100%; aspect-ratio: 1.1 / 1; object-fit: cover; transition: transform .35s ease; }
.product-card:hover .product-card__image img { transform: scale(1.025); }
.product-card__image > span { position: absolute; top: 14px; left: 14px; padding: 7px 9px; background: rgba(255,253,250,.92); color: var(--ink); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.product-card__body { padding: 24px 2px 22px; }
.product-card h3 { margin-bottom: 10px; font-family: Georgia, "Times New Roman", serif; font-size: 25px; font-weight: 500; }
.product-card p { min-height: 48px; margin-bottom: 20px; color: var(--muted); font-size: 13px; }
.product-card__footer { display: flex; justify-content: space-between; align-items: end; gap: 14px; }
.product-card__footer > div { display: grid; }
.product-card__footer small { color: var(--muted); font-size: 10px; text-transform: uppercase; }
.product-card__footer strong { font-size: 15px; }
.product-card__footer button, .product-card__footer > a { padding: 7px 0; border: 0; border-bottom: 1px solid var(--ink); background: transparent; font-size: 12px; font-weight: 800; }
.catalog-note { margin: 32px 0 0; color: var(--muted); font-size: 11px; }

.builder-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 80px; align-items: start; }
.builder-copy { position: sticky; top: 126px; }
.builder-copy > p:not(.eyebrow) { max-width: 540px; color: #625a50; }
.builder-copy img { width: 100%; max-height: 370px; margin-top: 38px; object-fit: cover; }
.builder-panel { padding: 44px; background: var(--paper); box-shadow: 0 20px 52px rgba(62,49,33,.11); }
.form-row { display: grid; gap: 8px; margin-bottom: 20px; }
.form-row label, .shipping-card label { color: #514b44; font-size: 12px; font-weight: 800; }
.form-row input, .form-row select, .shipping-card select { width: 100%; min-height: 50px; padding: 11px 14px; border: 1px solid #cfc6ba; border-radius: 0; outline: 0; background: var(--white); color: var(--ink); }
.form-row input:focus, .form-row select:focus, .shipping-card select:focus { border-color: var(--gold-dark); box-shadow: 0 0 0 2px rgba(176,138,79,.15); }
.form-row input:disabled { color: #77716a; background: #eeeae4; }
.price-summary { margin: 30px 0 22px; padding: 23px 0; border-block: 1px solid var(--line); }
.price-summary div { display: flex; justify-content: space-between; align-items: baseline; gap: 15px; margin-bottom: 7px; }
.price-summary span { color: var(--muted); font-size: 12px; }
.price-summary strong { font-family: Georgia, "Times New Roman", serif; font-size: 24px; font-weight: 500; text-align: right; }
.price-summary small { display: block; margin-top: 14px; color: #8d867f; font-size: 10px; }
.builder-terms { margin: 12px 0 0; color: var(--muted); font-size: 10px; text-align: center; }

.craftsmanship-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; }
.craftsmanship-copy > p:not(.eyebrow) { color: var(--muted); font-size: 16px; }
.feature-list { margin: 38px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.feature-list li { display: grid; grid-template-columns: 150px 1fr; gap: 25px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.feature-list strong { font-size: 13px; }
.feature-list span { color: var(--muted); font-size: 13px; }
.video-grid { display: grid; grid-template-columns: 1.28fr .72fr; gap: 16px; align-items: end; }
.video-card { margin: 0; }
.video-card video { width: 100%; aspect-ratio: 3 / 4; background: #171717; object-fit: cover; }
.video-card--large video { aspect-ratio: 1 / 1; }
.video-card figcaption { display: grid; gap: 2px; padding-top: 12px; }
.video-card figcaption strong { font-family: Georgia, "Times New Roman", serif; font-size: 17px; font-weight: 500; }
.video-card figcaption span { color: var(--muted); font-size: 10px; }

.fabric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.fabric-card { background: #302f2c; }
.fabric-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.fabric-card div { padding: 20px; }
.fabric-card h3 { margin-bottom: 5px; font-family: Georgia, "Times New Roman", serif; font-size: 21px; font-weight: 500; }
.fabric-card p { margin-bottom: 0; color: #bdb7ae; font-size: 12px; }

.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.project-grid figure { position: relative; min-height: 330px; margin: 0; overflow: hidden; background: #eee8df; }
.project-grid figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.project-grid figure:hover img { transform: scale(1.018); }
.project-grid__wide { grid-column: span 1; }
.project-grid figcaption { position: absolute; right: 16px; bottom: 16px; left: 16px; padding: 13px 16px; background: rgba(255,253,250,.92); font-size: 12px; font-weight: 800; }
.project-cta { display: flex; justify-content: space-between; align-items: center; gap: 40px; margin-top: 34px; padding: 30px 0; border-block: 1px solid var(--line); }
.project-cta > div { display: grid; gap: 4px; }
.project-cta strong { font-family: Georgia, "Times New Roman", serif; font-size: 25px; font-weight: 500; }
.project-cta span { color: var(--muted); font-size: 13px; }

.guide-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: start; }
.guide-grid > div:first-child > p:not(.eyebrow) { max-width: 650px; color: #625a50; }
.size-table-wrap { margin-top: 34px; overflow-x: auto; }
table { width: 100%; border-collapse: collapse; background: var(--paper); font-size: 13px; }
th, td { padding: 15px 18px; border-bottom: 1px solid var(--line); text-align: left; }
th { color: #625a50; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.shipping-card { padding: 38px; background: var(--charcoal); color: var(--white); }
.shipping-card__label { color: #c7a975; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.shipping-card h3 { margin: 12px 0 22px; font-family: Georgia, "Times New Roman", serif; font-size: 36px; font-weight: 500; }
.shipping-card label { display: block; margin-bottom: 8px; color: #ddd6cd; }
.shipping-result { display: flex; justify-content: space-between; gap: 20px; margin-top: 22px; padding: 20px 0; border-block: 1px solid #4f4d49; }
.shipping-result span { color: #beb8b0; font-size: 12px; }
.shipping-result strong { font-family: Georgia, "Times New Roman", serif; font-size: 23px; font-weight: 500; text-align: right; }
.shipping-card p { margin: 18px 0 0; color: #aaa49c; font-size: 10px; }

.faq-section { border-top: 1px solid var(--line); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 23px 44px 23px 0; font-size: 15px; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 18px; color: var(--gold-dark); font-family: Georgia, serif; font-size: 26px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 720px; padding: 0 40px 22px 0; color: var(--muted); font-size: 13px; }

.contact-section { padding: 92px 0; background: #9a7644; color: var(--white); }
.contact-section .eyebrow { color: #f4e2c6; }
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 100px; align-items: center; }
.contact-grid h2 { max-width: 720px; }
.contact-grid > div > p:not(.eyebrow) { max-width: 650px; color: #efe3d2; }
.contact-grid address { padding: 36px; border: 1px solid rgba(255,255,255,.45); font-style: normal; }
.contact-grid address span { display: block; margin-bottom: 8px; color: #efe3d2; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-grid address strong { font-family: Georgia, "Times New Roman", serif; font-size: 24px; font-weight: 500; }
.contact-grid address p { margin: 12px 0 18px; color: #efe3d2; font-size: 13px; }
.contact-grid address a { border-bottom: 1px solid rgba(255,255,255,.65); font-size: 12px; font-weight: 800; }

.footer { padding: 72px 0 26px; background: #171715; color: #ddd8d0; }
.footer__grid { display: grid; grid-template-columns: 1.6fr repeat(3, .8fr); gap: 54px; }
.brand--footer img { filter: brightness(1.2); }
.brand--footer strong { color: var(--white); }
.footer__brand p { max-width: 300px; margin: 20px 0 0; color: #96918a; font-size: 12px; }
.footer__grid > div:not(.footer__brand) { display: flex; flex-direction: column; gap: 9px; }
.footer h3 { margin-bottom: 8px; color: var(--white); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.footer__grid a { color: #aaa59d; font-size: 12px; }
.footer__grid a:hover { color: var(--white); }
.footer__bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 60px; padding-top: 22px; border-top: 1px solid #343330; color: #77736e; font-size: 10px; }
.floating-wa { position: fixed; right: 22px; bottom: 22px; z-index: 35; display: grid; width: 54px; height: 54px; place-items: center; border: 1px solid #d8f7e3; border-radius: 50%; background: #1c9c50; color: var(--white); box-shadow: 0 12px 30px rgba(11,83,39,.25); font-size: 12px; font-weight: 900; }

.skip-link:focus { position: fixed; top: 8px; left: 8px; z-index: 1000; width: auto; height: auto; margin: 0; padding: 10px 14px; clip: auto; background: var(--white); color: var(--ink); }
.site-main { min-height: 55vh; }
.page-hero { padding: 90px 0 58px; border-bottom: 1px solid var(--line); background: var(--cream); }
.page-hero h1 { max-width: 900px; margin-bottom: 0; font-size: clamp(42px, 6vw, 68px); }
.page-hero > .shell > p:not(.eyebrow) { max-width: 650px; color: var(--muted); }
.entry-content { padding-top: 70px; padding-bottom: 100px; }
.entry-content > * { max-width: 820px; }
.entry-content > .alignwide { max-width: 1100px; }
.entry-content > .alignfull { max-width: none; }
.entry-content > .canape-builder { width: 100%; max-width: 1200px; }
.entry-content h2 { margin-top: 54px; font-size: 42px; }
.entry-content h3 { margin-top: 34px; font-family: Georgia, "Times New Roman", serif; font-size: 27px; font-weight: 500; }
.entry-content p, .entry-content li { color: var(--muted); }
.entry-content a:not(.button) { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 3px; }
.entry-content table { max-width: 100%; }
.post-card { padding: 28px 0; border-bottom: 1px solid var(--line); }
.post-card h2 { margin: 0 0 12px; font-size: 34px; }
.builder-fallback { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.builder-fallback > div { max-width: 750px; }
.builder-fallback p:not(.eyebrow) { color: #625a50; }

/* WooCommerce */
.woo-main { padding: 80px 0 110px; }
.woocommerce .woocommerce-breadcrumb { margin-bottom: 34px; color: var(--muted); font-size: 11px; }
.woocommerce .woocommerce-products-header { margin-bottom: 42px; }
.woocommerce .woocommerce-products-header__title { font-size: clamp(42px, 5vw, 64px); }
.woocommerce .woocommerce-result-count, .woocommerce .woocommerce-ordering { margin-bottom: 30px; color: var(--muted); font-size: 12px; }
.woocommerce .woocommerce-ordering select { min-height: 42px; padding: 8px 12px; border: 1px solid var(--line); background: var(--white); }
.woocommerce ul.products { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 42px 22px; margin: 0; }
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product { float: none; width: auto; margin: 0; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.woocommerce ul.products li.product a img { aspect-ratio: 1.1 / 1; margin-bottom: 18px; background: #eee8e0; object-fit: cover; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { padding: 0; color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: 24px; font-weight: 500; line-height: 1.2; }
.woocommerce ul.products li.product .price { color: var(--ink); font-size: 14px; font-weight: 800; }
.woocommerce ul.products li.product .button { margin-top: 12px; min-height: 40px; padding: 8px 15px; color: var(--white); }
.woocommerce span.onsale { min-width: 0; min-height: 0; padding: 8px 10px; border-radius: 0; background: var(--gold-dark); line-height: 1; }
.woocommerce div.product { display: flow-root; }
.woocommerce div.product div.images img { background: #eee8e0; }
.woocommerce div.product .product_title { margin-bottom: 15px; font-size: clamp(38px, 4vw, 55px); }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--gold-dark); font-family: Georgia, "Times New Roman", serif; font-size: 27px; }
.woocommerce div.product form.cart .variations { margin: 25px 0; }
.woocommerce div.product form.cart .variations th, .woocommerce div.product form.cart .variations td { display: block; padding: 7px 0; border: 0; text-align: left; }
.woocommerce div.product form.cart .variations select, .woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce form .form-row select { width: 100%; min-height: 48px; padding: 10px 13px; border: 1px solid var(--line); background: var(--white); }
.woocommerce .quantity .qty { min-height: 48px; border: 1px solid var(--line); }
.woocommerce div.product form.cart .button, .woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt { min-height: 48px; border-radius: 2px; background: var(--ink); color: var(--white); }
.woocommerce div.product form.cart .button:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover { background: var(--gold-dark); }
.woocommerce-message, .woocommerce-info { border-top-color: var(--gold); background: var(--cream); }
.woocommerce-message::before, .woocommerce-info::before { color: var(--gold-dark); }
.woocommerce table.shop_table { border-color: var(--line); border-radius: 0; }
.woocommerce table.shop_table th, .woocommerce table.shop_table td { border-color: var(--line); }
.woocommerce-cart .cart-collaterals .cart_totals, .woocommerce-checkout #order_review { padding: 25px; background: var(--cream); }
.woocommerce-checkout #payment { border-radius: 0; background: var(--cream); }
.canape-color-field { margin: 16px 0; }
.canape-color-field label { display: block; margin-bottom: 7px; font-size: 12px; font-weight: 800; }
.canape-color-field input { width: 100%; min-height: 48px; padding: 10px 13px; border: 1px solid var(--line); }
.canape-product-wa { display: inline-flex; margin: 14px 0 0; padding-bottom: 4px; border-bottom: 1px solid var(--ink); font-size: 12px; font-weight: 800; }
.canape-notice { margin: 18px 0; padding: 16px; border-left: 3px solid var(--gold); background: var(--cream); font-size: 12px; }

a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid rgba(176,138,79,.45); outline-offset: 3px; }

@media (max-width: 1040px) {
  .header__inner { grid-template-columns: auto auto 1fr; }
  .header__cta { justify-self: end; }
  .menu-button { display: block; order: 2; }
  .brand { order: 1; }
  .header__cta { order: 3; }
  .nav { position: absolute; top: 78px; right: 0; left: 0; display: none; padding: 18px 24px 25px; border-bottom: 1px solid var(--line); background: var(--paper); box-shadow: 0 20px 36px rgba(30,24,19,.1); }
  .nav--open { display: grid; gap: 0; }
  .nav .menu { display: grid; gap: 0; justify-content: stretch; }
  .nav a { padding: 12px 0; }
  .nav a::after { bottom: 5px; }
  .hero__grid { min-height: auto; gap: 42px; }
  .hero__badge { right: -8px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .category-card { border-bottom: 1px solid var(--line); }
  .category-card:nth-child(2) { border-right: 0; }
  .category-card:nth-child(3), .category-card:nth-child(4) { border-bottom: 0; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .builder-grid, .craftsmanship-grid, .guide-grid { gap: 45px; }
  .fabric-grid { grid-template-columns: repeat(2, 1fr); }
  .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 780px) {
  .shell { width: min(100% - 30px, 1200px); }
  .announcement__inner { justify-content: flex-start; gap: 26px; overflow-x: auto; white-space: nowrap; }
  .announcement__inner span + span::before { left: -14px; }
  .header__inner { min-height: 68px; }
  .header__cta { display: none; }
  .nav { top: 68px; }
  .hero__grid { grid-template-columns: 1fr; padding: 64px 0 72px; }
  .hero__copy { order: 2; }
  .hero__visual { order: 1; width: 92%; margin-right: 4%; justify-self: center; }
  .hero__visual > img { aspect-ratio: 4 / 4.5; }
  .hero__badge { right: -4%; bottom: 24px; width: 210px; }
  .hero__lead { font-size: 16px; }
  .hero__meta { gap: 30px; }
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 25px 0; }
  .trust-strip__grid div:nth-child(2) { border-right: 0; }
  .section { padding: 78px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; margin-bottom: 36px; }
  .category-card { min-height: 210px; }
  .category-card h3 { margin-top: 44px; }
  .builder-grid, .craftsmanship-grid, .guide-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .builder-copy { position: static; }
  .builder-copy img { max-height: 320px; }
  .video-grid { max-width: 620px; }
  .faq-grid { gap: 12px; }
  .contact-grid { gap: 35px; }
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  h1 { font-size: 43px; }
  h2 { font-size: 37px; }
  .hero__actions { align-items: stretch; flex-direction: column; gap: 8px; }
  .hero__actions .button, .hero__actions .text-link { justify-content: center; }
  .hero__meta { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .hero__badge { width: 190px; padding: 16px; }
  .trust-strip__grid div { padding-inline: 10px; }
  .category-grid, .product-grid, .project-grid { grid-template-columns: 1fr; }
  .category-card { border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .category-card:last-child { border-bottom: 0 !important; }
  .product-grid { gap: 36px; margin-top: 55px; }
  .product-card p { min-height: auto; }
  .builder-panel { padding: 28px 20px; }
  .price-summary div { display: grid; }
  .price-summary strong { text-align: left; }
  .video-grid { grid-template-columns: 1fr; }
  .video-card video, .video-card--large video { aspect-ratio: 1 / 1; }
  .fabric-grid { grid-template-columns: 1fr; }
  .project-grid figure { min-height: 230px; }
  .project-cta { align-items: stretch; flex-direction: column; }
  .shipping-card { padding: 28px 20px; }
  .shipping-result { display: grid; }
  .shipping-result strong { text-align: left; }
  .contact-grid address { padding: 26px 20px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 38px 24px; }
  .footer__bottom { align-items: flex-start; flex-direction: column; }
  .builder-fallback { align-items: stretch; flex-direction: column; }
  .woocommerce ul.products { grid-template-columns: 1fr; }
}

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