@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');
:root{
--bg:#111111;--fg:#FAFAFA;--muted:#EDEDED;--line:#2A2A2A;--accent:#C7A97A;--accent-20:#C7A97A33;--max:1200px;--radius:16px;
}
html,body{background:var(--bg);color:var(--fg);font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial,sans-serif;min-height:100vh}
a{color:inherit;text-decoration:none}
.container{max-width:var(--max);margin:auto;padding:0 20px}
img{height:auto}
main{min-height:60vh;display:flex;flex-direction:column;justify-content:flex-start}


/* Header */
header{position:sticky;top:0;z-index:50;background:rgba(17,17,17,.9);backdrop-filter:saturate(180%) blur(8px);border-bottom:1px solid var(--line)}
.nav{display:flex;align-items:center;justify-content:space-between;height:72px}
.brand{display:flex;align-items:center;gap:14px}
.brand img { height:36px; width:auto; filter:none; }
.brand .wordmark{font-family:"Inter",sans-serif;font-size:20px;font-weight:600;letter-spacing:.12em;text-transform:uppercase}
.menu{display:flex;gap:28px}
.menu a{opacity:.9;padding:10px 12px;min-height:44px;display:inline-flex;align-items:center}
.menu a[aria-current="page"], .menu a:hover{opacity:1}
.cta-outline{border:1px solid var(--muted);padding:10px 16px;border-radius:999px;transition:all .2s ease;min-height:44px;display:inline-flex;align-items:center;justify-content:center}
.cta-outline:hover{border-color:var(--accent);color:var(--accent)}
.hamburger{display:none;background:none;border:0;color:var(--fg);font-size:28px;cursor:pointer;padding:8px;min-width:44px;min-height:44px}

/* Mobile drawer - hidden by default */
#drawer{display:none}


