:root {
  --pine: #16261c;
  --forest: #2d4636;
  --moss: #6b8567;
  --bark: #5b4632;
  --clay: #a9784f;
  --gold: #b6905a;
  --linen: #f3ede0;
  --cream: #faf8f1;
  --ink: #1c2620;
  --stone: #726a5b;
  --line: rgba(28,38,32,.14);
  --r: 6px;
  --r-lg: 10px;
  --r-pill: 999px;
  --serif: "Fraunces", "Iowan Old Style", "Times New Roman", serif;
  --sans: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { position: relative; margin: 0; color: var(--ink); background: var(--cream); font-family: var(--sans); font-size: 14px; }
body, button, a { color: var(--ink); }
button, a { font: inherit; }
a { text-decoration: none; }
button { border: 0; }

body::before {
  content: ""; position: fixed; inset: 0; z-index: 999; pointer-events: none; opacity: .035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

#catalogue, #maison, #top { scroll-margin-top: 100px; }
.announcement { height: 30px; display: grid; place-items: center; background: var(--pine); color: var(--linen); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.site-header { height: 84px; padding: 0 3.5vw; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; position: sticky; top: 0; z-index: 20; background: rgba(250,248,241,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.header-nav { display: flex; align-items: center; gap: 24px; font-size: 14px; font-weight: 500; letter-spacing: 0; text-transform: none; color: var(--forest); }
.header-nav a, .cart-button { position: relative; }
.header-nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--gold); transition: width .25s; }
.header-nav a:hover::after, .header-nav a[aria-current="page"]::after { width: 100%; }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 7px; padding: 10px 0; color: var(--forest); background: transparent; cursor: pointer; font-size: inherit; font-weight: inherit; white-space: nowrap; }
.nav-dropdown-toggle::after { content: ""; width: 7px; height: 7px; border-right: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold); transform: translateY(-2px) rotate(45deg); transition: transform .2s; }
.nav-dropdown.is-open .nav-dropdown-toggle::after { transform: translateY(2px) rotate(225deg); }
.nav-dropdown-menu { min-width: 240px; padding: 10px; display: grid; gap: 3px; position: absolute; z-index: 30; top: 100%; left: -16px; border: 1px solid var(--line); border-radius: 8px; background: var(--cream); box-shadow: 0 18px 45px rgba(22,38,28,.18); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-2px); transition: opacity .18s, visibility .18s, transform .18s; }
.nav-dropdown.is-open .nav-dropdown-menu, .nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.nav-dropdown-menu a { display: block; padding: 13px 14px; border-radius: 5px; white-space: nowrap; font-size: 14px; font-weight: 500; }
.nav-dropdown-menu a:hover { color: var(--pine); background: var(--linen); }
.nav-dropdown-menu a::after { display: none; }
.brand { justify-self: start; display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; color: var(--pine); }
.brand-emblem { width: 33px; height: 33px; flex: none; display: grid; place-items: center; border: 1px solid rgba(182,144,90,.72); border-radius: 50%; color: var(--gold); font-family: var(--serif); font-size: 20px; line-height: 1; transform: rotate(-12deg); }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { color: inherit; font-family: var(--serif); font-size: 20px; font-weight: 500; letter-spacing: .1em; }
.brand-copy small { margin-top: 5px; color: var(--clay); font-family: var(--sans); font-size: 7px; font-weight: 600; letter-spacing: .23em; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 10px; }
.cart-button { justify-self: end; display: inline-flex; align-items: center; gap: 6px; padding: 9px 18px; border: 1px solid var(--forest); border-radius: var(--r-pill); background: none; cursor: pointer; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: var(--forest); transition: background .25s, color .25s; }
.cart-button:hover { background: var(--forest); color: var(--linen); }
.mobile-nav-toggle { display: none; padding: 9px 12px; border: 1px solid var(--line); border-radius: var(--r-pill); background: transparent; color: var(--forest); cursor: pointer; font-size: 9px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.site-header .mobile-nav-panel { display: grid; gap: 0; position: absolute; z-index: 25; top: 100%; right: 0; left: 0; padding: 10px 20px 18px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--cream); box-shadow: 0 20px 35px rgba(22,38,28,.12); }
.site-header .mobile-nav-panel[hidden] { display: none; }
.mobile-nav-panel a { padding: 15px 2px; border-bottom: 1px solid var(--line); color: var(--forest); font-size: 14px; font-weight: 500; }
.mobile-nav-panel a:last-child { border-bottom: 0; }

.hero { min-height: calc(100vh - 114px); display: grid; grid-template-columns: 40% 60%; background: var(--linen); }
.hero-copy { padding: 12vh 4.8vw 8vh; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.eyebrow { margin: 0 0 26px; font-size: 9px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--clay); }
h1, h2 { margin: 0; font-family: var(--serif); font-weight: 400; letter-spacing: -.02em; color: var(--pine); }
h1 { font-size: clamp(56px, 6.2vw, 104px); line-height: .96; }
.hero-copy > p:not(.eyebrow) { max-width: 380px; margin: 32px 0; font-family: var(--serif); font-size: 20px; line-height: 1.55; color: var(--forest); }
.primary-button { display: inline-block; padding: 17px 36px; border: 1px solid var(--pine); border-radius: var(--r-pill); background: var(--pine); color: var(--linen); font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; transition: background .3s, color .3s; }
.primary-button:hover { background: transparent; color: var(--pine); }
.hero-media { min-height: 640px; position: relative; overflow: hidden; margin: 18px 18px 18px 0; border-radius: var(--r-lg); }
.hero-media img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15,24,17,.55), transparent 45%); }
.hero-media span { position: absolute; z-index: 1; bottom: 22px; right: 26px; color: var(--linen); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }

.manifesto { padding: 140px 8vw 150px; text-align: center; color: var(--linen); background: var(--pine); position: relative; }
.manifesto::before { content: "❧"; display: block; margin-bottom: 30px; font-size: 26px; color: var(--gold); }
.manifesto .eyebrow { color: var(--moss); }
.manifesto h2 { font-size: clamp(42px, 5.2vw, 78px); line-height: 1.1; color: var(--linen); font-style: italic; }
.manifesto-text { max-width: 640px; margin: 0 auto; }
.manifesto-text p { margin: 26px 0 0; color: #cdd4c6; font-family: var(--serif); font-size: 18px; line-height: 1.75; }

.story { padding: 140px 3vw; display: grid; grid-template-columns: 46% 54%; gap: 60px; align-items: center; background: var(--linen); }
.story-media { min-height: 560px; overflow: hidden; border-radius: var(--r-lg); }
.story-media img { width: 100%; height: 100%; object-fit: cover; }
.story-copy h2 { font-size: clamp(38px, 4vw, 58px); margin-bottom: 28px; }
.story-copy p { max-width: 480px; margin: 0 0 20px; font-family: var(--serif); font-size: 18px; line-height: 1.7; color: var(--forest); }
.story-values { display: grid; margin-top: 40px; padding-top: 8px; border-top: 1px solid var(--line); gap: 22px; }
.story-value { display: grid; grid-template-columns: 34px 1fr; gap: 16px; }
.story-value span { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--gold); }
.story-value strong { display: block; margin-bottom: 4px; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--pine); }
.story-value p { margin: 0; max-width: none; font-family: var(--sans); font-size: 12px; line-height: 1.6; color: var(--stone); }

.faq { padding: 20px 3vw 150px; background: var(--linen); }
.faq-inner { max-width: 780px; margin: 0 auto; }
.faq .section-heading { justify-content: center; text-align: center; flex-direction: column; margin-bottom: 50px; }
.faq-list { display: grid; gap: 14px; }
.faq-item { padding: 6px 26px; border: 1px solid var(--line); border-radius: var(--r); background: var(--cream); }
.faq-item summary { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 20px 0; font-family: var(--serif); font-size: 18px; color: var(--pine); cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; flex: none; font-size: 20px; color: var(--gold); transition: transform .25s; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin: 0 0 22px; max-width: 640px; font-family: var(--serif); font-size: 15px; line-height: 1.7; color: var(--forest); }
.faq-more { margin: 40px auto 0; text-align: center; }
.faq-more a { font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--forest); border-bottom: 1px solid var(--forest); }
.info-page > .faq { padding: 42px 3vw 26px; }
.info-page > .faq:last-child { padding-bottom: 80px; }
.info-page > .faq .section-heading { margin-bottom: 24px; }
.info-page > .faq .section-heading h2 { font-size: clamp(34px, 3.5vw, 48px); }
.info-page > .faq .section-heading .eyebrow { margin-bottom: 14px; }
.info-page > .faq .faq-list { gap: 8px; }
.info-page > .faq .faq-item { padding: 3px 22px; }
.info-page > .faq .faq-item summary { padding: 15px 0; }
.info-page > .faq .faq-item p { margin-bottom: 17px; }

.shop { padding: 120px 3vw 150px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; margin: 0 .5vw 48px; gap: 32px; }
.section-heading h1, .section-heading h2 { font-size: clamp(46px, 4.6vw, 72px); }
.collection-heading > div { max-width: 760px; }
.collection-description { max-width: 680px; margin: 22px 0 0; font-family: var(--serif); font-size: 18px; line-height: 1.6; color: var(--forest); }
.collection-description[hidden] { display: none; }
.catalog-layout { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 4vw; align-items: start; }
.catalog-results { min-width: 0; }
.catalog-toolbar { min-height: 46px; margin: -3px 0 18px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border-bottom: 1px solid var(--line); }
.catalog-toolbar > p { margin: 0; color: var(--stone); font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.sort-toggle { display: inline-flex; align-items: center; gap: 8px; padding: 10px 2px 10px 12px; color: var(--forest); background: transparent; cursor: pointer; }
.sort-toggle:hover .sort-label, .sort-toggle:focus-visible .sort-label { color: var(--gold); }
.sort-caption { color: var(--stone); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.sort-label { font-size: 11px; font-weight: 600; transition: color .15s; }
.sort-arrow { width: 26px; height: 26px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--gold); font-size: 14px; }
.price-filter { position: sticky; top: 125px; padding: 26px 24px; border: 1px solid var(--line); border-radius: var(--r); background: var(--linen); }
.price-filter h3 { margin: 5px 0 28px; font-family: var(--serif); font-size: 27px; font-weight: 400; color: var(--pine); }
.price-filter label { display: block; margin-bottom: 7px; color: var(--stone); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.price-filter output { display: block; margin-bottom: 18px; font-family: var(--serif); font-size: 22px; color: var(--forest); }
.price-filter input[type="range"] { width: 100%; accent-color: var(--pine); cursor: pointer; }
.price-filter button { margin-top: 22px; padding: 0 0 4px; color: var(--stone); background: none; border-bottom: 1px solid var(--line); cursor: pointer; font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.price-filter button:hover { color: var(--pine); border-color: var(--pine); }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 50px 22px; }
.product-card { min-width: 0; }
.product-visual { aspect-ratio: 1; position: relative; overflow: hidden; border-radius: var(--r); background: #ded4bf; }
.product-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.22,.61,.36,1); }
.product-link { display: block; height: 100%; }
.product-card:hover .product-visual img { transform: scale(1.04); }
.product-number { position: absolute; z-index: 2; top: 14px; left: 14px; padding: 4px 10px; border-radius: var(--r-pill); color: var(--linen); background: rgba(22,38,28,.5); font-size: 9px; letter-spacing: .1em; backdrop-filter: blur(3px); }
.category-nichoirs img { object-position: 70% center; }
.category-mangeoires img { object-position: 54% center; }
.category-graines img { object-position: 15% center; }
.category-accessoires img { object-position: 88% center; }
.add { position: absolute; z-index: 2; right: 8px; bottom: 8px; left: 8px; height: 44px; border-radius: var(--r); color: var(--linen); background: rgba(22,38,28,.94); cursor: pointer; font-size: 9px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; transform: translateY(120%); opacity: 0; transition: transform .3s, opacity .3s; }
.product-card:hover .add, .add:focus-visible { transform: translateY(0); opacity: 1; }
.product-meta { display: grid; grid-template-columns: 1fr auto; gap: 8px 14px; padding: 17px 3px 0; }
.product-meta h3 { margin: 0; font-family: var(--serif); font-size: 19px; font-weight: 400; color: var(--pine); }
.product-meta strong { font-size: 11px; font-weight: 600; color: var(--clay); }
.product-meta p { grid-column: 1/-1; margin: 0; color: var(--stone); font-size: 11px; line-height: 1.5; }
.loading { text-align: center; color: var(--stone); }
.empty-products { grid-column: 1 / -1; margin: 30px 0; padding: 45px; color: var(--stone); text-align: center; border: 1px solid var(--line); border-radius: var(--r); background: var(--linen); }

.services { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); background: var(--linen); }
.services p { margin: 0; padding: 45px 4vw; display: grid; grid-template-columns: auto 1fr; gap: 4px 20px; font-size: 10px; color: var(--stone); }
.services p + p { border-left: 1px solid var(--line); }
.services span { grid-row: 1/3; font-family: var(--serif); font-style: italic; font-size: 26px; color: var(--gold); }
.services strong { color: var(--pine); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }

footer { color: var(--linen); background: var(--pine); }
.footer-mission { padding: clamp(78px, 8vw, 130px) 4vw clamp(65px, 7vw, 100px); display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); gap: 9vw; align-items: end; border-bottom: 1px solid rgba(243,237,224,.14); }
.footer-mission .eyebrow { margin-bottom: 26px; color: var(--moss); }
.footer-mission h2 { max-width: 780px; font-size: clamp(44px, 5vw, 76px); line-height: 1.08; color: var(--linen); }
.footer-mission-copy { padding-bottom: 4px; }
.footer-mission-copy p { max-width: 520px; margin: 0 0 30px; font-family: var(--serif); font-size: 19px; line-height: 1.65; color: #d7dccf; }
.footer-cta { display: inline-flex; align-items: center; gap: 16px; padding-bottom: 7px; border-bottom: 1px solid var(--gold); color: var(--linen); font-size: 10px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.footer-cta span { color: var(--gold); font-size: 17px; transition: transform .25s; }
.footer-cta:hover span { transform: translateX(5px); }
.footer-directory { padding: 75px 4vw 80px; display: grid; grid-template-columns: minmax(220px, 1.4fr) repeat(5, minmax(130px, 1fr)); gap: clamp(26px, 3vw, 55px); }
.footer-identity { padding-right: 2vw; }
.footer-brand { display: inline-flex; color: var(--linen); }
.footer-brand .brand-copy small { color: #aeb8aa; }
.footer-brand .brand-emblem { border-color: rgba(182,144,90,.55); }
.footer-tagline { max-width: 310px; margin: 24px 0 22px; font-family: var(--serif); font-size: 16px; line-height: 1.65; color: #cdd4c6; }
.footer-signature { max-width: 300px; margin: 0; font-size: 10px; line-height: 1.6; letter-spacing: .08em; text-transform: uppercase; color: #849482; }
.footer-col { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; }
.footer-col h3 { margin: 0 0 24px; font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.footer-col a { margin-bottom: 14px; font-size: 13px; line-height: 1.45; color: #d7dccf; }
.footer-col a:hover { color: var(--linen); }
.footer-contact-block address { margin: 7px 0 22px; font-style: normal; font-size: 12px; line-height: 1.7; color: #aeb8aa; }
.footer-contact-block .footer-hours { margin: 0; font-size: 12px; line-height: 1.7; color: #aeb8aa; }
.footer-contact-block .footer-hours strong { display: inline-block; margin-bottom: 3px; color: #d7dccf; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.footer-assurances { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid rgba(243,237,224,.14); border-bottom: 1px solid rgba(243,237,224,.14); }
.footer-assurances > div { min-width: 0; padding: 32px 3vw; display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; }
.footer-assurances > div + div { border-left: 1px solid rgba(243,237,224,.14); }
.footer-assurances span { font-family: var(--serif); font-style: italic; font-size: 21px; color: var(--gold); }
.footer-assurances p { margin: 0; font-size: 10px; line-height: 1.55; color: #9eaa9b; }
.footer-assurances strong { display: block; margin-bottom: 5px; color: var(--linen); font-size: 10px; letter-spacing: .09em; text-transform: uppercase; }
.footer-bottom { padding: 27px 4vw; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px; }
.footer-bottom p { margin: 0; font-size: 10px; color: #849482; }
.footer-legal-links { justify-self: center; display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; font-size: 9px; letter-spacing: .07em; text-transform: uppercase; }
.footer-legal-links a { color: #849482; }
.footer-legal-links a:hover { color: var(--linen); }
.footer-country { text-transform: uppercase; letter-spacing: .08em; }

.overlay { position: fixed; inset: 0; z-index: 30; background: rgba(16,24,18,.6); }
.overlay[hidden], .cart[hidden] { display: none; }
.cart { position: fixed; z-index: 31; inset: 0 0 0 auto; width: min(470px,100%); display: grid; grid-template-rows: auto 1fr auto; color: var(--ink); background: var(--cream); }
.cart-header { padding: 30px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.cart-header h2 { font-size: 36px; font-style: italic; }
.cart-header button { background: none; cursor: pointer; font-size: 26px; color: var(--forest); }
.cart-lines { padding: 10px 30px; overflow: auto; }
.empty-cart { margin-top: 70px; color: var(--stone); text-align: center; font-family: var(--serif); font-size: 17px; line-height: 1.6; }
.cart-line { padding: 18px 0; display: grid; grid-template-columns: 74px 1fr auto; gap: 15px; align-items: center; border-bottom: 1px solid var(--line); }
.line-visual { width: 74px; height: 90px; overflow: hidden; border-radius: var(--r); background: #ded4bf; }
.line-visual img { width: 100%; height: 100%; object-fit: cover; }
.cart-line h3 { margin: 0 0 9px; font-family: var(--serif); font-size: 17px; font-weight: 400; color: var(--pine); }
.quantity { display: flex; gap: 12px; align-items: center; font-size: 11px; }
.quantity button { width: 23px; height: 23px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: none; cursor: pointer; color: var(--forest); }
.line-price { font-size: 11px; font-weight: 600; color: var(--clay); }
.cart-footer { padding: 24px 30px 28px; border-top: 1px solid var(--line); }
.shipping-note { margin: 0 0 14px; color: var(--stone); font-size: 10px; }
.total { display: flex; justify-content: space-between; margin-bottom: 20px; font-family: var(--serif); font-size: 18px; color: var(--pine); }
.checkout-button { width: 100%; padding: 17px; border-radius: var(--r-pill); color: var(--linen); background: var(--pine); cursor: pointer; font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; transition: background .25s; }
.checkout-button:hover:not(:disabled) { background: var(--forest); }
.checkout-button:disabled { opacity: .4; cursor: not-allowed; }
.secure { margin: 10px 0 0; color: var(--stone); text-align: center; font-size: 9px; }
.error { margin: 9px 0 0; color: #9f352b; text-align: center; font-size: 11px; }
.inline-cart-link { padding: 0 0 2px; border-bottom: 1px solid var(--gold); color: var(--pine); background: transparent; cursor: pointer; }
.toast { position: fixed; z-index: 40; left: 50%; bottom: 25px; padding: 12px 22px; border-radius: var(--r-pill); color: var(--linen); background: var(--pine); opacity: 0; pointer-events: none; transform: translate(-50%,20px); transition: .25s; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.toast.show { opacity: 1; transform: translate(-50%,0); }

.product-page { width: min(calc(100% - clamp(32px, 6vw, 96px)), 1380px); margin: 0 auto; padding: clamp(36px, 4vw, 64px) 0 clamp(80px, 8vw, 130px); display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr); gap: clamp(44px, 5vw, 78px); align-items: start; }
.product-page[hidden] { display: none; }
.product-gallery { width: 100%; display: grid; grid-template-columns: 74px minmax(0, 1fr); gap: 14px; align-items: start; }
.product-thumbs { display: flex; flex-direction: column; gap: 10px; width: 74px; }
.product-thumbs button { width: 74px; aspect-ratio: 1; padding: 0; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; cursor: pointer; background: none; opacity: .55; transition: opacity .25s, border-color .25s; }
.product-thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbs button.active, .product-thumbs button:hover { opacity: 1; border-color: var(--pine); }
.product-page-media { flex: 1; min-width: 0; aspect-ratio: 1; overflow: hidden; border-radius: var(--r-lg); background: #ded4bf; }
.product-page-media img { width: 100%; height: 100%; object-fit: cover; }
.product-page-copy { padding: 4px 0 0; display: flex; flex-direction: column; align-items: flex-start; }
.product-page-copy .eyebrow { margin-bottom: 16px; }
.product-page-copy h1 { max-width: 560px; font-size: clamp(48px, 4.2vw, 68px); line-height: 1; }
.product-tag { display: inline-flex; align-items: center; gap: 8px; margin: 20px 0 0; padding: 7px 16px; border: 1px solid var(--line); border-radius: var(--r-pill); font-size: 11px; color: var(--forest); }
.product-tag span { color: var(--gold); }
.product-page-price { margin: 22px 0 0; font-size: 15px; font-weight: 600; color: var(--clay); }
.product-page-description { max-width: 500px; margin: 22px 0 0; color: var(--forest); font-family: var(--serif); font-size: 18px; line-height: 1.55; }
.product-features { display: grid; gap: 10px; margin: 26px 0 0; padding: 0; list-style: none; }
.product-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; line-height: 1.4; color: var(--forest); }
.product-features li::before { content: "✓"; flex: none; font-weight: 600; color: var(--gold); }
.product-stock { display: flex; align-items: center; gap: 9px; margin: 24px 0 30px; font-size: 12px; color: var(--forest); }
.product-stock span { width: 8px; height: 8px; border-radius: 50%; background: #4d7a52; }
.quantity-field { display: flex; align-items: center; gap: 18px; margin-bottom: 16px; font-size: 9px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--stone); }
.quantity-field select { min-width: 65px; padding: 10px; border: 1px solid var(--line); border-radius: var(--r); background: transparent; }
.product-add-button { width: min(100%, 500px); padding: 18px; border-radius: var(--r-pill); color: var(--linen); background: var(--pine); cursor: pointer; font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; transition: background .25s; }
.product-add-button:hover { background: var(--forest); }
.product-added { min-height: 18px; margin: 14px 0 0; color: var(--forest); font-size: 11px; }
.product-added a { border-bottom: 1px solid; }
.product-details { width: min(100%, 500px); margin-top: 28px; border-top: 1px solid var(--line); }
.product-details p { display: flex; justify-content: space-between; margin: 0; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 10px; }
.product-details strong { letter-spacing: .1em; text-transform: uppercase; color: var(--pine); }
.product-details span { color: var(--stone); }
.product-not-found { min-height: calc(100vh - 114px); padding: 15vh 7vw; text-align: center; }
.product-not-found h1 { margin-bottom: 45px; }

.info-hero { padding: 90px 7vw 60px; text-align: center; background: var(--linen); }
.info-hero h1 { font-size: clamp(46px, 5.4vw, 74px); }
.info-intro { max-width: 560px; margin: 26px auto 0; font-family: var(--serif); font-size: 18px; line-height: 1.65; color: var(--forest); }
.info-content { max-width: 760px; margin: 0 auto; padding: 70px 7vw 150px; }
.info-content h2 { font-size: 28px; margin: 56px 0 18px; }
.info-content h2:first-child { margin-top: 0; }
.info-content h3 { margin: 30px 0 10px; font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--clay); }
.info-content p { margin: 0 0 16px; font-size: 14px; line-height: 1.8; color: var(--forest); }
.info-content ul { margin: 0 0 16px; padding-left: 20px; font-size: 14px; line-height: 1.8; color: var(--forest); }
.info-content li { margin-bottom: 6px; }
.info-content a { color: var(--pine); border-bottom: 1px solid var(--gold); }
.info-content strong { color: var(--pine); }
.info-table { width: 100%; margin: 0 0 30px; border-collapse: collapse; font-size: 13px; }
.info-table th, .info-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); }
.info-table th { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--stone); font-weight: 600; }
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin: 0 auto; max-width: 720px; padding: 0 7vw 100px; }
.contact-card { padding: 34px 28px; border: 1px solid var(--line); border-radius: var(--r); background: var(--linen); text-align: center; }
.contact-card span { font-family: var(--serif); font-style: italic; font-size: 26px; color: var(--gold); }
.contact-card h3 { margin: 14px 0 8px; font-family: var(--serif); font-size: 19px; font-weight: 400; color: var(--pine); }
.contact-card p { margin: 0; font-size: 13px; line-height: 1.6; color: var(--stone); }
.contact-card a { color: var(--pine); border-bottom: 1px solid var(--gold); }
.guide-content { max-width: 860px; }
.guide-content .guide-lead { margin-bottom: 60px; font-family: var(--serif); font-size: 22px; line-height: 1.65; color: var(--pine); }
.guide-content h2 { margin-top: 70px; font-size: 34px; }
.guide-content p, .guide-content ul, .guide-content ol { font-size: 15px; }
.guide-table { margin-top: 26px; }
.guide-note { margin-top: -10px !important; padding-left: 18px; border-left: 2px solid var(--gold); color: var(--stone) !important; font-size: 12px !important; }
.guide-checklist, .guide-steps { margin: 24px 0 34px !important; padding: 0 !important; display: grid; gap: 12px; list-style: none; }
.guide-checklist li, .guide-steps li { position: relative; margin: 0; padding: 15px 18px 15px 46px; border: 1px solid var(--line); border-radius: var(--r); background: var(--linen); line-height: 1.65; color: var(--forest); }
.guide-checklist li::before { content: "✓"; position: absolute; top: 15px; left: 18px; color: var(--gold); font-weight: 600; }
.guide-steps { counter-reset: guide-step; }
.guide-steps li { counter-increment: guide-step; }
.guide-steps li::before { content: counter(guide-step, decimal-leading-zero); position: absolute; top: 15px; left: 14px; font-family: var(--serif); font-style: italic; color: var(--gold); }
.guide-callout { margin: 90px 0 20px; padding: clamp(38px, 6vw, 70px); border-radius: var(--r-lg); background: var(--pine); }
.guide-callout .eyebrow { color: var(--moss); }
.guide-callout h2 { margin: 0; color: var(--linen); font-size: clamp(34px, 4vw, 50px); }
.guide-callout > p:not(.eyebrow) { max-width: 620px; margin: 24px 0 32px; color: #cdd4c6; }
.guide-callout .primary-button { color: var(--pine); background: var(--linen); border-color: var(--linen); }
.guide-callout .primary-button:hover { color: var(--linen); background: transparent; }

.about-page { overflow: hidden; }
.about-hero { min-height: 690px; display: grid; grid-template-columns: 43% 57%; background: var(--linen); }
.about-hero-copy { padding: clamp(80px, 10vw, 150px) 5vw; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.about-hero-copy h1 { max-width: 720px; font-size: clamp(58px, 6.4vw, 98px); }
.about-hero-copy > p:not(.eyebrow) { max-width: 510px; margin: 32px 0 0; font-family: var(--serif); font-size: 20px; line-height: 1.65; color: var(--forest); }
.about-hero-media { min-height: 650px; margin: 18px 18px 18px 0; overflow: hidden; border-radius: var(--r-lg); }
.about-hero-media img, .about-split-media img { width: 100%; height: 100%; object-fit: cover; }
.about-intro { padding: clamp(90px, 10vw, 145px) 8vw; text-align: center; background: var(--cream); }
.about-intro h2 { max-width: 900px; margin: 0 auto; font-size: clamp(44px, 5vw, 72px); }
.about-columns { max-width: 940px; margin: 52px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; text-align: left; }
.about-columns p, .about-split-copy > p:not(.eyebrow), .about-beliefs-copy p, .about-final > p:not(.eyebrow) { margin: 0; font-family: var(--serif); font-size: 18px; line-height: 1.75; color: var(--forest); }
.about-split { padding: 90px 4vw; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(55px, 8vw, 120px); align-items: center; background: var(--linen); }
.about-split-media { min-height: 610px; overflow: hidden; border-radius: var(--r-lg); }
.about-split-copy { max-width: 620px; }
.about-split-copy h2 { margin-bottom: 30px; font-size: clamp(42px, 4.6vw, 68px); }
.about-split-copy > p:not(.eyebrow) + p { margin-top: 18px; }
.text-link { display: inline-flex; align-items: center; gap: 13px; margin-top: 30px; padding-bottom: 5px; border-bottom: 1px solid var(--gold); color: var(--pine); font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.text-link span { color: var(--gold); font-size: 16px; }
.about-method { padding: clamp(90px, 10vw, 145px) 5vw; background: var(--pine); }
.about-method-heading { max-width: 920px; margin-bottom: 65px; }
.about-method .eyebrow { color: var(--moss); }
.about-method h2 { color: var(--linen); font-size: clamp(44px, 5vw, 72px); }
.about-steps { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(243,237,224,.18); }
.about-steps article { padding: 36px clamp(20px, 2.5vw, 40px) 10px 0; }
.about-steps article + article { padding-left: clamp(20px, 2.5vw, 40px); border-left: 1px solid rgba(243,237,224,.18); }
.about-steps span { font-family: var(--serif); font-size: 20px; font-style: italic; color: var(--gold); }
.about-steps h3 { margin: 28px 0 14px; color: var(--linen); font-family: var(--serif); font-size: 23px; font-weight: 400; }
.about-steps p { margin: 0; color: #aeb8aa; font-size: 12px; line-height: 1.7; }
.about-gallery { padding: 18px; display: grid; grid-template-columns: 1fr 1.15fr 1fr; gap: 18px; background: var(--cream); }
.about-gallery img { width: 100%; height: 500px; object-fit: cover; border-radius: var(--r); }
.about-gallery img:nth-child(2) { height: 570px; margin-top: -35px; }
.about-beliefs { padding: clamp(100px, 11vw, 165px) 8vw; display: grid; grid-template-columns: 1fr 1fr; gap: 9vw; align-items: start; }
.about-beliefs h2 { max-width: 650px; font-size: clamp(44px, 5vw, 72px); }
.about-beliefs-copy { display: grid; gap: 24px; padding-top: 35px; }
.about-final { padding: clamp(90px, 10vw, 140px) 7vw; text-align: center; background: var(--linen); }
.about-final h2 { max-width: 870px; margin: 0 auto 30px; font-size: clamp(44px, 5vw, 70px); }
.about-final > p:not(.eyebrow) { max-width: 760px; margin: 0 auto; }
.about-final-actions { margin-top: 38px; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 8px 30px; }
.about-final-actions .text-link { margin-top: 0; }

.not-found-page { min-height: 70vh; padding: clamp(80px, 11vw, 150px) 7vw; display: grid; place-items: center; background: radial-gradient(circle at 78% 20%, rgba(191,143,70,.12), transparent 30%), var(--cream); }
.not-found-card { width: min(920px, 100%); display: grid; grid-template-columns: .75fr 1.25fr; align-items: center; gap: clamp(45px, 8vw, 110px); }
.not-found-code { margin: 0; color: var(--gold); font-family: var(--serif); font-size: clamp(110px, 17vw, 210px); font-weight: 300; font-style: italic; line-height: .8; }
.not-found-copy h1 { max-width: 650px; margin: 10px 0 24px; font-size: clamp(44px, 5.5vw, 76px); }
.not-found-copy > p:not(.eyebrow) { max-width: 560px; margin: 0 0 34px; color: var(--stone); font-size: 16px; line-height: 1.75; }
.not-found-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px 24px; }
.not-found-link { color: var(--pine); border-bottom: 1px solid var(--gold); font-size: 12px; font-weight: 600; }

@media (max-width: 1300px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .site-header { height: 76px; grid-template-columns: 1fr auto; padding: 0 26px; }
  .header-nav { display: none; }
  .mobile-nav-toggle { display: inline-flex; }
  .mobile-nav-panel { max-height: calc(100vh - 106px); overflow-y: auto; }
  .header-actions { gap: 8px; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 600px; padding: 90px 7vw; }
  .hero-media { min-height: 640px; margin: 0 18px 18px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-page { width: min(calc(100% - 36px), 760px); padding-top: 24px; grid-template-columns: 1fr; gap: 0; }
  .product-gallery { margin: 0; }
  .product-page-media { aspect-ratio: 1; }
  .product-page-copy { padding: 58px 0 20px; }
  .story { grid-template-columns: 1fr; padding: 100px 7vw; gap: 40px; }
  .story-media { min-height: 420px; }
  .footer-mission { grid-template-columns: 1fr; gap: 42px; align-items: start; }
  .footer-directory { grid-template-columns: 1.2fr 1fr 1fr; row-gap: 55px; }
  .footer-assurances { grid-template-columns: 1fr 1fr; }
  .footer-assurances > div:nth-child(3) { border-left: 0; border-top: 1px solid rgba(243,237,224,.14); }
  .footer-assurances > div:nth-child(4) { border-top: 1px solid rgba(243,237,224,.14); }
  .footer-bottom { grid-template-columns: 1fr; text-align: center; }
  .footer-legal-links { justify-self: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-hero { grid-template-columns: 1fr; }
  .about-hero-media { min-height: 560px; margin: 0 18px 18px; }
  .about-split { grid-template-columns: 1fr; }
  .about-split-copy { max-width: 760px; }
  .about-steps { grid-template-columns: 1fr 1fr; }
  .about-steps article:nth-child(3) { padding-left: 0; border-left: 0; border-top: 1px solid rgba(243,237,224,.18); }
  .about-steps article:nth-child(4) { border-top: 1px solid rgba(243,237,224,.18); }
  .not-found-card { grid-template-columns: 1fr; gap: 35px; text-align: center; }
  .not-found-copy > p:not(.eyebrow) { margin-left: auto; margin-right: auto; }
  .not-found-actions { justify-content: center; }
}
@media (max-width: 620px) {
  .announcement { font-size: 8px; }
  .site-header { height: 72px; grid-template-columns: 1fr auto; padding: 0 20px; }
  .header-nav { display: none; }
  .mobile-nav-toggle { display: inline-flex; }
  .header-actions { gap: 7px; }
  .cart-button { padding: 9px 12px; font-size: 9px; }
  .brand { gap: 7px; }
  .brand-emblem { width: 29px; height: 29px; font-size: 17px; }
  .brand-copy strong { font-size: 16px; letter-spacing: .08em; }
  .brand-copy small { margin-top: 4px; font-size: 6px; letter-spacing: .18em; }
  .hero { min-height: 0; }
  .hero-copy { min-height: 520px; padding: 75px 22px 65px; }
  h1 { font-size: 62px; }
  .hero-media { min-height: 460px; margin: 0 14px 14px; }
  .manifesto { padding: 100px 22px; }
  .manifesto h2 { font-size: 42px; }
  .shop { padding: 85px 14px 100px; }
  .section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 35px; }
  .section-heading h1, .section-heading h2 { font-size: 48px; }
  .collection-description { margin-top: 18px; font-size: 16px; }
  .catalog-layout { grid-template-columns: 1fr; gap: 22px; }
  .price-filter { position: static; padding: 16px 18px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 8px 16px; }
  .price-filter .eyebrow, .price-filter h3 { display: none; }
  .price-filter label { margin: 0; }
  .price-filter output { margin: 0; text-align: right; font-size: 19px; }
  .price-filter input[type="range"] { grid-column: 1 / -1; }
  .price-filter button { grid-column: 1 / -1; justify-self: start; margin-top: 5px; }
  .catalog-toolbar { margin-top: 0; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 10px; }
  .product-visual { aspect-ratio: 1; }
  .add { height: 38px; transform: none; opacity: 1; position: static; margin-top: 8px; }
  .product-meta { grid-template-columns: 1fr; gap: 5px; padding: 12px 2px 0; }
  .product-meta h3 { font-size: 16px; line-height: 1.2; }
  .product-meta strong { grid-row: 2; font-size: 10px; }
  .product-meta p { display: none; }
  .product-page { width: auto; margin: 0 14px; padding: 14px 0 70px; }
  .product-gallery { display: flex; flex-direction: column-reverse; margin: 0; }
  .product-thumbs { flex-direction: row; width: auto; overflow-x: auto; }
  .product-thumbs button { width: 72px; flex: none; }
  .product-page-media { aspect-ratio: 1; }
  .product-page-copy { padding: 46px 8px 10px; }
  .product-page-copy h1 { font-size: clamp(44px, 13vw, 52px); }
  .services { grid-template-columns: 1fr; }
  .services p + p { border-left: 0; border-top: 1px solid var(--line); }
  .story { padding: 80px 22px; }
  .story-media { min-height: 320px; }
  .faq { padding: 10px 18px 100px; }
  .faq-item summary { font-size: 16px; }
  .info-page > .faq { padding: 30px 18px 16px; }
  .info-page > .faq:last-child { padding-bottom: 65px; }
  .footer-mission { padding: 78px 22px 65px; text-align: center; }
  .footer-mission h2 { font-size: 42px; }
  .footer-mission-copy p { font-size: 17px; }
  .footer-directory { grid-template-columns: 1fr; padding: 65px 22px; text-align: center; row-gap: 48px; }
  .footer-identity { padding-right: 0; }
  .footer-tagline, .footer-signature { margin-left: auto; margin-right: auto; }
  .footer-col { align-items: center; }
  .footer-contact-block address { text-align: center; }
  .footer-assurances { grid-template-columns: 1fr; }
  .footer-assurances > div { padding: 28px 22px; }
  .footer-assurances > div + div { border-left: 0; border-top: 1px solid rgba(243,237,224,.14); }
  .footer-bottom { padding: 30px 22px; }
  .info-hero { padding: 70px 22px 45px; }
  .info-content { padding: 50px 22px 100px; }
  .contact-grid { padding: 0 22px 80px; }
  .about-hero-copy { padding: 75px 22px; }
  .about-hero-copy h1 { font-size: 56px; }
  .about-hero-media { min-height: 430px; margin: 0 14px 14px; }
  .about-intro, .about-beliefs, .about-final { padding-left: 22px; padding-right: 22px; }
  .about-columns, .about-beliefs { grid-template-columns: 1fr; gap: 28px; }
  .about-split { padding: 65px 14px 80px; gap: 45px; }
  .about-split-media { min-height: 430px; }
  .about-split-copy { padding: 0 8px; }
  .about-method { padding-left: 22px; padding-right: 22px; }
  .about-steps { grid-template-columns: 1fr; }
  .about-steps article, .about-steps article + article { padding: 28px 0; border-left: 0; border-top: 1px solid rgba(243,237,224,.18); }
  .about-gallery { grid-template-columns: 1fr; padding: 12px; gap: 12px; }
  .about-gallery img, .about-gallery img:nth-child(2) { height: 390px; margin: 0; }
  .not-found-page { padding-left: 22px; padding-right: 22px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }

.admin-body { min-height: 100vh; background: var(--linen); }
.admin-header { min-height: 76px; padding: 0 4vw; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; border-bottom: 1px solid var(--line); background: var(--paper); }
.admin-header > span { color: var(--stone); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.admin-header button, .admin-title-row button { justify-self: end; padding: 10px 16px; border: 1px solid var(--line); border-radius: var(--r-pill); background: transparent; cursor: pointer; font-size: 10px; }
.admin-main { width: min(1040px, 94vw); margin: 0 auto; padding: 48px 0 100px; }
.admin-login { width: min(520px, 100%); margin: 6vh auto 0; padding: 52px; border: 1px solid var(--line); border-radius: var(--r); background: var(--paper); }
.admin-login[hidden], .admin-dashboard[hidden] { display: none; }
.admin-login h1, .admin-title-row h1 { font-size: clamp(42px, 4vw, 58px); }
.admin-login > p:not(.eyebrow) { color: var(--stone); line-height: 1.6; }
.admin-login form { display: grid; gap: 12px; margin-top: 30px; }
.admin-login label { font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.admin-login input { width: 100%; padding: 14px; border: 1px solid var(--line); border-radius: var(--r); background: white; font: inherit; }
.admin-login form button, .admin-order-action button { padding: 14px 18px; border-radius: var(--r-pill); color: white; background: var(--pine); cursor: pointer; font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.admin-title-row { display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.admin-stats { display: flex; gap: 24px; margin: 24px 0 18px; padding: 11px 16px; border: 1px solid var(--line); border-radius: var(--r); background: var(--paper); }
.admin-stats p { margin: 0; display: flex; align-items: baseline; gap: 7px; color: var(--stone); font-size: 9px; text-transform: uppercase; letter-spacing: .07em; }
.admin-stats span { color: var(--pine); font-family: var(--serif); font-size: 20px; letter-spacing: 0; }
.admin-orders { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); background: var(--paper); }
.admin-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.admin-table th { padding: 9px 10px; color: var(--stone); background: rgba(31,61,47,.035); text-align: left; font-size: 8px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.admin-table th:nth-child(1) { width: 21%; }
.admin-table th:nth-child(2) { width: 18%; }
.admin-table th:nth-child(3) { width: 27%; }
.admin-table th:nth-child(4) { width: 10%; }
.admin-table th:nth-child(5) { width: 12%; }
.admin-table th:nth-child(6) { width: 12%; }
.admin-order-row { cursor: pointer; border-top: 1px solid var(--line); transition: background .15s; }
.admin-order-row:hover, .admin-order-row.is-open { background: rgba(191,143,70,.07); }
.admin-order-row:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }
.admin-order-row td { height: 48px; padding: 7px 10px; overflow: hidden; color: var(--forest); font-size: 10px; vertical-align: middle; white-space: nowrap; text-overflow: ellipsis; }
.admin-order-row td strong { display: block; overflow: hidden; font-size: 10px; font-weight: 600; text-overflow: ellipsis; }
.admin-order-row td small { display: block; overflow: hidden; margin-top: 2px; color: var(--stone); font-size: 8px; text-overflow: ellipsis; }
.admin-order-id { display: flex; align-items: center; gap: 8px; }
.admin-chevron { flex: none; color: var(--gold); font-size: 20px; line-height: 1; transition: transform .15s; }
.is-open .admin-chevron { transform: rotate(90deg); }
.admin-products-cell { color: var(--stone) !important; }
.admin-total-cell { font-weight: 600; }
.admin-action-cell { text-align: right; }
.admin-action-cell button { min-width: 68px; padding: 7px 9px; border-radius: var(--r-pill); color: white; background: var(--pine); cursor: pointer; font-size: 8px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.admin-action-cell button:disabled { opacity: .45; cursor: wait; }
.is-fulfilled .admin-action-cell button { color: var(--pine); border: 1px solid var(--line); background: transparent; }
.admin-status { display: inline-block; padding: 5px 10px; border-radius: var(--r-pill); color: #725324; background: #f2dfb9; font-size: 9px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.is-fulfilled .admin-status { color: #31543a; background: #dce8dd; }
.admin-detail-row[hidden] { display: none; }
.admin-detail-row td { padding: 0; border-top: 1px dashed var(--line); background: rgba(31,61,47,.025); }
.admin-order-grid { display: grid; grid-template-columns: 1fr 1.3fr 2fr 1.2fr; gap: 24px; padding: 18px 36px; }
.admin-order-grid h3 { margin: 0 0 9px; color: var(--stone); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.admin-order-grid p { margin: 0; color: var(--forest); font-size: 12px; line-height: 1.65; }
.admin-order-grid small { display: block; margin-top: 6px; color: var(--stone); }
.admin-error { min-height: 18px; color: #9f352b !important; font-size: 12px; }
.admin-empty { padding: 50px; text-align: center; color: var(--stone); border: 1px solid var(--line); border-radius: var(--r); background: var(--paper); }

@media (max-width: 900px) {
  .admin-table { min-width: 820px; }
}
@media (max-width: 620px) {
  .admin-header { grid-template-columns: 1fr auto; padding: 0 18px; }
  .admin-header > span { display: none; }
  .admin-main { width: calc(100% - 28px); padding: 40px 0 80px; }
  .admin-login { padding: 32px 22px; }
  .admin-title-row { align-items: flex-start; flex-direction: column; }
  .admin-stats { gap: 12px; justify-content: space-between; }
  .admin-stats p { flex-direction: column; gap: 2px; }
}
