:root {
    --bg: #f5efe4;
    --surface: #efe5d5;
    --surface-strong: #e1d1bb;
    --ink: #261d17;
    --muted: #66584e;
    --line: rgba(38, 29, 23, 0.12);
    --accent: #9e4f2f;
    --accent-soft: #c98358;
    --dark: #18120f;
    --light: #fffaf4;
    --shadow: 0 24px 60px rgba(34, 24, 17, 0.12);
    --radius: 28px;
    --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(201, 131, 88, 0.18), transparent 28%),
        linear-gradient(180deg, #f7f1e7 0%, #f3ebde 48%, #efe7da 100%);
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    line-height: 1.6;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
p, li { color: var(--muted); }
h1, h2, h3 {
    margin: 0 0 0.5rem;
    color: var(--ink);
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    line-height: 0.96;
}
h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2.3rem, 4.5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 2.3vw, 2rem); }
.wrap { width: min(calc(100% - 2rem), var(--wrap)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 0; }
.skip-link:focus { left: 1rem; top: 1rem; z-index: 20; padding: 0.75rem 1rem; background: var(--dark); color: white; }
.site-header {
    position: sticky; top: 0; z-index: 10; backdrop-filter: blur(12px);
    background: rgba(247, 241, 231, 0.85); border-bottom: 1px solid rgba(38, 29, 23, 0.08);
}
.topbar, .nav-shell, .site-nav, .hero-actions, .hero-points, .contact-chip-group, .footer-meta, .footer-grid, .feature-list, .mini-card-grid {
    display: flex;
}
.topbar { justify-content: space-between; gap: 1rem; padding: 0.7rem 0; font-size: 0.92rem; }
.topbar a { color: var(--accent); font-weight: 700; }
.nav-shell { align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 0; }
.brand img, .footer-logo { width: 180px; }
.site-nav { align-items: center; gap: 1.4rem; }
.site-nav a { position: relative; font-weight: 600; color: var(--ink); }
.site-nav a[aria-current="page"]::after, .site-nav a:hover::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -0.45rem; height: 2px; background: var(--accent);
}
.menu-toggle { display: none; }
.button, .text-link { transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 3rem; padding: 0.9rem 1.35rem; border-radius: 999px; border: 1px solid transparent; font-weight: 700; }
.button:hover, .text-link:hover { transform: translateY(-1px); }
.button-accent { background: var(--accent); color: white; box-shadow: 0 16px 30px rgba(158, 79, 47, 0.22); }
.button-secondary { border-color: var(--line); background: rgba(255, 250, 244, 0.7); }
.button-dark { background: var(--dark); color: white; }
.button-light { background: var(--light); color: var(--dark); }
.text-link { color: var(--accent); font-weight: 800; }
.hero, .section, .page-hero { padding: 4.5rem 0; }
.hero { padding-top: 5rem; }
.hero-grid, .panel-grid, .split-grid, .interior-grid, .footer-grid, .contact-layout { display: grid; gap: 2rem; }
.hero-grid, .panel-grid, .split-grid, .interior-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; }
.eyebrow, .card-kicker { margin-bottom: 1rem; color: var(--accent); font-size: 0.82rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.lede { font-size: 1.1rem; }
.narrow { max-width: 48rem; }
.hero-actions, .hero-points, .contact-chip-group, .footer-meta { flex-wrap: wrap; gap: 0.85rem; }
.hero-points, .detail-list { padding: 0; margin: 1.5rem 0 0; list-style: none; }
.hero-points li, .detail-list li, .contact-chip-group span { padding: 0.8rem 1rem; border-radius: 18px; background: rgba(255, 250, 244, 0.72); border: 1px solid rgba(38, 29, 23, 0.08); }
.image-stack { position: relative; min-height: 38rem; }
.portrait-card, .collection-card, .media-block, .editorial-card img, .contact-panel, .dark-card { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.portrait-card { position: absolute; width: min(30rem, 78%); background: white; padding: 0.9rem; }
.portrait-card img { border-radius: calc(var(--radius) - 10px); aspect-ratio: 4 / 5; object-fit: cover; }
.tilt-left { top: 0; left: 0; transform: rotate(-4deg); }
.tilt-right { right: 0; bottom: 2rem; transform: rotate(6deg); }
.portrait-card.small { width: min(19rem, 52%); }
.floating-note {
    position: absolute; left: 2rem; right: 4rem; bottom: -1rem; padding: 1.25rem 1.4rem; border-radius: 24px;
    background: rgba(24, 18, 15, 0.9); color: rgba(255, 250, 244, 0.85); box-shadow: 0 24px 50px rgba(24, 18, 15, 0.28);
}
.floating-note strong, .floating-note p { color: inherit; }
.warm-panel { background: rgba(225, 209, 187, 0.45); border-block: 1px solid rgba(38, 29, 23, 0.06); }
.feature-list, .mini-card-grid { flex-wrap: wrap; gap: 1rem; }
.feature-list article, .mini-card-grid article, .value-grid article, .process-grid article {
    flex: 1 1 220px; padding: 1.4rem; border-radius: 24px; background: rgba(255, 250, 244, 0.7); border: 1px solid rgba(38, 29, 23, 0.08);
}
.section-head { margin-bottom: 2rem; }
.collection-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.4rem; }
.collection-card { position: relative; min-height: 22rem; background: var(--dark); }
.collection-card img { height: 100%; object-fit: cover; filter: saturate(1.04) contrast(1.02); }
.collection-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(24, 18, 15, 0.02), rgba(24, 18, 15, 0.78)); }
.collection-card.wide { grid-column: span 2; }
.card-copy { position: absolute; inset: auto 1.4rem 1.4rem; z-index: 1; }
.card-copy h3, .card-copy p, .light h2, .light p, .light .eyebrow { color: var(--light); }
.split-section .media-block img, .interior-figure img, .editorial-card img { height: 100%; min-height: 24rem; object-fit: cover; }
.dark-showcase, .page-hero.dark { background: radial-gradient(circle at top, rgba(201, 131, 88, 0.18), transparent 30%), linear-gradient(180deg, #1a1410 0%, #17110d 100%); }
.dark-showcase h1, .dark-showcase .lede, .page-hero.dark h1, .page-hero.dark .lede, .page-hero.dark .eyebrow { color: var(--light); }
.value-grid, .process-grid, .collection-stack { display: grid; gap: 1.3rem; }
.value-grid, .process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.value-grid article, .process-grid article, .dark-showcase .button { background: rgba(255, 250, 244, 0.08); border-color: rgba(255, 250, 244, 0.1); }
.dark-showcase article h3, .dark-showcase article p, .process-grid article h3, .process-grid article p { color: var(--light); }
.process-grid article span { display: inline-block; margin-bottom: 0.75rem; color: var(--accent-soft); font-weight: 800; }
.interior-grid { grid-template-columns: 0.95fr 1.05fr; }
.interior-figure, .media-block { border-radius: 32px; overflow: hidden; }
.contact-layout { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.contact-panel { padding: 2rem; background: rgba(255, 250, 244, 0.8); }
.dark-card { background: var(--dark); color: var(--light); }
.dark-card h2, .dark-card p, .dark-card li { color: var(--light); }
.editorial-card { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 1.8rem; align-items: center; padding: 1.4rem; border-radius: 32px; background: rgba(255, 250, 244, 0.72); border: 1px solid rgba(38, 29, 23, 0.08); }
.editorial-card.reverse { grid-template-columns: 0.95fr 1.05fr; }
.editorial-card.reverse img { order: 2; }
.footer-grid { grid-template-columns: 1.4fr 0.8fr 0.8fr; padding-bottom: 2rem; }
.site-footer { padding: 2rem 0 3rem; border-top: 1px solid rgba(38, 29, 23, 0.08); }
.site-footer a { display: block; margin-bottom: 0.4rem; }
.footer-meta { justify-content: space-between; border-top: 1px solid rgba(38, 29, 23, 0.08); padding-top: 1rem; font-size: 0.95rem; }
.footer-meta.simple { justify-content: center; gap: 1.25rem; border-top: 0; }
.section-cta { margin-top: 2rem; }
.section-cta.center { text-align: center; }
.shop-shell .woocommerce-result-count,
.shop-shell .woocommerce-breadcrumb,
.shop-shell .woocommerce-ordering,
.shop-shell .price,
.shop-shell .woocommerce-loop-product__title,
.shop-shell .product_meta,
.shop-shell .woocommerce-tabs,
.shop-shell .woocommerce-product-details__short-description,
.shop-shell .quantity,
.shop-shell .input-text,
.shop-shell label,
.shop-shell .woocommerce-info,
.shop-shell .woocommerce-message {
    color: var(--muted);
}
.shop-shell .woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}
.shop-shell .woocommerce ul.products::before,
.shop-shell .woocommerce ul.products::after {
    display: none;
}
.shop-shell .woocommerce ul.products li.product,
.shop-shell .woocommerce div.product {
    width: 100%;
    margin: 0;
    padding: 1.2rem;
    border-radius: 28px;
    background: rgba(255, 250, 244, 0.82);
    box-shadow: var(--shadow);
    border: 1px solid rgba(38, 29, 23, 0.08);
}
.shop-shell .woocommerce ul.products li.product a img {
    border-radius: 20px;
    margin-bottom: 1rem;
}
.shop-shell .woocommerce ul.products li.product .button,
.shop-shell .woocommerce button.button,
.shop-shell .woocommerce a.button,
.shop-shell .woocommerce input.button {
    background: var(--accent);
    color: #fff;
    border-radius: 999px;
    padding: 0.9rem 1.2rem;
}
.shop-shell .woocommerce span.onsale {
    background: var(--dark);
}
.shop-shell .woocommerce div.product {
    display: grid;
    gap: 2rem;
}
.shop-shell .woocommerce div.product div.images img,
.shop-shell .woocommerce div.product div.images .woocommerce-product-gallery__image {
    border-radius: 24px;
}
.shop-shell .woocommerce div.product form.cart {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
}
.shop-shell .woocommerce .quantity .qty,
.shop-shell .woocommerce form .form-row input.input-text,
.shop-shell .woocommerce form .form-row textarea,
.shop-shell .woocommerce form .form-row select {
    min-height: 2.8rem;
    border-radius: 14px;
    border: 1px solid rgba(38, 29, 23, 0.16);
    padding: 0.6rem 0.8rem;
    background: #fff;
}
.shop-shell .woocommerce table.shop_table,
.shop-shell .woocommerce-cart-form,
.shop-shell .cart-collaterals,
.shop-shell .woocommerce-checkout-review-order,
.shop-shell .woocommerce form.checkout {
    background: rgba(255, 250, 244, 0.82);
    border-radius: 28px;
    padding: 1.2rem;
    border: 1px solid rgba(38, 29, 23, 0.08);
}
.shop-shell .woocommerce .col2-set,
.shop-shell .woocommerce-page .col2-set {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
}
@media (max-width: 980px) {
    .site-nav {
        position: absolute; left: 1rem; right: 1rem; top: calc(100% + 0.5rem); flex-direction: column; align-items: flex-start;
        padding: 1rem; border-radius: 24px; background: rgba(255, 250, 244, 0.96); border: 1px solid rgba(38, 29, 23, 0.08);
        box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity 160ms ease, transform 160ms ease;
    }
    .site-header.menu-open .site-nav { opacity: 1; pointer-events: auto; transform: translateY(0); }
    .menu-toggle { display: inline-flex; padding: 0.8rem 1rem; border: 1px solid var(--line); border-radius: 999px; background: transparent; font: inherit; font-weight: 700; }
    .hide-mobile { display: none; }
    .hero-grid, .panel-grid, .split-grid, .interior-grid, .footer-grid, .contact-layout, .editorial-card, .editorial-card.reverse, .value-grid, .process-grid, .collection-grid, .shop-shell .woocommerce ul.products, .shop-shell .woocommerce .col2-set, .shop-shell .woocommerce-page .col2-set { grid-template-columns: 1fr; }
    .collection-card.wide { grid-column: auto; }
    .image-stack { min-height: 30rem; }
    .floating-note { left: 1rem; right: 1rem; }
    .topbar { display: none; }
}
@media (max-width: 640px) {
    .hero, .section, .page-hero { padding: 3.5rem 0; }
    .hero { padding-top: 4rem; }
    .image-stack { min-height: 24rem; }
    .portrait-card { width: 82%; }
    .portrait-card.small { width: 50%; }
    .contact-panel, .editorial-card { padding: 1.25rem; }
}