/* Sections */
section{padding:72px 0;border-top:1px solid var(--line)}
h1,h2,h3{font-family:"Inter",sans-serif;font-weight:600;letter-spacing:-0.02em}
h1{font-size:clamp(32px,5vw,56px);line-height:1.1;font-weight:700;letter-spacing:-0.03em}
h2.section-title{font-size:32px;margin:0 0 24px;font-weight:600;letter-spacing:-0.02em}
.subtle{color:#cfcfcf;max-width:760px}


/* Hero */
.hero{position:relative}
.slides{position:relative;height:70vh;min-height:520px;overflow:hidden}
.slide{position:absolute;inset:0;opacity:0;transition:opacity .6s ease}
.slide.active{opacity:1}
.slide img{width:100%;height:100%;object-fit:cover}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(0deg, rgba(17,17,17,.65) 0%, rgba(17,17,17,.25) 45%, rgba(17,17,17,.05) 100%)}
.hero-content{position:absolute;inset:0;display:grid;place-items:center;text-align:center;padding:0 20px}
.kicker{letter-spacing:.3em;text-transform:uppercase;color:var(--muted);font-size:.85rem}
.btn{display:inline-block;background:transparent;border:1px solid var(--accent);color:var(--fg);padding:12px 24px;border-radius:999px;font-weight:500;letter-spacing:.06em;transition:all .2s ease;min-height:44px;display:inline-flex;align-items:center;justify-content:center}
.btn:hover{background:var(--accent);color:#111}
.hero-controls{position:absolute;left:50%;bottom:20px;transform:translateX(-50%);display:flex;gap:10px}
.dot{width:8px;height:8px;border-radius:50%;border:1px solid var(--fg);opacity:.7}
.dot.active{background:var(--fg);opacity:1}


/* Feature cards */
.features{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:28px}
.card{border:1px solid var(--line);border-radius:var(--radius);padding:24px;background:linear-gradient(180deg,#121212,#0f0f0f)}
.card h3{margin:0 0 8px;font-size:18px}
.card p{margin:0;color:#d8d8d8}


/* Brands grid */
.brands-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:24px}
.brand-tile{display:grid;place-items:center;min-height:110px;border:1px solid var(--line);border-radius:12px;background:#131313;transition:all .2s ease;padding:16px}
.brand-tile img{max-height:46px;opacity:.8;filter:grayscale(100%)}
.brand-tile:hover{border-color:var(--accent);box-shadow:0 0 0 1px var(--accent-20) inset}
.brand-tile:hover img{opacity:1;filter:grayscale(0%)}


/* Footer */
footer{border-top:1px solid var(--line);background:#0e0e0e}
.footer-wrap{display:grid;grid-template-columns:1fr 1fr 1.5fr;gap:48px;align-items:start;padding:48px 0}
.footer-brand{display:flex;gap:14px;align-items:center}
.footer-brand img { height:40px; filter:none; }
.footer-title{font-weight:600;margin-bottom:10px}
.foot-nav a{display:block;opacity:.8;margin:6px 0;padding:8px 0;min-height:44px;display:flex;align-items:center}
.foot-nav a:hover{opacity:1}
.map{width:100%;height:220px;border:0;border-radius:12px;filter:grayscale(20%)}
.credits{border-top:1px solid var(--line);padding:16px 0;color:#bdbdbd;font-size:14px}


/* Page specifics */
.page-hero{padding:96px 0 32px;border-bottom:1px solid var(--line)}
.page-hero h1{margin-bottom:8px}
.lead{color:#d6d6d6;max-width:760px}


/* Inspiration grid (masonry-like with CSS columns) */
.gallery{column-count:3;column-gap:16px}
.gallery img{width:100%;margin:0 0 16px;border-radius:12px}


/* Featured items grid */
.items{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.item{border:1px solid var(--line);border-radius:12px;overflow:hidden;background:#131313}
.item img{width:100%;height:220px;object-fit:cover}
.item .pad{padding:16px}
.item .meta{display:flex;justify-content:space-between;color:#cfcfcf;margin-top:6px}


/* Responsive */
@media (max-width:1024px){.footer-wrap{grid-template-columns:1fr 1fr !important;gap:32px !important}.footer-wrap > div:last-child{grid-column:span 2}.brands-grid{grid-template-columns:repeat(3,1fr)}.gallery{column-count:2}.items{grid-template-columns:repeat(2,1fr)}.gallery-grid{grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));gap:2rem}.team-grid{grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));gap:2rem}}
@media (max-width:768px){
  .menu{display:none}
  .hamburger{display:block}
  .features{grid-template-columns:1fr}
  .brands-grid{grid-template-columns:repeat(2,1fr)}
  .gallery{column-count:1}
  .slides{min-height:420px}
  .gallery-grid{grid-template-columns:1fr !important;gap:1.5rem;padding:0 1rem 2rem;margin-top:2rem}
  .gallery-title{margin:2rem 0 2rem 0}
  
  /* Fix footer centering on mobile */
  .footer-wrap{grid-template-columns:1fr !important;gap:24px !important;text-align:center;padding:0 20px}
  .footer-wrap > div:last-child{grid-column:span 1}
  .footer-brand{justify-content:center;margin-top:20px}
  .socials{justify-content:center}
  
  /* Fix footer element spacing on mobile */
  .footer-wrap > div{padding:0 10px}
  .map{margin:0 10px}
  .credits{padding-left:20px;padding-right:20px}
  
  /* Fix hours table alignment on mobile */
  .footer-wrap table{margin:0 auto;width:auto !important}
  .footer-wrap th{text-align:left !important}
  .footer-wrap td{text-align:left !important}
  
  .page-hero > .container > div{grid-template-columns:1fr !important;gap:2rem;text-align:center}
  .page-hero img{height:120px !important}
  .team-grid{grid-template-columns:1fr;gap:2rem}
  .team-member{padding:1.5rem}
  section[aria-labelledby="story-title"] > .container > div{grid-template-columns:1fr !important;gap:2rem}
  
  /* Enhanced touch targets for mobile */
  .btn, .cta-outline, .brand-link, .product-cta {
    min-height: 48px;
    padding: 14px 24px;
  }
  
  .menu a, .foot-nav a, .drawer-link {
    min-height: 48px;
    padding: 12px 0;
  }
  
  /* Brands page mobile fixes */
  .featured-brands-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  
  .brands-listing {
    gap: 1rem;
  }
  
  .brand-row {
    grid-template-columns: 1fr !important;
    gap: 0.5rem;
    padding: 0;
    border-bottom: none;
  }
  
  .brand-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding: 1.25rem;
    border-bottom: 1px solid var(--line);
  }
  
  .brand-name {
    font-size: 1rem;
  }
  
  .brand-specialty {
    font-size: 0.85rem;
  }
  
  .hamburger {
    min-width: 48px;
    min-height: 48px;
    padding: 10px;
  }
  
  .social-icon {
    min-width: 48px;
    min-height: 48px;
    padding: 12px;
  }
  
  .modal-close {
    min-width: 48px;
    min-height: 48px;
    font-size: 1.1rem;
  }
  
  /* Better spacing for tappable items */
  .features {
    gap: 24px;
  }
  
  .brands-grid {
    gap: 20px;
  }
  
  /* Improve card hit areas */
  .gallery-item {
    min-height: 220px;
  }
  
  .brand-tile {
    min-height: 120px;
    padding: 20px;
  }
}


/* Inspiration Gallery & Modal */
.gallery-title {
	font-family: "Inter", sans-serif;
	text-align: center;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 600;
	margin: 4rem 0 3rem 0;
	letter-spacing: -0.03em;
	color: var(--fg);
	text-transform: uppercase;
}
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2.5rem;
	padding: 0 2rem 4rem 2rem;
	max-width: var(--max);
	margin: 0 auto;
}
.gallery-item {
	position: relative;
	cursor: pointer;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(0,0,0,0.3);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid var(--line);
	min-height: 200px;
}
.gallery-item:hover {
	box-shadow: 0 8px 48px rgba(0,0,0,0.4);
	transform: translateY(-4px);
	border-color: var(--accent);
}
@media (hover: none) {
	.gallery-item:active {
		transform: scale(0.98);
		border-color: var(--accent);
	}
}
.gallery-item img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}
.gallery-item:hover img {
	transform: scale(1.05);
}
.modal-mask {
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(17,17,17,0.92);
	backdrop-filter: blur(12px);
	z-index: 1000;
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.modal-mask.show {
	opacity: 1;
}
.modal-mask img {
	max-width: 92vw;
	max-height: 88vh;
	border-radius: var(--radius);
	box-shadow: 0 16px 64px rgba(0,0,0,0.6);
	margin-bottom: 24px;
	transform: scale(0.95);
	transition: transform 0.3s ease;
}
.modal-mask.show img {
	transform: scale(1);
}
.modal-close {
	position: absolute;
	top: 2rem;
	right: 2rem;
	background: rgba(17,17,17,0.8);
	color: var(--fg);
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 0.75rem 1.5rem;
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	backdrop-filter: blur(8px);
	box-shadow: 0 4px 24px rgba(0,0,0,0.3);
	transition: all 0.2s ease;
	min-width: 44px;
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.modal-close:hover {
	background: rgba(17,17,17,0.9);
	border-color: var(--accent);
	color: var(--accent);
	transform: scale(1.05);
}


/* About Page Styles */
.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 3rem;
	margin-top: 2rem;
}
.team-member {
	background: linear-gradient(180deg, #131313, #0f0f0f);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 2rem;
	transition: all 0.3s ease;
	text-align: center;
}
.team-member:hover {
	border-color: var(--accent);
	transform: translateY(-4px);
	box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.team-photo {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto 1.5rem auto;
	border: 3px solid var(--line);
	transition: border-color 0.3s ease;
}
.team-member:hover .team-photo {
	border-color: var(--accent);
}
.team-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.team-photo img.scale-up {
	transform: scale(1.15);
}
.team-member h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--fg);
}
.team-title {
	color: var(--accent);
	font-size: 0.9rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 1rem;
}
.team-bio {
	color: #cfcfcf;
	line-height: 1.5;
	font-size: 0.95rem;
}


/* Brands Page Styles */
.featured-brands-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2.5rem;
	margin-top: 2rem;
}



.brand-logo-container {
	width: 75%;
	max-width: 300px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 8px;
	padding: 8px;
	box-sizing: border-box;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	margin: 0 auto 1.5rem auto;
}
.brand-logo-container img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	filter: none;
}
.featured-brand-card {
	background: linear-gradient(180deg, #131313, #0f0f0f);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 2.5rem 2rem;
	text-align: center;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	height: 100%;
}
.featured-brand-card:hover {
	border-color: var(--accent);
	transform: translateY(-8px);
	box-shadow: 0 12px 48px rgba(0,0,0,0.4);
}
.brand-logo-placeholder {
	width: 100px;
	height: 60px;
	background: var(--line);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-weight: 600;
	color: var(--accent);
	font-size: 0.9rem;
	letter-spacing: 0.1em;
}
.featured-brand-card h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--fg);
}
.featured-brand-content {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}
.brand-category {
	color: var(--accent);
	font-size: 0.9rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 1rem;
}
.brand-description {
	color: #cfcfcf;
	line-height: 1.6;
	margin-bottom: 2rem;
}
.brand-link {
	display: inline-block;
	color: var(--accent);
	font-weight: 500;
	text-decoration: none;
	border: 1px solid var(--accent);
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	transition: all 0.3s ease;
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.brand-link:hover {
	background: var(--accent);
	color: #111;
	transform: translateY(-2px);
}
.brands-listing {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
.brand-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	padding: 1.5rem 0;
	border-bottom: 1px solid var(--line);
}
.brand-row:last-child {
	border-bottom: none;
}
.brand-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem;
	border-radius: 8px;
	transition: all 0.3s ease;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}
.brand-item:hover {
	background: rgba(199, 169, 122, 0.08);
	transform: translateY(-2px);
}
.brand-name {
	font-weight: 600;
	font-size: 1.1rem;
	color: var(--fg);
	transition: color 0.3s ease;
}
.brand-item:hover .brand-name {
	color: var(--accent);
}
.brand-specialty {
	color: #cfcfcf;
	font-size: 0.9rem;
	font-weight: 400;
}


/* Featured Items Page Styles */
.featured-items-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2.5rem;
	margin-top: 2rem;
}
.product-card {
	background: linear-gradient(180deg, #131313, #0f0f0f);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.product-card:hover {
	border-color: var(--accent);
	transform: translateY(-8px);
	box-shadow: 0 12px 48px rgba(0,0,0,0.4);
}
.product-image {
	width: 100%;
	height: 280px;
	object-fit: contain;
	background: #0a0a0a;
	transition: transform 0.3s ease;
}
.product-card:hover .product-image {
	transform: scale(1.02);
}
.product-content {
	padding: 2rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.product-category {
	color: var(--accent);
	font-size: 0.8rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 0.5rem;
}
.product-brand {
	color: #999;
	font-size: 0.9rem;
	font-weight: 400;
	margin-bottom: 0.75rem;
}
.product-name {
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.3;
	color: var(--fg);
	margin-bottom: 1rem;
}
.product-description {
	color: #cfcfcf;
	line-height: 1.5;
	margin-bottom: 1.5rem;
	flex: 1;
}
.product-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
}
.product-price {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--accent);
}
.product-cta {
	background: transparent;
	border: 1px solid var(--accent);
	color: var(--accent);
	padding: 0.75rem 1.25rem;
	border-radius: 8px;
	font-weight: 500;
	font-size: 0.9rem;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
}
.product-cta:hover {
	background: var(--accent);
	color: #111;
	transform: translateY(-2px);
}

