:root {
    --ink: #1d211e;
    --muted: #666b66;
    --paper: #f7f5f0;
    --white: #fff;
    --soft: #ece9e1;
    --sage: #dce4cf;
    --accent: #bdff56;
    --line: #dcdad3;
    --shell: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "DM Sans", sans-serif; -webkit-font-smoothing: antialiased; }
body, input, button { font-size: 16px; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
.shell { width: min(var(--shell), calc(100% - clamp(2rem, 8vw, 8rem))); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.skip-link { position: fixed; z-index: 50; top: -5rem; left: 1rem; padding: .75rem 1rem; background: var(--ink); color: white; }
.skip-link:focus { top: 1rem; }
.eyebrow { margin: 0 0 1rem; font-size: .72rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }

.announcement { display: grid; min-height: 34px; place-items: center; padding: .4rem 1rem; background: var(--ink); color: white; text-align: center; }
.announcement p { margin: 0; font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.site-header { position: relative; z-index: 10; border-bottom: 1px solid var(--line); background: rgba(247, 245, 240, .96); }
.header-main { display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: center; min-height: 82px; }
.brand { display: inline-flex; align-items: center; gap: .65rem; width: max-content; font: 800 1.3rem/1 "Manrope", sans-serif; letter-spacing: -.05em; text-decoration: none; }
.brand-mark { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; background: var(--ink); color: var(--accent); font-size: 1rem; }
.desktop-nav { display: flex; align-items: center; gap: clamp(1.1rem, 2vw, 2rem); }
.desktop-nav a, .category-nav a { position: relative; font-size: .88rem; font-weight: 600; text-decoration: none; }
.desktop-nav a::after, .category-nav a::after { position: absolute; right: 0; bottom: -.35rem; left: 0; height: 1px; content: ""; background: currentColor; transform: scaleX(0); transition: transform .2s ease; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after, .category-nav a:hover::after, .category-nav a:focus-visible::after { transform: scaleX(1); }
.header-search { display: flex; justify-self: end; width: min(210px, 100%); border-bottom: 1px solid var(--ink); }
.header-search input { width: 100%; min-width: 0; padding: .6rem 0; border: 0; outline: 0; background: transparent; }
.header-search button { display: grid; width: 38px; padding: 0; place-items: center; border: 0; background: transparent; cursor: pointer; }
.header-search svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.category-nav { display: flex; gap: 1.6rem; overflow-x: auto; padding-top: .9rem; padding-bottom: .9rem; scrollbar-width: none; }
.category-nav::-webkit-scrollbar { display: none; }
.category-nav a { flex: 0 0 auto; color: var(--muted); font-size: .8rem; }

.home-hero { display: grid; grid-template-columns: 52% 48%; min-height: 670px; background: #e6e1d7; }
.home-hero-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(4rem, 8vw, 8rem); }
.home-hero h1 { max-width: 800px; margin: 0; font: 800 clamp(4rem, 8.5vw, 8.7rem)/.88 "Manrope", sans-serif; letter-spacing: -.075em; }
.home-hero-copy > p:not(.eyebrow) { max-width: 580px; margin: 2rem 0; color: #555a55; font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.6; }
.hero-actions { display: flex; gap: 1.5rem; align-items: center; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: .85rem 1.4rem; border: 1px solid var(--ink); font-weight: 700; text-decoration: none; transition: background .2s ease, color .2s ease, transform .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: white; }
.button-dark:hover, .button-dark:focus-visible { background: #343a35; }
.button-light { background: white; color: var(--ink); }
.text-link { font-weight: 700; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: .35rem; }
.home-hero-visual { position: relative; overflow: hidden; min-height: 570px; background: var(--sage); }
.home-hero-visual > img { width: 100%; height: 100%; object-fit: cover; }
.home-hero-visual > a { position: absolute; right: 1.5rem; bottom: 1.5rem; display: grid; gap: .25rem; max-width: 340px; padding: 1rem 1.2rem; background: white; text-decoration: none; box-shadow: 0 12px 35px rgba(0, 0, 0, .1); }
.home-hero-visual > a span { color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.home-hero-visual > a strong { line-height: 1.35; }
.hero-placeholder { display: grid; height: 100%; place-items: center; background: linear-gradient(135deg, var(--sage), #a8b79a); }
.hero-placeholder span { display: grid; width: 240px; aspect-ratio: 1; place-items: center; border: 3px solid var(--ink); border-radius: 50%; font: 800 9rem/1 "Manrope", sans-serif; }
.value-strip { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line); background: white; }
.value-strip > div { display: grid; grid-template-columns: auto 1fr; column-gap: 1rem; padding: 1.6rem clamp(1.5rem, 4vw, 4rem); }
.value-strip > div + div { border-left: 1px solid var(--line); }
.value-strip span { grid-row: 1 / 3; color: var(--muted); font-size: .7rem; }
.value-strip strong { font: 700 .95rem "Manrope", sans-serif; }
.value-strip small { margin-top: .25rem; color: var(--muted); }

.section { padding-top: clamp(4.5rem, 8vw, 8rem); padding-bottom: clamp(4.5rem, 8vw, 8rem); }
.section-head { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr); gap: 3rem; align-items: end; margin-bottom: 2.5rem; }
.section-head h2 { margin: 0; font: 800 clamp(2.7rem, 5.5vw, 5.4rem)/.95 "Manrope", sans-serif; letter-spacing: -.06em; }
.section-head > p { max-width: 480px; margin: 0; color: var(--muted); line-height: 1.7; }
.section-head-row { display: flex; justify-content: space-between; }
.section-head-row > span { color: var(--muted); }
.brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.brand-card { position: relative; display: grid; overflow: hidden; min-height: 440px; background: var(--brand-accent); color: var(--ink); text-decoration: none; }
.brand-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 25%, rgba(0,0,0,.68)); }
.brand-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.brand-card:hover img { transform: scale(1.035); }
.brand-card-copy { position: absolute; z-index: 2; right: 1.5rem; bottom: 1.5rem; left: 1.5rem; color: white; }
.brand-card-copy p { margin: 0 0 .45rem; font-size: .75rem; font-weight: 700; text-transform: uppercase; }
.brand-card-copy h3 { margin: 0 0 .85rem; font: 800 clamp(1.8rem, 3vw, 2.8rem)/1 "Manrope", sans-serif; letter-spacing: -.05em; }
.brand-card-copy span { font-size: .86rem; font-weight: 700; }
.brand-card-letter { display: grid; height: 100%; place-items: center; font: 800 11rem "Manrope", sans-serif; }
.section-products { border-top: 1px solid var(--line); }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 2rem); row-gap: 3.5rem; }
.product-card-image { position: relative; display: grid; overflow: hidden; aspect-ratio: 4 / 5; place-items: center; background: white; text-decoration: none; }
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.product-card-image:hover img { transform: scale(1.025); }
.quick-view { position: absolute; right: .8rem; bottom: .8rem; left: .8rem; padding: .8rem 1rem; background: rgba(255,255,255,.94); font-size: .82rem; font-weight: 700; text-align: center; opacity: 0; transform: translateY(8px); transition: opacity .2s ease, transform .2s ease; }
.product-card-image:hover .quick-view, .product-card-image:focus-visible .quick-view { opacity: 1; transform: translateY(0); }
.product-card-copy { display: flex; gap: 1rem; justify-content: space-between; padding-top: 1rem; }
.product-brand { margin: 0 0 .35rem; color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.product-card h3 { margin: 0; font: 700 .97rem/1.4 "Manrope", sans-serif; }
.product-card h3 a { text-decoration: none; }
.product-card-price { flex: 0 0 auto; margin: 1.2rem 0 0; font-weight: 600; }
.image-placeholder { font: 800 2rem "Manrope", sans-serif; }
.store-message { display: grid; gap: .35rem; padding: 2rem; border: 1px solid var(--line); background: white; }
.store-message span { color: var(--muted); }
.newsletter-band { padding: clamp(5rem, 10vw, 9rem) 0; background: var(--ink); color: white; text-align: center; }
.newsletter-band h2 { max-width: 900px; margin: 0 auto; font: 800 clamp(3rem, 7vw, 6.5rem)/.95 "Manrope", sans-serif; letter-spacing: -.065em; }
.newsletter-band .shell > p:not(.eyebrow) { margin: 1.5rem auto 2rem; color: #bbc0bb; }

.catalog-hero { padding: clamp(4.5rem, 9vw, 8rem) 0; background: var(--catalog-accent); }
.catalog-hero h1 { max-width: 1000px; margin: 0; font: 800 clamp(4rem, 9vw, 8.5rem)/.9 "Manrope", sans-serif; letter-spacing: -.075em; }
.catalog-hero .shell > p:last-child { max-width: 650px; margin: 1.5rem 0 0; color: #555a55; font-size: 1.1rem; line-height: 1.7; }
.catalog-toolbar { display: flex; gap: 2rem; justify-content: space-between; align-items: center; padding-top: 1.2rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--line); }
.catalog-links { display: flex; gap: 1.2rem; overflow-x: auto; align-items: center; }
.catalog-links span, .catalog-toolbar > span { flex: 0 0 auto; color: var(--muted); font-size: .8rem; }
.catalog-links a { flex: 0 0 auto; font-size: .82rem; font-weight: 700; text-decoration: none; }
.catalog-links a.is-active { text-decoration: underline; text-underline-offset: .35rem; }
.catalog-products { padding-top: 3.5rem; }
.catalog-search { max-width: 760px; margin: 0 auto 4rem; }
.catalog-search label { display: block; margin-bottom: .7rem; font-weight: 700; }
.catalog-search > div { display: flex; }
.catalog-search input { flex: 1; min-width: 0; padding: 1rem; border: 1px solid var(--ink); border-right: 0; background: white; }

.product-breadcrumb { display: flex; gap: .6rem; overflow: hidden; padding-top: 1.2rem; padding-bottom: 1.2rem; color: var(--muted); font-size: .76rem; white-space: nowrap; }
.product-breadcrumb a { color: var(--ink); }
.product-breadcrumb span:last-child { overflow: hidden; text-overflow: ellipsis; }
.product-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(340px, .65fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; padding-bottom: clamp(5rem, 9vw, 9rem); }
.product-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; }
.product-gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; background: white; }
.product-gallery-featured { grid-column: 1 / -1; }
.product-gallery-empty { display: grid; grid-column: 1 / -1; min-height: 600px; place-items: center; background: white; font: 800 3rem "Manrope", sans-serif; }
.product-summary { position: sticky; top: 1.5rem; padding-top: 1rem; }
.product-collection-link { display: inline-block; margin-bottom: 1rem; color: var(--muted); font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.product-summary h1 { margin: 0; font: 800 clamp(2.5rem, 4.5vw, 4.7rem)/.98 "Manrope", sans-serif; letter-spacing: -.06em; }
.product-price { margin: 1.5rem 0 2rem; font-size: 1.25rem; font-weight: 700; }
.product-options { margin: 0 0 1.5rem; }
.product-options > strong { display: block; margin-bottom: .7rem; font-size: .85rem; }
.product-options > div { display: flex; flex-wrap: wrap; gap: .5rem; }
.product-options span { padding: .55rem .75rem; border: 1px solid var(--line); background: white; color: #4d524d; font-size: .78rem; }
.product-buy { width: 100%; margin-top: .5rem; }
.checkout-note { color: var(--muted); font-size: .78rem; line-height: 1.5; text-align: center; }
.product-summary details { border-top: 1px solid var(--line); }
.product-summary details:last-child { border-bottom: 1px solid var(--line); }
.product-summary summary { padding: 1.2rem 0; font-weight: 700; cursor: pointer; }
.product-summary details p { margin: -.3rem 0 1.2rem; color: var(--muted); font-size: .9rem; line-height: 1.6; }
.product-description { display: grid; grid-template-columns: minmax(160px, .3fr) minmax(0, .7fr); gap: 2rem; padding-top: clamp(4rem, 8vw, 8rem); padding-bottom: clamp(4rem, 8vw, 8rem); border-top: 1px solid var(--line); }
.product-description h2 { margin: 0; font: 800 clamp(2.5rem, 5vw, 4.8rem)/.95 "Manrope", sans-serif; letter-spacing: -.055em; }
.product-description > p:last-child { grid-column: 2; margin: 1rem 0 0; color: var(--muted); line-height: 1.8; white-space: pre-line; }
.related-products { border-top: 1px solid var(--line); }

.site-footer { background: #151815; color: white; }
.footer-main { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: clamp(2rem, 5vw, 6rem); padding-top: 5rem; padding-bottom: 5rem; }
.footer-brand .brand-mark { background: var(--accent); color: var(--ink); }
.footer-main > div { display: flex; flex-direction: column; align-items: flex-start; gap: .7rem; }
.footer-main > div:first-child p { max-width: 370px; color: #aeb4ae; line-height: 1.7; }
.footer-main h2 { margin: 0 0 .5rem; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-main a:not(.brand), .footer-main span { color: #bfc4bf; font-size: .86rem; text-decoration: none; line-height: 1.5; }
.footer-main a:not(.brand):hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding-top: 1.25rem; padding-bottom: 1.25rem; border-top: 1px solid #333733; color: #8f958f; font-size: .72rem; }

@media (max-width: 1100px) {
    .header-main { grid-template-columns: auto 1fr; }
    .desktop-nav { display: none; }
    .header-search { width: min(280px, 100%); }
    .home-hero { grid-template-columns: 1fr 1fr; min-height: 590px; }
    .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .brand-card { min-height: 370px; }
    .footer-main { grid-template-columns: 1.5fr repeat(2, 1fr); }
    .footer-main > div:last-child { grid-column: 2; }
}

@media (max-width: 780px) {
    .shell { width: min(100% - 2rem, var(--shell)); }
    .header-main { min-height: 68px; }
    .brand-name { font-size: 1.1rem; }
    .header-search { justify-self: stretch; }
    .home-hero { grid-template-columns: 1fr; }
    .home-hero-copy { min-height: 520px; padding: 4rem 1.5rem; }
    .home-hero-visual { min-height: 500px; }
    .value-strip { grid-template-columns: 1fr; }
    .value-strip > div + div { border-top: 1px solid var(--line); border-left: 0; }
    .section-head { grid-template-columns: 1fr; gap: 1.2rem; }
    .brand-grid { grid-template-columns: 1fr; }
    .brand-card { min-height: 460px; }
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .catalog-toolbar { align-items: flex-start; }
    .product-layout { grid-template-columns: 1fr; }
    .product-summary { position: static; }
    .product-description { grid-template-columns: 1fr; }
    .product-description > p:last-child { grid-column: 1; }
    .footer-main { grid-template-columns: repeat(2, 1fr); }
    .footer-main > div:first-child { grid-column: 1 / -1; }
    .footer-main > div:last-child { grid-column: auto; }
}

@media (max-width: 520px) {
    .announcement p { font-size: .62rem; }
    .header-search { width: 44px; border: 0; }
    .header-search input { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
    .header-search button { width: 44px; height: 44px; }
    .category-nav { gap: 1.2rem; }
    .home-hero-copy { min-height: 490px; }
    .home-hero h1 { font-size: clamp(3.5rem, 18vw, 5rem); }
    .hero-actions { align-items: flex-start; flex-direction: column; }
    .home-hero-visual { min-height: 420px; }
    .section-head-row { display: grid; }
    .brand-card { min-height: 400px; }
    .product-grid { gap: .8rem; row-gap: 2.5rem; }
    .product-card-copy { display: grid; gap: .25rem; }
    .product-card-price { margin: 0; }
    .quick-view { display: none; }
    .catalog-hero h1 { font-size: clamp(3.6rem, 18vw, 5.5rem); }
    .catalog-toolbar > span { display: none; }
    .catalog-search > div { display: grid; }
    .catalog-search input { border-right: 1px solid var(--ink); border-bottom: 0; }
    .product-gallery { grid-template-columns: 1fr; }
    .product-gallery-featured { grid-column: auto; }
    .footer-main { grid-template-columns: 1fr; }
    .footer-main > div:first-child, .footer-main > div:last-child { grid-column: auto; }
    .footer-bottom { flex-direction: column; }
}

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