@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,400,0,0&display=swap');

:root {
	--ink: #241b19;
	--paper: #fffdf9;
	--muted: #766c66;
	--line: #ded4c9;
	--gold: #b08a4a;
	--gold-light: #d6b878;
	--espresso: #2d211e;
	--oxblood: #5a2529;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: 'DM Sans', sans-serif; }
body { overflow-x: hidden; }
img, video { max-width: 100%; }
img { background: #fff; }
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
header { border-bottom: 1px solid var(--line); background: rgba(255, 253, 249, .96); box-shadow: 0 5px 24px rgba(45, 33, 30, .05); }
.navbar { max-width: 1240px; margin: auto; min-height: 92px; padding: 0 32px; display: flex; align-items: center; gap: 36px; }
.logo { width: 260px; height: 78px; margin-right: auto; display: block; flex: 0 0 260px; }
.logo img { width: 100%; height: 100%; display: block; object-fit: contain; object-position: left center; }
.nav-links { display: flex; gap: 24px; list-style: none; margin: 0; padding: 0; font-size: 13px; font-weight: 700; }
.nav-links a:hover, .social-links a:hover { color: var(--gold); }
.nav-button, .btn, .product-btn { display: inline-block; font-weight: 700; transition: transform .2s ease, background .2s ease; }
.nav-button { padding: 13px 18px; background: var(--oxblood); color: white; font-size: 12px; letter-spacing: 1px; }
.nav-button:hover, .btn:hover, .product-btn:hover { transform: translateY(-3px); }
.cart-toggle { border: 0; padding: 10px 0; background: transparent; color: var(--ink); font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 1px; cursor: pointer; }
.cart-toggle::before, .brand-cart-floating::before, .product-btn::before { display: inline-block; margin-right: 6px; vertical-align: -3px; font-family: 'Material Symbols Outlined'; font-size: 17px; font-weight: 400; line-height: 1; content: 'shopping_bag'; }
.cart-toggle span { display: inline-grid; place-items: center; min-width: 20px; height: 20px; margin-left: 4px; border-radius: 50%; background: var(--gold); color: var(--paper); font-size: 10px; }
.cart-toggle:hover { color: var(--gold); }
.brand-cart-floating { position: fixed; right: 24px; bottom: 24px; z-index: 18; padding: 14px 18px; border: 0; background: var(--oxblood); color: var(--paper); font: 700 11px 'DM Sans', sans-serif; letter-spacing: 1px; cursor: pointer; box-shadow: 0 12px 30px rgba(90, 37, 41, .24); }
.brand-cart-floating span { display: inline-grid; place-items: center; min-width: 20px; height: 20px; margin-left: 4px; border-radius: 50%; background: var(--gold); color: var(--paper); font-size: 10px; }
.brand-cart-floating:hover { background: var(--gold); }
.menu-toggle { display: none; width: 38px; height: 38px; padding: 8px; border: 1px solid var(--line); background: transparent; cursor: pointer; }
.menu-toggle span { display: block; height: 1px; margin: 5px 0; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle:hover { border-color: var(--gold); }
.cart-backdrop { position: fixed; inset: 0; z-index: 19; background: rgba(23, 21, 19, .46); }
.cart-backdrop[hidden] { display: none; }
.cart-drawer { position: fixed; top: 0; right: 0; z-index: 20; width: min(440px, 100%); height: 100vh; display: flex; flex-direction: column; background: var(--paper); box-shadow: -20px 0 60px rgba(45, 33, 30, .2); }
.cart-drawer[hidden] { display: none; }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 28px 30px; border-bottom: 1px solid var(--line); }
.cart-header h2 { margin: 0; font-size: 32px; }
.cart-close { width: 38px; height: 38px; border: 1px solid var(--line); background: transparent; color: var(--ink); font-size: 26px; line-height: 1; cursor: pointer; }
.cart-close:hover { border-color: var(--gold); color: var(--gold); }
.cart-items { flex: 1; overflow-y: auto; padding: 10px 30px; }
.cart-empty { margin-top: 50px; color: var(--muted); font-family: 'Playfair Display', serif; font-size: 25px; line-height: 1.15; text-align: center; }
.cart-item { display: flex; align-items: start; justify-content: space-between; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.cart-item h3 { margin: 0 0 5px; font-size: 21px; }
.cart-item p { margin: 0 0 14px; color: var(--muted); font-size: 13px; }
.quantity-control { display: inline-flex; align-items: center; border: 1px solid var(--line); }
.quantity-control button { width: 30px; height: 28px; border: 0; background: transparent; color: var(--ink); font-size: 16px; cursor: pointer; }
.quantity-control button:hover { color: var(--gold); }
.quantity-control span { min-width: 30px; text-align: center; font-size: 12px; }
.remove-item { border: 0; padding: 4px 0; background: transparent; color: var(--muted); font-size: 10px; font-weight: 700; cursor: pointer; }
.remove-item:hover { color: var(--gold); }
.cart-footer { padding: 24px 30px 30px; border-top: 1px solid var(--line); }
.cart-total { display: flex; justify-content: space-between; margin-bottom: 18px; font-size: 12px; letter-spacing: 1px; }
.cart-total strong { font-size: 17px; letter-spacing: 0; }
.cart-grand-total { margin-top: 8px; padding-top: 14px; border-top: 1px solid var(--line); font-weight: 700; }
.cart-grand-total strong { color: var(--gold); font-size: 21px; }
.checkout-button { width: 100%; border: 0; cursor: pointer; }
.checkout-button:disabled { opacity: .4; cursor: not-allowed; transform: none; }
.cart-note { margin: 14px 0 0; color: var(--muted); font-size: 11px; text-align: center; }
.checkout-panel { max-width: 680px; }
.checkout-form { display: grid; gap: 24px; }
.checkout-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.checkout-fields label, .payment-methods legend { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: 1px; }
.checkout-fields label { display: grid; gap: 7px; }
.checkout-fields label:last-child { grid-column: 1 / -1; }
.checkout-fields input, .checkout-fields textarea { width: 100%; border: 1px solid var(--line); padding: 12px; color: var(--ink); background: var(--paper); font: 14px 'DM Sans', sans-serif; }
.checkout-fields textarea { resize: vertical; }
.payment-methods { display: grid; gap: 10px; margin: 0; padding: 0; border: 0; }
.payment-methods legend { margin-bottom: 2px; }
.payment-option { display: flex; align-items: start; gap: 10px; padding: 13px; border: 1px solid var(--line); cursor: pointer; }
.payment-option:has(input:checked) { border-color: var(--gold); background: rgba(181, 138, 50, .06); }
.payment-option input { margin-top: 3px; accent-color: var(--gold); }
.payment-option span { display: grid; gap: 4px; }
.payment-option strong { font-size: 11px; }
.payment-option small { color: var(--muted); font-size: 11px; }
.checkout-status { min-height: 18px; margin: 0; color: var(--gold); font-size: 12px; line-height: 1.4; }
.checkout-submit { width: 100%; border: 0; cursor: pointer; }
.hero { position: relative; min-height: 620px; overflow: hidden; padding: 72px 7vw; display: flex; align-items: center; color: var(--paper); background: linear-gradient(118deg, transparent 0 72%, rgba(176, 138, 74, .14) 72% 72.25%, transparent 72.25%), repeating-linear-gradient(90deg, transparent 0 120px, rgba(176, 138, 74, .06) 120px 121px), var(--paper); }
.hero-video, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-video { object-fit: cover; object-position: center; filter: brightness(.72) contrast(1.08) saturate(1.12); }
.hero-overlay { background: linear-gradient(90deg, rgba(11, 11, 11, .84), rgba(11, 11, 11, .42) 62%, rgba(11, 11, 11, .2)); }
.hero-content { position: relative; z-index: 1; max-width: 760px; text-shadow: 0 2px 18px rgba(0, 0, 0, .28); animation: rise .7s ease both; }
.hero-small, .section-heading p, .brand-message > div > p:first-child, .about-content > p:first-child, .contact > p { margin: 0 0 18px; color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 3px; }
h1 { margin: 0; font-family: 'Playfair Display', serif; font-size: clamp(68px, 10vw, 156px); font-weight: 600; line-height: .86; letter-spacing: 0; }
h1 span { color: var(--gold-light); }
.hero-text { max-width: 430px; margin: 30px 0; color: rgba(255, 255, 255, .9); font-size: 17px; line-height: 1.6; }
.hero-mission { max-width: 520px; margin: -12px 0 30px; color: rgba(255, 255, 255, .84); font-size: 14px; line-height: 1.65; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.btn { padding: 16px 22px; font-size: 12px; }
.btn i, .social-links i { margin-right: 7px; }
.social-links a { display: inline-flex; align-items: center; }
.primary-btn { background: var(--oxblood); color: var(--paper); }
.secondary-btn { border: 1px solid var(--gold); }
.featured, .collections { max-width: 1240px; margin: auto; padding: 100px 32px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 38px; border-bottom: 1px solid var(--line); }
.section-heading p { margin-bottom: 12px; }
.section-heading > span { max-width: 250px; padding-bottom: 14px; color: var(--muted); font-family: 'Playfair Display', serif; font-size: 21px; line-height: 1.1; text-align: right; }
.shop-navigation { display: flex; justify-content: flex-end; align-items: center; gap: 18px; margin: -18px 0 28px; color: var(--muted); font-size: 11px; }
.shop-navigation button { border: 0; padding: 8px 0; background: transparent; color: var(--gold); font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 1px; cursor: pointer; }
.shop-navigation button:hover { color: var(--ink); }
.shop-product-active { outline: 1px solid var(--gold); outline-offset: 8px; }
h2 { margin: 0 0 10px; font-family: 'Playfair Display', serif; font-size: clamp(38px, 5vw, 68px); font-weight: 600; line-height: .95; letter-spacing: 0; }
.products { display: flex; gap: 20px; overflow-x: auto; padding: 0 10px 14px; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.products .product-card { flex: 0 0 calc((100% - 40px) / 3); scroll-snap-align: center; }
.collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card { border-top: 1px solid var(--gold); padding-top: 14px; }
.product-image { aspect-ratio: 4 / 5; overflow: hidden; background: #fff; }
.product-slider { position: relative; }
.product-slider-button { position: absolute; top: 50%; z-index: 1; width: 42px; height: 42px; border: 0; border-radius: 50%; background: rgba(20, 20, 20, .78); color: var(--paper); font-size: 22px; line-height: 1; cursor: pointer; transform: translateY(-50%); }
.product-slider-button:hover { background: var(--gold); }
.product-slider-previous { left: 14px; }
.product-slider-next { right: 14px; }
.product-image-trigger { display: block; width: 100%; padding: 0; border: 0; background: transparent; cursor: pointer; }
.product-image-trigger:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.product-image img { width: 100%; height: 100%; display: block; object-fit: contain; image-rendering: auto; transition: transform .5s ease; }
.product-card:hover img { transform: scale(1.04); }
.product-card h3 { margin: 18px 0 5px; font-size: 18px; }
.product-category { margin: 18px 0 0; color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: 2px; }
.product-description { min-height: 72px; margin: 12px 0 14px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.product-card > p { margin: 0 0 16px; color: var(--muted); }
.product-card > .product-category { margin: 18px 0 0; color: var(--gold); }
.product-options { display: flex; gap: 8px; margin-bottom: 16px; }
.product-options label, .brand-release-options label { display: flex; flex-direction: column; gap: 5px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: 1px; }
.product-options label::before, .brand-release-options label::before { margin-bottom: 2px; color: var(--gold); font-family: 'Material Symbols Outlined'; font-size: 18px; font-weight: 400; line-height: 1; letter-spacing: 0; }
.product-options label:first-child::before, .brand-release-options label:first-child::before { content: 'straighten'; }
.product-options label:nth-child(2)::before, .brand-release-options label:nth-child(2)::before { content: 'palette'; }
.product-options select, .brand-release-options select { min-width: 74px; padding: 9px 24px 9px 10px; border: 1px solid var(--line); border-radius: 0; background: var(--paper); color: var(--ink); font-family: 'DM Sans', sans-serif; font-size: 11px; cursor: pointer; transition: border-color .2s ease, box-shadow .2s ease; }
.product-options select:hover, .brand-release-options select:hover, .product-options select:focus, .brand-release-options select:focus { border-color: var(--gold); outline: 0; box-shadow: 0 0 0 2px rgba(176, 138, 74, .14); }
.product-btn { padding: 13px 16px; border: 0; background: var(--oxblood); color: var(--paper); font-family: 'DM Sans', sans-serif; font-size: 11px; letter-spacing: 1px; cursor: pointer; }
.how-to-order-section { max-width: 1240px; margin: 0 auto; padding: 100px 32px; }
.how-to-order { margin-top: 0; }
.order-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.order-step { padding: 22px 0; border-top: 1px solid var(--gold); }
.order-step > span { color: var(--gold); font-family: 'Playfair Display', serif; font-size: 24px; }
.order-step h3 { margin: 28px 0 10px; font-size: 22px; }
.order-step p { max-width: 190px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.brand-message { padding: 110px 7vw; background: var(--espresso); color: var(--paper); }
.brand-message > div { max-width: 850px; }
.brand-cover-logo { display: block; width: min(220px, 60vw); max-height: 150px; margin-bottom: 30px; object-fit: contain; object-position: left center; }
.brand-message h2 { font-size: clamp(40px, 6vw, 82px); }
.brand-message > div > p:last-child { max-width: 550px; line-height: 1.6; margin: 26px 0 30px; }
.brand-message .store-coming-soon { margin: 20px 0 0; color: var(--gold-light); font-size: 13px; font-weight: 700; letter-spacing: 2px; }
.brands-hub { max-width: 1240px; margin: auto; padding: 100px 32px; background: linear-gradient(135deg, #fffdf9 0%, #f5eee5 100%); }
.brands-hub h1 { font-size: clamp(48px, 7vw, 92px); line-height: .9; }
.brand-directory { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.brand-profile { min-height: 300px; padding: 30px; border-top: 2px solid var(--ink); background: rgba(255, 253, 249, .9); display: flex; flex-direction: column; align-items: flex-start; box-shadow: 0 12px 30px rgba(45, 33, 30, .06); }
.brand-profile-featured { border-top-color: var(--gold); background: var(--paper); color: var(--ink); }
.founding-brand-logo { width: min(100%, 440px); height: 185px; margin: -4px 0 24px; object-fit: contain; object-position: left center; background: var(--paper); }
.brand-profile-label { margin: 0 0 54px; color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: 2px; }
.brand-profile h3 { margin: 0 0 16px; font-size: 25px; line-height: 1; }
.brand-profile > p:not(.brand-profile-label) { max-width: 290px; margin: 0 0 26px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.brand-profile .store-coming-soon { margin: -6px 0 12px; color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; }
.brand-profile-featured > p:not(.brand-profile-label) { color: var(--ink); }
.brand-profile-featured h3 { color: var(--ink); }
.brand-profile-featured .brand-profile-button { color: var(--ink); }
.brand-profile-featured .brand-profile-button:hover { color: var(--gold); }
.brand-profile-link { margin-top: auto; color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: 1px; }
.brand-profile-link:hover { color: var(--gold-light); }
.brand-profile[data-brand-page] { cursor: pointer; }
.brand-profile[data-brand-page]:hover { box-shadow: 0 12px 30px rgba(11, 11, 11, .12); transform: translateY(-3px); }
.brand-profile[data-brand-page]:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.brand-profile-button { margin-top: auto; text-align: left; }
.brand-collections-panel { width: min(1040px, 100%); }
.brand-release-viewer { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(240px, .75fr); gap: 24px; }
.brand-release-image-wrap { position: relative; min-width: 0; background: #fff; }
.brand-release-image-wrap > img { width: 100%; max-height: min(66vh, 720px); aspect-ratio: 3 / 4; display: block; object-fit: contain; image-rendering: auto; }
.brand-release-controls { grid-column: 1; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; }
.brand-release-thumbnails { grid-column: 1; display: flex; flex-wrap: wrap; gap: 8px; align-content: start; }
.brand-release-details { grid-column: 2; grid-row: 1 / span 3; align-self: center; border-top: 1px solid var(--gold); padding-top: 18px; }
.brand-release-details h3 { margin: 0 0 10px; font-size: 24px; line-height: 1.05; }
.brand-release-details > p:not(.brand-profile-label) { margin: 0 0 16px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.brand-release-details > strong { color: var(--gold); font-size: 20px; }
.brand-release-options { display: flex; gap: 10px; margin: 22px 0; }
.brand-release-options label { flex: 1; }
.brand-release-options select { width: 100%; }
.brand-release-order { width: 100%; text-align: center; border: 0; }
.brand-hub-intro { max-width: 760px; margin: -8px 0 54px; color: var(--muted); font-family: 'Playfair Display', serif; font-size: 19px; line-height: 1.45; }
.brand-tools { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 18px 28px; margin-bottom: 30px; }
.brand-search-label { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: 2px; }
.brand-search { grid-column: 1; width: 100%; padding: 14px 16px; border: 1px solid var(--line); background: var(--paper); color: var(--ink); font: inherit; }
.brand-filters { grid-column: 2; grid-row: 1 / span 2; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.brand-filter { padding: 11px 13px; border: 1px solid var(--line); background: transparent; color: var(--muted); font: 700 10px 'DM Sans', sans-serif; letter-spacing: 1px; cursor: pointer; }
.brand-filter:hover, .brand-filter.active { border-color: var(--gold); color: var(--ink); }
.brand-profile[hidden] { display: none; }
.brand-empty-state { margin: 30px 0 0; color: var(--muted); font-size: 14px; }
.brand-application { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; margin-top: 70px; padding-top: 36px; border-top: 1px solid var(--line); }
.brand-application h3 { margin: 0 0 12px; font-size: 30px; }
.brand-application > div > p:not(.brand-profile-label) { max-width: 310px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.brand-application-form { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 14px; }
.brand-application-form label { align-self: end; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: 1px; }
.brand-application-form input, .brand-application-form select { width: 100%; padding: 12px; border: 1px solid var(--line); background: var(--paper); color: var(--ink); font: inherit; }
.brand-application-form button, .brand-application-status { grid-column: 1 / -1; }
.brand-application-form button { justify-self: start; border: 0; cursor: pointer; }
.brand-application-status { min-height: 18px; margin: 0; color: var(--gold); font-size: 12px; }
.about { padding: 120px 7vw; background: var(--ink); color: var(--paper); text-align: center; }
.about-content { max-width: 780px; margin: 0 auto; }
.about-content > p:first-child { color: var(--gold-light); }
.about-content > p:not(:first-child) { max-width: 650px; margin: 0 auto 22px; color: #b9b6ae; font-size: 17px; line-height: 1.7; }
.about-content .story-signoff { color: var(--gold-light); font-family: 'Playfair Display', serif; font-size: 25px; font-weight: 600; }
.modal-open { overflow: hidden; }
.story-modal { position: fixed; inset: 0; z-index: 10; display: grid; place-items: center; padding: 24px; background: rgba(23, 21, 19, .78); backdrop-filter: blur(8px); }
.story-modal[hidden] { display: none; }
.story-modal-panel { position: relative; width: min(760px, 100%); max-height: 90vh; overflow-y: auto; padding: 64px clamp(28px, 6vw, 76px); background: var(--paper); color: var(--ink); box-shadow: 0 24px 80px rgba(0, 0, 0, .35); }
.brand-story-modal { background: rgba(5, 5, 5, .86); backdrop-filter: blur(14px); }
.brand-story-panel { background: rgba(17, 17, 17, .94); color: var(--paper); box-shadow: 0 24px 90px rgba(0, 0, 0, .6); }
.story-modal .brand-story-panel h2 { color: var(--paper); }
.brand-story-panel .hero-small { color: var(--gold-light); }
.brand-story-panel .story-modal-copy { color: #c8c4bb; }
.story-modal .brand-story-panel .story-signoff { color: var(--gold-light); }
.story-modal .brand-story-panel .story-modal-close { border-color: rgba(245, 241, 232, .35); color: var(--paper); }
.story-modal .brand-story-panel .story-modal-close:hover { border-color: var(--gold-light); color: var(--gold-light); }
.story-modal-panel h2 { margin-bottom: 28px; color: var(--espresso); }
.story-modal-copy { max-width: 600px; color: var(--muted); font-size: 15px; line-height: 1.75; }
.story-modal-copy p { margin: 0 0 18px; }
.custom-gallery { margin: 0 0 28px; }
.gallery-stage { position: relative; background: #fff; }
.gallery-stage > img { width: 100%; aspect-ratio: 4 / 3; display: block; object-fit: contain; image-rendering: auto; }
.gallery-arrow { position: absolute; top: 50%; z-index: 1; width: 38px; height: 38px; border: 1px solid rgba(255, 255, 255, .65); border-radius: 50%; background: rgba(0, 0, 0, .5); color: white; font-size: 28px; line-height: 1; cursor: pointer; transform: translateY(-50%); }
.gallery-arrow:first-child { left: 14px; }
.gallery-arrow:last-child { right: 14px; }
.gallery-arrow:hover { border-color: var(--gold-light); color: var(--gold-light); }
.gallery-controls { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; padding-top: 12px; }
.gallery-nav-label { border: 0; padding: 8px 0; background: transparent; color: var(--gold); font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 1px; cursor: pointer; }
.gallery-nav-label:hover { color: var(--ink); }
.gallery-counter { color: var(--muted); font-size: 11px; text-align: center; }
.gallery-thumbnails { grid-column: 1 / -1; justify-self: center; display: flex; gap: 8px; }
.gallery-thumbnail { width: 54px; height: 54px; padding: 2px; border: 1px solid var(--line); background: transparent; cursor: pointer; }
.gallery-thumbnail.active { border-color: var(--gold); }
.gallery-thumbnail img { width: 100%; height: 100%; display: block; object-fit: cover; }
.faith-gallery { margin: 0 0 28px; }
.faith-gallery .gallery-stage > img { aspect-ratio: 4 / 5; }
.story-modal-panel .story-signoff { margin: 26px 0 0; color: var(--gold); font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 600; }
.story-modal-close { position: absolute; top: 18px; right: 20px; width: 38px; height: 38px; border: 1px solid var(--line); background: transparent; color: var(--ink); font-size: 27px; line-height: 1; cursor: pointer; }
.story-modal-close:hover { border-color: var(--gold); color: var(--gold); }
.product-modal-panel h3 { margin: 28px 0 12px; color: var(--espresso); font-family: 'DM Sans', sans-serif; font-size: 11px; letter-spacing: 3px; }
.product-details { margin: 0 0 28px; padding-left: 18px; color: var(--muted); }
.product-details li { margin-bottom: 8px; padding-left: 6px; }
.collection-card { position: relative; min-height: 300px; overflow: hidden; display: flex; flex-direction: column; justify-content: end; background: #fff; color: var(--paper); }
.collection-card::after { position: absolute; inset: 0; content: ''; background: linear-gradient(180deg, rgba(0, 0, 0, .04) 20%, rgba(0, 0, 0, .82) 100%); }
.collection-cover { position: absolute; inset: 0; width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .5s ease; }
.collection-card:hover .collection-cover { transform: scale(1.05); }
.collection-card-content { position: relative; z-index: 1; padding: 24px; }
.collection-card h3 { margin: 0 0 14px; font-size: 24px; }
.collection-card a { font-size: 12px; font-weight: 700; }
.contact { padding: 100px 32px; text-align: center; border-top: 1px solid var(--line); }
.contact > p { color: var(--gold); }
.contact h2 { margin-bottom: 28px; }
.contact-page { min-height: calc(100vh - 92px); display: flex; align-items: center; justify-content: center; }
.contact-content { width: min(760px, 100%); }
.contact-content h1 { margin-bottom: 28px; font-size: clamp(64px, 10vw, 128px); line-height: .82; }
.contact-content h1 span { color: var(--gold-light); }
.contact-intro { max-width: 470px; margin: 0 auto 28px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.contact-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.social-links { display: flex; justify-content: center; gap: 24px; margin-top: 55px; font-size: 13px; font-weight: 700; }
.brand-contacts { max-width: 1240px; margin: auto; padding: 100px 32px; }
.brand-contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.brand-contact-card { min-height: 280px; padding: 30px; border-top: 2px solid var(--ink); background: #f4f0e8; display: flex; flex-direction: column; align-items: flex-start; }
.brand-contact-card-featured { border-top-color: var(--gold); background: var(--ink); color: var(--paper); }
.brand-contact-card .brand-profile-label { margin-bottom: 48px; }
.brand-contact-card h3 { margin: 0 0 14px; font-size: 25px; line-height: 1; }
.brand-contact-card > p:not(.brand-profile-label) { max-width: 340px; margin: 0 0 24px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.brand-contact-card-featured > p:not(.brand-profile-label) { color: #c8c4bb; }
.brand-contact-links { display: flex; flex-direction: column; gap: 9px; margin-top: auto; font-size: 12px; line-height: 1.4; }
.brand-contact-links a { color: var(--gold); font-weight: 700; }
.brand-contact-links a:hover { color: var(--gold-light); }
.brand-contact-links span { color: var(--muted); font-size: 11px; }
.brand-contact-card-featured .brand-contact-links span { color: #c8c4bb; }
.subscribe-section { padding: 110px 32px; background: var(--ink); color: var(--paper); text-align: center; }
.subscribe-section .hero-small { color: var(--gold-light); }
.subscribe-section h2 { margin-bottom: 18px; }
.subscribe-section h2 span { color: var(--gold-light); }
.subscribe-section > p:not(.hero-small):not(.subscribe-status) { max-width: 450px; margin: 0 auto 28px; line-height: 1.6; }
.subscribe-form { display: flex; max-width: 520px; margin: auto; }
.subscribe-form input { min-width: 0; flex: 1; padding: 16px; border: 1px solid var(--ink); border-right: 0; background: var(--paper); color: var(--ink); font: inherit; }
.subscribe-form .btn { border: 0; cursor: pointer; }
.subscribe-status { min-height: 18px; margin: 14px 0 0; font-size: 12px; }
.legal-section { padding: 90px 32px; background: var(--paper); }
.legal-section-dark { background: var(--ink); color: var(--paper); }
.legal-content { max-width: 780px; margin: auto; }
.legal-content h2 { margin-bottom: 28px; }
.legal-content p:not(.hero-small) { max-width: 700px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.legal-section-dark .legal-content p:not(.hero-small) { color: #b9b6ae; }
.legal-content a { color: var(--gold); font-weight: 700; }
.legal-modal .story-modal-panel { max-height: 82vh; }
.legal-content-dark { background: var(--ink); color: var(--paper); }
.legal-content-dark h2 { color: var(--paper); }
.legal-content-dark p:not(.hero-small) { color: #b9b6ae; }
.legal-content-dark .story-modal-close { border-color: rgba(245, 241, 232, .35); color: var(--paper); }
.legal-content-dark .story-modal-close:hover { border-color: var(--gold-light); color: var(--gold-light); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
footer { padding: 52px 32px 34px; display: flex; flex-wrap: wrap; align-items: center; gap: 20px 45px; background: #fff; color: var(--ink); border-top: 1px solid var(--gold); font-size: 12px; }
.footer-logo { width: 90px; height: 90px; display: block; flex: 0 0 90px; }
.footer-logo img { width: 100%; height: 100%; display: block; object-fit: contain; }
footer h3 { margin: 0; color: var(--espresso); font-family: 'Playfair Display', serif; font-size: 24px; letter-spacing: 2px; } footer p { margin: 0; color: var(--muted); }
footer p:last-child { margin-left: auto; }
.footer-links { display: flex; gap: 18px; width: 100%; border-top: 1px solid var(--line); padding-top: 20px; }
.footer-links a:hover { color: var(--gold-light); }
	.cookie-banner { position: fixed; right: 24px; bottom: 24px; z-index: 30; width: min(560px, calc(100% - 48px)); display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 18px 20px; border: 1px solid var(--gold); background: var(--ink); color: var(--paper); box-shadow: 0 14px 40px rgba(0, 0, 0, .28); }
	.cookie-banner[hidden] { display: none; }
	.cookie-banner strong { color: var(--gold-light); font-size: 10px; letter-spacing: 2px; }
	.cookie-banner p { max-width: 330px; margin: 7px 0 0; color: #c8c4bb; font-size: 11px; line-height: 1.5; }
	.cookie-actions { display: flex; flex-shrink: 0; gap: 8px; }
	.cookie-button { min-height: 38px; padding: 10px 13px; border: 1px solid var(--gold); background: var(--gold); color: var(--paper); font: 700 10px 'DM Sans', sans-serif; letter-spacing: 1px; cursor: pointer; }
	.cookie-button-secondary { background: transparent; color: var(--paper); }
	.cookie-button:hover { border-color: var(--gold-light); background: var(--gold-light); color: var(--ink); }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@media (min-width: 761px) and (max-width: 1024px) {
	.navbar { min-height: 84px; padding: 0 24px; gap: 20px; }
	.logo { width: 210px; height: 72px; flex-basis: 210px; }
	.nav-links, .nav-button { display: none; }
	.menu-toggle { display: block; margin-left: auto; }
	.hero { padding: 64px 6vw; }
	h1 { font-size: clamp(62px, 11vw, 100px); }
	.featured, .collections, .brands-hub { padding: 80px 24px; }
	.products { gap: 20px; }
	.products .product-card { flex-basis: calc((100% - 20px) / 2); }
	.collection-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 20px; }
	.product-image { aspect-ratio: 4 / 5; }
	.product-description { min-height: 0; }
	.product-options { flex-wrap: wrap; }
	.product-options label { flex: 1 1 100px; }
	.product-options select { width: 100%; }
	.order-steps { grid-template-columns: repeat(2, 1fr); gap: 24px 20px; }
	.brand-message, .about { padding: 85px 6vw; }
	.how-to-order-section { padding: 85px 24px; }
	.contact { padding: 85px 24px; }
	.subscribe-section, .legal-section { padding: 85px 24px; }
	.story-modal { padding: 20px; }
	.story-modal-panel { max-height: 92vh; padding: 58px clamp(34px, 6vw, 64px); }
	.checkout-panel { width: min(680px, 100%); }
	.brand-hub-intro { font-size: 19px; }
}
@media (min-width: 761px) and (max-width: 900px) {
	.navbar { flex-wrap: wrap; }
	.nav-links, .nav-button { display: none; }
	.menu-toggle { display: block; }
	.navbar.menu-open .nav-links { display: flex; order: 3; width: 100%; justify-content: space-between; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
}
@media (max-width: 760px) {
	.navbar { min-height: 82px; padding: 14px 20px; flex-wrap: wrap; gap: 18px; }
	.logo { width: 180px; height: 58px; flex-basis: 180px; }
	.nav-links { display: none; order: 3; width: 100%; justify-content: space-between; gap: 8px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 11px; }
	.navbar.menu-open .nav-links { display: flex; }
	.nav-button { display: none; }
	.cart-toggle { display: block; }
	.brand-cart-floating { right: 20px; bottom: 20px; }
	.menu-toggle { display: block; }
	.navbar.menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
	.navbar.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
	.navbar.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
	.hero { min-height: 540px; padding: 56px 20px; background: linear-gradient(118deg, transparent 0 78%, rgba(181, 138, 50, .14) 78% 78.5%, transparent 78.5%), repeating-linear-gradient(90deg, transparent 0 90px, rgba(181, 138, 50, .06) 90px 91px), var(--paper); }
	.hero-video { object-position: 58% center; }
	h1 { font-size: clamp(54px, 16vw, 82px); line-height: .82; }
	h2 { font-size: clamp(36px, 11vw, 54px); }
	.hero-text { font-size: 15px; }
	.hero-buttons { display: grid; grid-template-columns: 1fr; }
	.hero-buttons .btn { width: 100%; text-align: center; }
	.featured, .collections, .brands-hub { padding: 70px 20px; }
	.brand-contacts { padding: 70px 20px; }
	.section-heading { display: block; }
	.section-heading > span { padding-bottom: 0; text-align: left; }
	.brand-tools, .brand-application { grid-template-columns: 1fr; }
	.brand-filters { grid-column: 1; grid-row: auto; justify-content: flex-start; }
	.brand-release-viewer { grid-template-columns: minmax(0, 1.1fr) minmax(210px, .9fr); gap: 18px; }
	.brand-application-form { grid-template-columns: 1fr; }
	.brand-application-form button, .brand-application-status { grid-column: 1; }
	.shop-navigation { justify-content: space-between; margin: -10px 0 28px; }
	.products .product-card { flex-basis: 100%; }
	.collection-grid, .brand-directory { grid-template-columns: 1fr; }
	.brand-contact-grid { grid-template-columns: 1fr; }
	.product-image { aspect-ratio: 1 / 1; }
	.product-description { min-height: 0; }
	.product-options { flex-wrap: wrap; }
	.product-options label { min-width: 0; flex: 1 1 100px; }
	.product-options select { width: 100%; }
	.order-steps { grid-template-columns: 1fr 1fr; }
	.brand-message, .about { padding: 75px 20px; }
	.how-to-order-section { padding: 75px 20px; }
	.contact { padding: 75px 20px; }
	.contact-page { min-height: calc(100vh - 92px); }
	.contact-content h1 { font-size: clamp(54px, 16vw, 82px); }
	.contact-intro { font-size: 15px; }
	.subscribe-section, .legal-section { padding: 75px 20px; }
	.subscribe-form { display: block; }
	.subscribe-form input { width: 100%; border-right: 1px solid var(--ink); margin-bottom: 10px; }
	.subscribe-form .btn { width: 100%; }
	footer { padding: 32px 20px; display: block; } .footer-logo { margin-bottom: 18px; } footer p { margin-top: 12px; } footer p:last-child { margin: 28px 0 0; }
	.footer-links { flex-wrap: wrap; margin-top: 24px; }
	.story-modal { padding: 12px; }
	.story-modal-panel { max-height: 94vh; padding: 54px 22px 28px; }
	.story-modal-panel h2 { font-size: clamp(34px, 10vw, 50px); }
	.story-modal-copy { font-size: 14px; line-height: 1.6; }
	.brand-release-viewer { display: block; }
	.brand-release-details { margin-top: 24px; }
	.brand-release-controls { margin-top: 8px; }
	.brand-release-thumbnails { margin-top: 12px; }
	.checkout-fields { grid-template-columns: 1fr; }
	.checkout-fields label:last-child { grid-column: auto; }
	.checkout-panel { width: 100%; }
	.payment-option { min-height: 58px; }
	.checkout-submit { min-height: 50px; }
	.gallery-controls { grid-template-columns: 1fr auto 1fr; gap: 8px; }
	.gallery-nav-label { font-size: 9px; }
	.gallery-nav-label:last-of-type { text-align: right; }
	.cookie-banner { right: 12px; bottom: 12px; width: calc(100% - 24px); display: block; }
	.cookie-actions { margin-top: 14px; }
	.cookie-button { flex: 1; }
}
@media (max-width: 480px) {
	.navbar { padding: 12px 16px; gap: 12px; }
	.logo { width: min(62vw, 180px); flex-basis: min(62vw, 180px); }
	.cart-toggle { margin-left: auto; }
	.hero { min-height: 590px; padding: 48px 16px; }
	.hero-content { max-width: 100%; }
	.hero-small { letter-spacing: 2px; }
	.hero-text { margin: 24px 0; font-size: 14px; }
	.hero-mission { font-size: 13px; }
	.featured, .collections, .brands-hub, .brand-contacts { padding-right: 16px; padding-left: 16px; }
	.section-heading { margin-bottom: 28px; }
	.section-heading > span { font-size: 19px; }
	.brand-hub-intro { margin-bottom: 40px; font-size: 18px; }
	.brand-profile { min-height: 0; padding: 24px; }
	.founding-brand-logo { width: 100%; height: 130px; }
	.brand-filters { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; }
	.brand-filter { width: 100%; padding-right: 8px; padding-left: 8px; }
	.product-card h3 { font-size: 17px; }
	.product-image { aspect-ratio: 4 / 5; }
	.product-options { gap: 10px; }
	.product-options label { flex-basis: calc(50% - 5px); }
	.product-options select { min-width: 0; padding-right: 8px; }
	.shop-navigation { gap: 10px; }
	.shop-navigation button { font-size: 9px; }
	.footer-links { gap: 12px; font-size: 11px; }
}
@media (prefers-reduced-motion: reduce) {
	.hero-video { display: none; }
	.hero-content { animation: none; }
}