/* Product loading states */
.products-loading {
	display: grid;
	place-items: center;
	min-height: 300px;
	color: #999;
	font-size: 1.1rem;
}
.products-error {
	background: rgba(220, 38, 127, 0.1);
	border: 1px solid rgba(220, 38, 127, 0.3);
	color: #ff6b9d;
	padding: 2rem;
	border-radius: var(--radius);
	text-align: center;
	margin-top: 2rem;
}


/* ========================================
   Reusable Utility Classes
   ======================================== */

/* Logo Styles */
.logo-header {
	height: 44px;
	padding: 6px 12px;
	box-sizing: border-box;
}

.logo-footer {
	height: 28px;
	margin-bottom: 20px;
	box-sizing: border-box;
}

.logo-about-large {
	height: 240px;
	max-width: 100%;
	opacity: 0.97;
	padding: 12px;
	box-sizing: border-box;
}

/* Mobile Drawer */
.drawer-container {
	padding: 12px 20px 20px;
	border-bottom: 1px solid var(--line);
}

.drawer-link {
	display: block;
	padding: 12px 0;
	min-height: 44px;
	display: flex;
	align-items: center;
}

/* Spacing Utilities */
.mb-3 {
	margin-bottom: 3rem;
}

.mb-2 {
	margin-bottom: 2rem;
}

