:root {
  --ink: #17211d;
  --forest: #153b37;
  --forest-2: #0f2e2b;
  --cream: #f6f0e6;
  --paper: #fffdf8;
  --sand: #d9c5ad;
  --clay: #a36c43;
  --gold: #b18a48;
  --line: rgba(23, 33, 29, .14);
  --muted: #6b746f;
  --serif: 'EB Garamond', Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --shadow: 0 24px 70px rgba(24, 42, 34, .12);
  --radius: 2px;
  --container: min(1240px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
body { margin: 0; overflow-x: clip; color: var(--ink); background: var(--paper); font-family: var(--sans); line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: #d8c69c; color: var(--forest-2); }

.skip-link { position: fixed; left: 16px; top: -80px; z-index: 9999; background: var(--forest); color: #fff; padding: 12px 18px; }
.skip-link:focus { top: 16px; }
.container { width: var(--container); margin: 0 auto; }
.section { padding: 112px 0; }
.section--cream { background: var(--cream); }
.section--forest { background: var(--forest); color: #fff; }
.section--tight { padding: 74px 0; }
.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }
.eyebrow { margin: 0 0 16px; color: var(--gold); text-transform: uppercase; letter-spacing: .18em; font-size: .72rem; font-weight: 700; }
.display { margin: 0; font-family: var(--serif); font-weight: 600; font-size: clamp(3rem, 6vw, 6.2rem); line-height: .92; letter-spacing: -.035em; }
.display em { font-weight: 500; }
.section-title { margin: 0; font-family: var(--serif); font-size: clamp(2.7rem, 4.8vw, 5rem); line-height: .98; font-weight: 600; letter-spacing: -.025em; }
.section-lead { max-width: 680px; margin: 24px 0 0; color: var(--muted); font-size: 1.05rem; }
.section--forest .section-lead { color: rgba(255,255,255,.72); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 36px; margin-bottom: 48px; }
.section-heading__copy { max-width: 760px; }
.muted { color: var(--muted); }
.microcopy { color: var(--muted); font-size: .78rem; line-height: 1.6; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 23px; border: 1px solid transparent; border-radius: 0; text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; font-weight: 700; transition: .25s ease; cursor: pointer; }
.button--dark { color: #fff; background: var(--forest); }
.button--dark:hover { background: var(--forest-2); transform: translateY(-2px); }
.button--light { color: var(--forest); background: var(--paper); }
.button--light:hover { background: #fff; transform: translateY(-2px); }
.button--outline { border-color: var(--line); background: transparent; }
.button--outline:hover { border-color: var(--forest); background: rgba(21,59,55,.05); }
.button--gold { color: #fff; background: var(--gold); }
.button--gold:hover { background: #98743d; }
.text-link { display: inline-flex; gap: 10px; align-items: center; color: var(--forest); text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; font-weight: 700; }
.text-link::after { content: '→'; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }

.site-header { position: fixed; inset: 0 0 auto; z-index: 1000; color: #fff; transition: .3s ease; }
.site-header::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: rgba(255,255,255,.17); }
.site-header.is-scrolled, .site-header.site-header--solid { background: rgba(255,253,248,.96); color: var(--ink); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); }
.site-header.is-scrolled::after, .site-header.site-header--solid::after { display: none; }
.header-inner { width: var(--container); height: 86px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.brand { position: relative; justify-self: center; display: inline-flex; flex-direction: column; align-items: center; min-height: 38px; padding-left: 42px; line-height: 1; }
.brand::before { content: ''; position: absolute; left: 0; top: 50%; width: 34px; height: 34px; background: url("../images/brand/royalroots-emblem.png") center / contain no-repeat; transform: translateY(-50%); }
.brand strong { font-family: var(--serif); font-size: 1.85rem; font-weight: 600; letter-spacing: -.025em; }
.brand span { margin-top: 5px; font-size: .52rem; letter-spacing: .32em; font-weight: 700; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { position: relative; font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.site-nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: currentColor; transition: right .25s ease; }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { right: 0; }
.header-cta { justify-self: end; display: flex; align-items: center; gap: 16px; }
.header-cta .button { min-height: 42px; padding-inline: 18px; }
.site-header:not(.is-scrolled):not(.site-header--solid) .header-cta .button { background: #fff; color: var(--forest); }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; }
.nav-toggle span { display: block; width: 24px; height: 1px; margin: 6px auto; background: currentColor; }

.hero { min-height: 96vh; position: relative; display: grid; align-items: end; background: var(--forest-2); color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; display: grid; grid-template-columns: 58% 42%; }
.hero__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,25,23,.9) 0%, rgba(8,25,23,.52) 42%, rgba(8,25,23,.12) 72%, rgba(8,25,23,.22) 100%), linear-gradient(0deg, rgba(8,25,23,.65), transparent 48%); }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media img:first-child { filter: saturate(.85) contrast(1.03); }
.hero__media img:last-child { filter: saturate(.7) contrast(1.05); }
.hero__content { position: relative; z-index: 2; width: var(--container); margin: 0 auto; padding: 190px 0 94px; }
.hero__content p.hero-copy { max-width: 600px; margin: 26px 0 32px; color: rgba(255,255,255,.82); font-size: 1.08rem; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__stamp { position: absolute; right: 0; bottom: 84px; width: 230px; padding: 23px; border: 1px solid rgba(255,255,255,.35); background: rgba(16,43,39,.36); backdrop-filter: blur(10px); }
.hero__stamp small { display: block; text-transform: uppercase; letter-spacing: .16em; font-size: .62rem; color: rgba(255,255,255,.65); }
.hero__stamp strong { display: block; margin-top: 8px; font-family: var(--serif); font-size: 1.5rem; line-height: 1.1; }

.trust-strip { background: var(--forest); color: #fff; }
.trust-strip__grid { width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 28px 30px; border-right: 1px solid rgba(255,255,255,.14); }
.trust-item:first-child { border-left: 1px solid rgba(255,255,255,.14); }
.trust-item strong { display: block; font-family: var(--serif); font-size: 1.28rem; }
.trust-item span { display: block; margin-top: 4px; color: rgba(255,255,255,.58); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }

.collection-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.collection-card { position: relative; min-height: 510px; overflow: hidden; color: #fff; grid-column: span 4; }
.collection-card:nth-child(1), .collection-card:nth-child(5) { grid-column: span 8; }
.collection-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.collection-card__overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,22,20,.8), rgba(7,22,20,.05) 72%); }
.collection-card__content { position: absolute; inset: auto 30px 28px; display: block; }
.collection-card__content small { display: block; text-transform: uppercase; letter-spacing: .17em; color: rgba(255,255,255,.7); font-size: .64rem; }
.collection-card__content strong { display: block; margin-top: 8px; font-family: var(--serif); font-size: 2rem; line-height: 1; }
.collection-card__content em { display: block; max-width: 440px; margin-top: 10px; color: rgba(255,255,255,.7); font-style: normal; font-size: .86rem; opacity: 0; transform: translateY(8px); transition: .35s ease; }
.collection-card:hover img { transform: scale(1.045); }
.collection-card:hover em { opacity: 1; transform: none; }

.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 42px 18px; }
.product-card__image { position: relative; display: block; overflow: hidden; background: #eee7dc; aspect-ratio: 4 / 5; }
.product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.product-card__view { position: absolute; right: 16px; bottom: 16px; padding: 10px 13px; color: var(--forest); background: rgba(255,253,248,.93); text-transform: uppercase; letter-spacing: .12em; font-size: .6rem; font-weight: 700; opacity: 0; transform: translateY(8px); transition: .25s ease; }
.product-card:hover .product-card__image img { transform: scale(1.035); }
.product-card:hover .product-card__view { opacity: 1; transform: none; }
.product-card__body { padding-top: 18px; }
.product-card__body .eyebrow { margin-bottom: 7px; font-size: .62rem; }
.product-card h3 { margin: 0; font-family: var(--serif); font-weight: 600; font-size: 1.75rem; line-height: 1.05; }
.product-card h3 a:hover { color: var(--clay); }
.product-card__meta { display: flex; justify-content: space-between; gap: 16px; margin-top: 14px; padding-top: 11px; border-top: 1px solid var(--line); color: var(--muted); font-size: .7rem; }

.story-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 86px; align-items: center; }
.story-collage { position: relative; min-height: 690px; }
.story-collage img:first-child { position: absolute; inset: 0 18% 8% 0; width: 82%; height: 92%; object-fit: cover; box-shadow: var(--shadow); }
.story-collage img:last-child { position: absolute; right: 0; bottom: 0; width: 46%; height: 48%; object-fit: cover; border: 10px solid var(--cream); }
.story-copy p:not(.eyebrow) { color: var(--muted); }
.story-points { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 34px 0; }
.story-point { border-top: 1px solid var(--line); padding-top: 14px; }
.story-point strong { display: block; font-family: var(--serif); font-size: 1.35rem; }
.story-point span { color: var(--muted); font-size: .82rem; }

.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.18); }
.process-step { min-height: 270px; padding: 28px; background: var(--forest); }
.process-step b { display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: #d8c49d; font-size: .74rem; }
.process-step h3 { margin: 62px 0 12px; font-family: var(--serif); font-size: 1.6rem; }
.process-step p { margin: 0; color: rgba(255,255,255,.64); font-size: .86rem; }

.trade-banner { position: relative; overflow: hidden; background: #d8c2a7; }
.trade-banner::before { content: ''; position: absolute; inset: 0; opacity: .17; background-image: radial-gradient(circle at 1px 1px, #65432d 1px, transparent 0); background-size: 22px 22px; }
.trade-banner__inner { position: relative; display: grid; grid-template-columns: 1fr .8fr; gap: 80px; align-items: center; padding: 90px 0; }
.trade-banner__copy, .trade-list { min-width: 0; }
.trade-banner__copy p { max-width: 620px; color: rgba(23,33,29,.7); }
.trade-list { display: grid; gap: 12px; }
.trade-list div { display: flex; justify-content: space-between; gap: 20px; padding: 15px 0; border-bottom: 1px solid rgba(23,33,29,.18); }
.trade-list span { color: rgba(23,33,29,.58); font-size: .78rem; }

.quote { max-width: 930px; margin: 0 auto; text-align: center; }
.quote blockquote { margin: 0; font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 5.2rem); line-height: .98; }
.quote p { margin-top: 24px; color: rgba(255,255,255,.58); text-transform: uppercase; letter-spacing: .14em; font-size: .68rem; }

.page-hero { padding: 190px 0 88px; background: var(--cream); }
.page-hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 80px; }
.page-hero p:last-child { max-width: 580px; color: var(--muted); font-size: 1.02rem; }
.page-hero--image { min-height: 650px; color: #fff; display: flex; align-items: end; position: relative; background-size: cover; background-position: center; }
.page-hero--image::after { content:''; position:absolute; inset:0; background:linear-gradient(0deg,rgba(9,27,25,.86),rgba(9,27,25,.12) 70%); }
.page-hero--image .container { position:relative; z-index:1; padding-bottom:78px; }

.catalogue-toolbar { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; margin-bottom: 34px; }
.search-box { position: relative; max-width: 450px; }
.search-box input { width: 100%; min-height: 50px; padding: 0 44px 0 16px; border: 1px solid var(--line); background: #fff; outline: none; }
.search-box input:focus { border-color: var(--forest); }
.search-box::after { content:'⌕'; position:absolute; right:16px; top:9px; font-size:1.4rem; color:var(--muted); }
.result-count { color: var(--muted); font-size: .8rem; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.filter-chip { min-height: 42px; padding: 0 15px; border: 1px solid var(--line); background: transparent; font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; cursor: pointer; }
.filter-chip:hover, .filter-chip.is-active { background: var(--forest); color: #fff; border-color: var(--forest); }
.empty-state { grid-column: 1 / -1; padding: 80px 20px; text-align: center; border: 1px solid var(--line); }
.empty-state h3 { font-family: var(--serif); font-size: 2rem; margin: 0; }

.product-page { padding: 150px 0 90px; display: grid; grid-template-columns: 1.08fr .92fr; gap: 72px; align-items: start; }
.product-page__main-image { aspect-ratio: 4/5; background: var(--cream); overflow: hidden; }
.product-page__main-image img { width: 100%; height: 100%; object-fit: cover; }
.product-page__thumbs { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 10px; }
.product-thumb { padding: 0; border: 1px solid transparent; background: var(--cream); aspect-ratio: 1; cursor: pointer; overflow: hidden; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-thumb.is-active { border-color: var(--forest); }
.product-page__content { position: sticky; top: 120px; }
.product-page__content h1 { margin: 0; font-family: var(--serif); font-size: clamp(3.1rem,5vw,5.2rem); line-height: .93; font-weight: 600; }
.product-page__lead { margin: 26px 0; color: var(--muted); font-size: 1.02rem; }
.product-specs { margin: 32px 0; border-top: 1px solid var(--line); }
.product-specs div { display: grid; grid-template-columns: 145px 1fr; gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.product-specs dt { color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.product-specs dd { margin: 0; font-size: .86rem; }
.product-note { margin: 18px 0; }
.product-note span { color: var(--gold); text-transform: uppercase; letter-spacing: .12em; font-size: .65rem; font-weight: 700; }
.product-note p { margin: 5px 0 0; color: var(--muted); font-size: .87rem; }
.product-actions { display: flex; gap: 10px; flex-wrap: wrap; margin: 30px 0 20px; }

.about-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 84px; align-items: start; }
.founder-portrait { position: sticky; top: 120px; min-height: 640px; margin: 0; padding: 38px; display: flex; flex-direction: column; overflow: hidden; background: #0e302d; color: #fff; box-shadow: var(--shadow); }
.founder-portrait::before { content: ''; position: absolute; inset: 18px; border: 1px solid rgba(203,180,134,.42); pointer-events: none; }
.founder-portrait__top, .founder-portrait__identity, .founder-portrait__elephant, .founder-portrait figcaption { position: relative; z-index: 1; }
.founder-portrait__top { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.founder-portrait__top img { width: 94px; height: 94px; object-fit: contain; }
.founder-portrait__top span { max-width: 145px; color: rgba(255,255,255,.68); font-size: .64rem; font-weight: 700; line-height: 1.5; letter-spacing: .13em; text-align: right; text-transform: uppercase; }
.founder-portrait__identity { margin-top: 54px; }
.founder-portrait__identity .eyebrow { color: #d7bd82; }
.founder-portrait__identity h2 { margin: 10px 0 6px; font-family: var(--serif); font-size: 3.65rem; font-weight: 500; line-height: .94; }
.founder-portrait__identity > p:last-child { margin: 0; color: rgba(255,255,255,.68); font-size: .78rem; letter-spacing: .05em; }
.founder-portrait__elephant { width: 100%; max-height: 238px; margin: auto auto 10px; object-fit: contain; }
.founder-portrait figcaption { padding-top: 14px; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.62); font-size: .7rem; line-height: 1.5; letter-spacing: .06em; }
.about-copy h2 { margin: 0 0 28px; font-family: var(--serif); font-size: clamp(3rem,5vw,5rem); line-height: .95; }
.about-copy p { color: var(--muted); }
.founder-card { margin-top: 36px; padding: 28px; background: var(--cream); border-left: 3px solid var(--gold); }
.founder-card strong { display: block; font-family: var(--serif); font-size: 1.8rem; }
.founder-card span { display: block; color: var(--muted); }

.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.value-card { padding: 34px; min-height: 260px; border: 1px solid var(--line); }
.value-card b { color: var(--gold); font-family: var(--serif); font-size: 2rem; }
.value-card h3 { margin: 48px 0 10px; font-family: var(--serif); font-size: 1.65rem; }
.value-card p { margin: 0; color: var(--muted); font-size: .86rem; }

.trade-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 84px; align-items: start; }
.trade-steps { counter-reset: step; }
.trade-step { position: relative; padding: 26px 0 26px 72px; border-bottom: 1px solid var(--line); }
.trade-step::before { counter-increment: step; content: '0' counter(step); position: absolute; left: 0; top: 27px; color: var(--gold); font-family: var(--serif); font-size: 1.45rem; }
.trade-step h3 { margin: 0; font-family: var(--serif); font-size: 1.6rem; }
.trade-step p { margin: 7px 0 0; color: var(--muted); font-size: .87rem; }
.info-panel { padding: 36px; background: var(--forest); color: #fff; }
.info-panel h3 { margin: 0 0 20px; font-family: var(--serif); font-size: 2.2rem; }
.info-panel p { color: rgba(255,255,255,.68); }
.info-panel ul { margin: 28px 0; padding: 0; list-style: none; }
.info-panel li { padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.16); }

.faq-list { max-width: 900px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; display: flex; justify-content: space-between; gap: 30px; align-items: center; padding: 24px 0; border: 0; background: transparent; text-align: left; cursor: pointer; font-family: var(--serif); font-size: 1.55rem; }
.faq-item button span:last-child { font-family: var(--sans); font-size: 1.2rem; transition: transform .25s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer p { margin: 0 0 26px; color: var(--muted); }
.faq-item.is-open .faq-answer { max-height: 250px; }
.faq-item.is-open button span:last-child { transform: rotate(45deg); }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 72px; }
.contact-details { padding: 38px; background: var(--forest); color: #fff; }
.contact-details h2 { margin: 0 0 18px; font-family: var(--serif); font-size: 3rem; line-height: .95; }
.contact-details p { color: rgba(255,255,255,.66); }
.contact-list { margin-top: 38px; }
.contact-list div { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.15); }
.contact-list small { display: block; color: #cfb98e; text-transform: uppercase; letter-spacing: .12em; font-size: .62rem; }
.contact-list a, .contact-list span { display: block; margin-top: 5px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1/-1; }
.field label { font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid var(--line); background: #fff; padding: 14px 15px; outline: none; }
.field textarea { min-height: 145px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--forest); }
.form-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 22px; }
.form-note { color: var(--muted); font-size: .76rem; }

.site-footer { background: #0e2825; color: #fff; }
.footer-main { padding: 80px 0 44px; display: grid; grid-template-columns: 1.2fr .7fr .7fr .9fr; gap: 52px; }
.footer-brand { position: relative; padding-top: 70px; }
.footer-brand::before { content: ''; position: absolute; left: 0; top: 0; width: 58px; height: 58px; background: url("../images/brand/royalroots-emblem.png") center / contain no-repeat; }
.footer-brand strong { font-family: var(--serif); font-size: 2.5rem; }
.footer-brand p { max-width: 340px; color: rgba(255,255,255,.58); font-size: .85rem; }
.footer-col h4 { margin: 0 0 18px; text-transform: uppercase; letter-spacing: .13em; font-size: .66rem; color: #cbb486; }
.footer-col a, .footer-col span { display: block; margin: 9px 0; color: rgba(255,255,255,.72); font-size: .82rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.46); font-size: .68rem; }
.footer-bottom::after { content: ''; flex: 0 0 82px; width: 82px; height: 42px; background: url("../images/brand/heritage-elephant.png") center / contain no-repeat; opacity: .68; }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  :root { --container: min(100% - 36px, 900px); }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .brand { justify-self: start; }
  .site-nav { position: fixed; inset: 0; padding: 125px 28px 40px; flex-direction: column; align-items: flex-start; background: var(--paper); color: var(--ink); transform: translateX(-100%); transition: transform .3s ease; }
  .site-nav.is-open { transform: none; }
  .site-nav a { font-family: var(--serif); font-size: 2.4rem; text-transform: none; letter-spacing: 0; }
  .nav-toggle { display: block; justify-self: end; z-index: 3; }
  .header-cta { display: none; }
  .hero__media { grid-template-columns: 1fr; }
  .hero__media img:last-child { display: none; }
  .hero__stamp { display: none; }
  .trust-strip__grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(3) { border-left: 1px solid rgba(255,255,255,.14); }
  .collection-card, .collection-card:nth-child(1), .collection-card:nth-child(5) { grid-column: span 6; }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .story-grid, .page-hero__grid, .trade-banner__inner, .product-page, .about-grid, .trade-grid, .contact-grid { grid-template-columns: 1fr; }
  .story-copy { max-width: 720px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .product-page__content, .founder-portrait { position: static; }
  .product-page { padding-top: 130px; }
  .footer-main { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 680px) {
  :root { --container: calc(100vw - 28px); }
  .section { padding: 82px 0; }
  .header-inner { height: 72px; }
  .brand strong { font-size: 1.5rem; }
  .brand span { font-size: .43rem; }
  .brand { min-height: 32px; padding-left: 35px; }
  .brand::before { width: 29px; height: 29px; }
  .hero { min-height: 760px; }
  .hero__content { padding: 150px 0 70px; }
  .display { font-size: clamp(3.2rem, 16vw, 4.8rem); }
  .hero__content p.hero-copy { font-size: .94rem; }
  .hero__actions .button { width: 100%; }
  .trust-strip__grid { grid-template-columns: 1fr; }
  .trust-item, .trust-item:first-child, .trust-item:nth-child(3) { border-left: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); }
  .section-heading { align-items: start; flex-direction: column; margin-bottom: 34px; }
  .collection-grid { display: grid; grid-template-columns: 1fr; }
  .collection-card, .collection-card:nth-child(1), .collection-card:nth-child(5) { grid-column: auto; min-height: 470px; }
  .collection-card__content em { opacity: 1; transform: none; }
  .product-grid { grid-template-columns: 1fr; }
  .story-collage { min-height: 520px; }
  .story-points, .values-grid, .process-grid { grid-template-columns: 1fr; }
  .process-step { min-height: 220px; }
  .process-step h3 { margin-top: 38px; }
  .page-hero { padding: 145px 0 68px; }
  .catalogue-toolbar { grid-template-columns: 1fr; }
  .product-page { gap: 38px; }
  .product-page__content h1 { font-size: 3.4rem; }
  .product-specs div { grid-template-columns: 1fr; gap: 5px; }
  .product-actions .button { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-brand { grid-column: 1/-1; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom::after { order: -1; }
  .founder-portrait { min-height: 560px; padding: 28px; }
  .founder-portrait::before { inset: 12px; }
  .founder-portrait__top img { width: 76px; height: 76px; }
  .founder-portrait__identity { margin-top: 42px; }
  .founder-portrait__identity h2 { font-size: 3rem; }
  .founder-portrait__elephant { max-height: 210px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* 2026 photographed-catalogue upgrade */
:root {
  --ink: #17201d;
  --forest: #17463b;
  --forest-2: #102f29;
  --cobalt: #185aa5;
  --marigold: #d3a51f;
  --lacquer: #a54134;
  --cream: #f0f1ea;
  --paper: #fbfcf8;
  --sand: #d7d7cc;
  --clay: #a54134;
  --gold: #ad7b17;
  --muted: #5d6964;
  --line: rgba(23, 32, 29, .16);
  --shadow: 0 24px 70px rgba(23, 32, 29, .12);
}

*, *::before, *::after { letter-spacing: 0 !important; }
::selection { background: #f1d675; color: var(--forest-2); }
.skip-link { top: 0; transform: translateY(-140%); }
.skip-link:focus { top: 16px; transform: none; }

.display { font-size: 6rem; line-height: .94; }
.section-title { font-size: 4.7rem; }
.quote blockquote { font-size: 4.7rem; }
.product-page__content h1 { font-size: 4.8rem; line-height: .96; }
.about-copy h2 { font-size: 4.6rem; }

.hero {
  height: 88svh;
  min-height: min(680px, 88svh);
  max-height: 900px;
}
.hero__media::after { background: rgba(8, 25, 23, .56); }
.hero__media img:first-child { filter: saturate(.95) contrast(1.02); }
.hero__media img:last-child { filter: saturate(.92) contrast(1.02); }
.hero__stamp { border-top: 4px solid var(--marigold); }
.hero__stamp strong { font-size: 1.25rem; }

.section--cream { background: var(--cream); }
.trust-strip { border-top: 5px solid var(--cobalt); }
.collection-card__overlay { background: rgba(7, 22, 20, .4); }
.collection-card__content em { opacity: 1; transform: none; }
.text-link::after { content: '\2192'; }

.trade-banner {
  background: #e6c54e;
  border-top: 10px solid var(--cobalt);
}
.trade-banner::before { display: none; }
.trade-banner__copy p,
.trade-list span { color: rgba(23, 32, 29, .72); }

.page-hero--image::after { background: rgba(9, 27, 25, .54); }
.page-hero--catalogue {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.page-hero--catalogue::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 10px;
  background: var(--cobalt);
}
.page-hero__aside { display: grid; gap: 28px; }
.page-hero__aside > p { margin: 0; }
.catalogue-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.catalogue-stats div { padding: 18px 14px 18px 0; }
.catalogue-stats strong {
  display: block;
  color: var(--cobalt);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}
.catalogue-stats span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: .68rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.catalogue-section { background: var(--paper); }
.catalogue-toolbar {
  grid-template-columns: minmax(280px, 1fr) auto;
  align-items: end;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.catalogue-toolbar__right {
  display: flex;
  align-items: end;
  gap: 24px;
}
.search-box { max-width: 560px; }
.search-box label,
.sort-control > span {
  display: block;
  margin-bottom: 7px;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
}
.search-box input { padding-right: 16px; background: var(--paper); }
.search-box::after { display: none; }
.sort-control { display: block; }
.sort-control select {
  min-height: 50px;
  min-width: 190px;
  padding: 0 38px 0 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}
.result-count { min-width: 160px; padding-bottom: 14px; text-align: right; }
.filters { margin-bottom: 42px; }
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-color: rgba(23, 32, 29, .2);
}
.filter-chip span {
  color: var(--muted);
  font-size: .62rem;
}
.filter-chip.is-active span,
.filter-chip:hover span { color: rgba(255, 255, 255, .72); }

.product-card {
  min-width: 0;
}
.product-card__image { background: #e7e9e5; }
.product-card__count {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  background: rgba(251, 252, 248, .94);
  color: var(--forest);
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
}
.product-card__hook {
  display: -webkit-box;
  min-height: 3.9em;
  margin: 12px 0 0;
  overflow: hidden;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.product-card__meta span:last-child {
  max-width: 52%;
  overflow: hidden;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalogue-disclosure {
  background: var(--cobalt);
  color: #fff;
}
.catalogue-disclosure__inner {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 32px;
  padding: 30px 0;
}
.catalogue-disclosure strong {
  font-family: var(--serif);
  font-size: 1.45rem;
}
.catalogue-disclosure p {
  max-width: 850px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: .82rem;
}

.product-page {
  display: block;
  padding: 126px 0 92px;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: .72rem;
}
.breadcrumbs a:hover { color: var(--cobalt); }
.product-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: 72px;
  align-items: start;
}
.product-page__main-image {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #eceeea;
}
.product-page__main-image img {
  object-fit: contain;
  background: #eceeea;
}
.gallery-controls {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: grid;
  grid-template-columns: 42px 66px 42px;
  align-items: center;
  background: rgba(251, 252, 248, .95);
  color: var(--forest);
}
.gallery-controls button {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 1.1rem;
}
.gallery-controls button:hover,
.gallery-controls button:focus-visible { background: var(--forest); color: #fff; }
.gallery-controls span { text-align: center; font-size: .7rem; }
.gallery-expand {
  position: absolute;
  right: 14px;
  bottom: 14px;
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  background: rgba(251, 252, 248, .95);
  color: var(--forest);
  cursor: pointer;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
}
.gallery-expand:hover,
.gallery-expand:focus-visible { background: var(--forest); color: #fff; }
.gallery-caption {
  min-height: 3.1em;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .76rem;
}
.product-page__thumbs {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 14px;
}
.product-thumb { background: #eceeea; }
.product-thumb img { object-fit: cover; }
.product-thumb.is-active { border: 2px solid var(--cobalt); }
.product-page__content { top: 112px; }
.product-page__lead { font-size: 1rem; }
.selling-points {
  display: grid;
  margin: 30px 0;
  border-top: 1px solid var(--line);
}
.selling-points p {
  position: relative;
  margin: 0;
  padding: 15px 0 15px 27px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: .84rem;
}
.selling-points p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 23px;
  width: 10px;
  height: 3px;
  background: var(--marigold);
}
.specification-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: .74rem;
}
.visual-disclosure {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.visual-disclosure summary {
  padding: 13px 0;
  cursor: pointer;
  color: var(--forest);
  font-size: .76rem;
  font-weight: 700;
}
.visual-disclosure p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: .76rem;
}
.image-dialog {
  width: min(94vw, 1120px);
  max-height: 94vh;
  padding: 18px;
  border: 0;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.image-dialog::backdrop { background: rgba(9, 27, 25, .82); }
.image-dialog form {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
}
.image-dialog form button {
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--forest);
  color: #fff;
  cursor: pointer;
  font-size: 1.7rem;
}
.image-dialog img {
  width: 100%;
  max-height: calc(94vh - 94px);
  object-fit: contain;
  background: #eceeea;
}
.image-dialog p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .76rem;
}
.product-not-found {
  max-width: 760px;
  padding: 90px 0;
}
.product-not-found h1 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
}

.button--hero-outline {
  border-color: rgba(255, 255, 255, .45);
  color: #fff;
}

.page-hero--about {
  background-image: url("../images/products/rr-bp-vas-0030-card.jpg");
}

.page-hero--craftsmanship {
  background-image: url("../images/hero/rr-bp-bas-0001-detail.jpg");
}

.container--narrow {
  max-width: 860px;
}

.managed-section {
  padding: 84px 0;
  background: var(--paper);
}

.managed-section:nth-child(even) {
  background: var(--cream);
}

.managed-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  align-items: center;
  gap: clamp(46px, 7vw, 112px);
}

.managed-section:nth-child(even) .managed-section__copy {
  order: 2;
}

.managed-section__copy {
  max-width: 690px;
}

.managed-section__copy .section-title {
  margin-bottom: 24px;
}

.managed-section__body {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.8rem;
  line-height: 1.7;
  white-space: pre-line;
}

.managed-section__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eceeea;
}

.managed-section--text .managed-section__inner {
  display: block;
}

@media (max-width: 1020px) {
  .display { font-size: 5rem; }
  .section-title,
  .quote blockquote { font-size: 4rem; }
  .product-page__content h1,
  .about-copy h2 { font-size: 4.2rem; }
  .product-page__layout { grid-template-columns: 1fr; gap: 42px; }
  .product-page__content { position: static; }
  .catalogue-stats strong { font-size: 1.7rem; }
  .managed-section__inner { gap: 42px; }
}

@media (max-width: 680px) {
  .display { font-size: 3.75rem; line-height: .96; }
  .section-title,
  .quote blockquote { font-size: 3.2rem; }
  .product-page__content h1,
  .about-copy h2 { font-size: 3.35rem; }
  .hero {
    height: 88svh;
    min-height: min(610px, 88svh);
  }
  .hero__content { padding: 122px 0 42px; }
  .page-hero__grid { gap: 34px; }
  .catalogue-stats { grid-template-columns: 1fr 1fr; }
  .catalogue-stats div:last-child { grid-column: 1 / -1; }
  .catalogue-toolbar { grid-template-columns: 1fr; }
  .catalogue-toolbar__right {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .sort-control select { width: 100%; }
  .result-count { min-width: 0; padding: 0; text-align: left; }
  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
  }
  .filter-chip { flex: 0 0 auto; }
  .catalogue-disclosure__inner { grid-template-columns: 1fr; gap: 8px; }
  .product-page { padding-top: 102px; }
  .product-page__thumbs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gallery-expand { top: 14px; bottom: auto; }
  .product-not-found h1 { font-size: 3.2rem; }
  .managed-section { padding: 62px 0; }
  .managed-section__inner { grid-template-columns: 1fr; gap: 30px; }
  .managed-section:nth-child(even) .managed-section__copy { order: initial; }
  .managed-section__body { font-size: 1.65rem; }
  .trade-banner .section-title { font-size: clamp(2.35rem, 10.5vw, 2.7rem); }
  .trade-list strong { flex: 0 1 auto; }
  .trade-list span { min-width: 0; text-align: right; overflow-wrap: anywhere; }
}