.mb-1-5 {
	margin-bottom: 1.5rem;
}

.mb-1 {
	margin-bottom: 1rem;
}

.mb-20 {
	margin-bottom: 20px;
}

.mb-16 {
	margin-bottom: 16px;
}

.mb-12 {
	margin-bottom: 12px;
}

.mb-8 {
	margin-bottom: 8px;
}

.mt-2 {
	margin-top: 2rem;
}

/* Footer Utilities */
.footer-description {
	margin-bottom: 20px;
	color: #d6d6d6;
	line-height: 1.5;
}

.footer-contact-link {
	color: #d6d6d6;
}

.footer-address {
	font-style: normal;
	color: #d6d6d6;
	margin-bottom: 20px;
	line-height: 1.5;
}

.footer-title-accent {
	margin-bottom: 12px;
	color: #C7A97A;
}

.footer-hours-title {
	margin-bottom: 16px;
	color: #C7A97A;
}

.hours-table {
	border-collapse: separate;
	border-spacing: 0 8px;
	width: 100%;
}

.hours-table th {
	text-align: left;
	padding-right: 16px;
	color: #cfcfcf;
	font-weight: 600;
}

.hours-table th.day-col {
	width: 3.8rem;
}

.hours-table td {
	color: #d6d6d6;
}

/* Social Links */
.socials {
	display: flex;
	gap: 12px;
}

.social-icon {
	border-radius: 8px;
	padding: 10px;
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	min-height: 44px;
}
.social-icon img {
	filter: none;
	opacity: 1;
}

/* Map Embed */
.map-embed {
	width: 100%;
	height: 200px;
	border: 0;
	border-radius: 12px;
	filter: grayscale(20%) contrast(1.1);
}

/* Grid Layouts */
.grid-two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}

.grid-two-col-centered {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	margin-bottom: 2rem;
}

.center-flex {
	display: flex;
	justify-content: center;
}

/* Text Colors */
.text-accent {
	color: var(--accent);
}

.text-subtle {
	color: #cfcfcf;
}

/* Section Title Variations */
.section-title-accent {
	color: var(--accent);
}

/* Gallery Spacing */
.gallery-spacing {
	margin-top: 2.5rem;
}

/* Featured Items/Brands Display Variants */
.display-none {
	display: none;
}

.display-grid {
	display: grid;
}

/* Responsive adjustments for utility grids */
@media (max-width: 768px) {
	.grid-two-col,
	.grid-two-col-centered {
		grid-template-columns: 1fr !important;
		gap: 2rem;
		text-align: center;
	}
}

/* Pull-to-refresh indicator animation */
@keyframes refresh-spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

#refreshIndicator span {
	display: inline-block;
	transition: transform 0.2s ease;
}

#refreshIndicator.refreshing span::before {
	content: '⟳';
	animation: refresh-spin 1s linear infinite;
	display: inline-block;
	margin-right: 8px;
}