@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Jost:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Source+Sans+3:wght@400;600;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }
* { scrollbar-width: thin; scrollbar-color: #b9a77f transparent; }
*::-webkit-scrollbar { width: 8px; height: 8px; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb { background: #b9a77f; border-radius: 999px; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
::selection { background: var(--primary); color: var(--on-primary); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 24px; max-width: 1120px; margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand-logo { height: 46px; width: auto; border-radius: var(--radius); }
.brand-name { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; letter-spacing: 0.01em; }
.nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.nav-link { color: var(--ink); font-weight: 600; font-size: 0.95rem; padding: 8px 14px; border-radius: 999px; transition: color .15s ease, background .15s ease; }
.nav-link:hover { text-decoration: none; background: var(--soft); }
.nav-link.active { color: var(--primary); background: var(--soft); }
.nav-cta { background: var(--primary); color: var(--on-primary) !important; box-shadow: 0 4px 12px color-mix(in srgb, var(--primary) 35%, transparent); }
.nav-cta:hover { background: var(--primary-dark); transform: translateY(-1px); }
.nav-cta.active { background: var(--primary); color: var(--on-primary) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 10px 8px; border-radius: 10px; }
.nav-toggle:hover { background: var(--soft); }
.nav-toggle span { display: block; width: 24px; height: 2.5px; border-radius: 999px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.hero { position: relative; padding: 108px 24px 116px; text-align: center; overflow: hidden; background: var(--hero-gradient); background-size: cover; background-position: center; }
.hero::before { content: ""; position: absolute; inset: 0; background: var(--hero-overlay); }
.hero::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.10) 1px, transparent 1px); background-size: 26px 26px; pointer-events: none; }
.hero-content { position: relative; z-index: 2; max-width: 740px; margin: 0 auto; color: var(--hero-text); }
.hero h1 { font-family: var(--font-head); font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.1; margin-bottom: 14px; letter-spacing: -0.01em; }
.hero .tagline { font-size: clamp(1.05rem, 2vw, 1.3rem); opacity: .94; margin-bottom: 10px; font-style: italic; }
.hero .desc { max-width: 640px; margin: 0 auto 30px; font-size: 1.02rem; opacity: .9; }
.hero-cta { display: inline-block; background: var(--primary); color: var(--on-primary); padding: 14px 34px; border-radius: var(--radius-pill); font-weight: 700; font-size: 1.02rem; letter-spacing: 0.04em; box-shadow: 0 8px 24px color-mix(in srgb, var(--primary) 40%, transparent); transition: transform .15s ease, background .15s ease; }
.hero-cta:hover { background: var(--primary-dark); transform: translateY(-2px); text-decoration: none; }

.hero-carousel { position: relative; overflow: hidden; }
.hero-carousel .hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s ease; }
.hero-carousel .hero-slide.active { opacity: 1; }
.hero-carousel .hero-dots { position: absolute; bottom: 22px; left: 0; right: 0; z-index: 3; display: flex; justify-content: center; gap: 8px; }
.hero-carousel .hero-dot { width: 10px; height: 10px; border-radius: 50%; border: none; padding: 0; background: rgba(255,255,255,0.5); cursor: pointer; transition: background .2s ease, transform .2s ease; }
.hero-carousel .hero-dot:hover { transform: scale(1.25); }
.hero-carousel .hero-dot.active { background: #fff; }

.page-hero { position: relative; padding: 64px 24px; text-align: center; overflow: hidden; background: var(--hero-gradient); background-size: cover; background-position: center; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: var(--hero-overlay); }
.page-hero .container { position: relative; z-index: 2; color: var(--hero-text); }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 10px; }
.page-hero .sub { font-size: 1.05rem; opacity: 0.92; max-width: 560px; margin: 0 auto; }
.crumbs { display: flex; justify-content: center; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; margin-bottom: 14px; opacity: 0.9; flex-wrap: wrap; }
.crumbs a { color: inherit; }
.crumbs a:hover { text-decoration: underline; }
.crumbs .sep { opacity: 0.55; font-weight: 400; }

.section { padding: 76px 24px; }
.section-alt { position: relative; overflow: hidden; background: var(--bg-alt); }
.section-alt::before, .section-alt::after { content: ""; position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; }
.section-alt::before { width: 420px; height: 420px; top: -140px; left: -120px; background: color-mix(in srgb, var(--primary) 12%, transparent); }
.section-alt::after { width: 360px; height: 360px; bottom: -120px; right: -110px; background: color-mix(in srgb, var(--accent) 22%, transparent); }
.section-alt .container { position: relative; z-index: 1; }
.section h2 { font-family: var(--font-head); font-size: clamp(1.6rem, 3vw, 2.15rem); margin-bottom: 36px; text-align: center; }

.section-head { text-align: center; max-width: 660px; margin: 0 auto 44px; }
.section-head .eyebrow { display: inline-block; font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: var(--primary); background: var(--surface); border: 1px solid var(--border); padding: 6px 16px; border-radius: 999px; margin-bottom: 14px; }
.section-head h2 { margin-bottom: 10px; }
.section-head p { color: var(--ink-soft); font-size: 1.03rem; }

.feature, .collection-card, .product-card, .testimonial-card, .contact-card, .article-card, .gallery-grid figure {
  border-color: color-mix(in srgb, var(--border) 70%, transparent);
  box-shadow: var(--shadow-md);
}
.feature:hover, .collection-card:hover, .product-card:hover, .testimonial-card:hover, .contact-card:hover, .article-card:hover {
  border-color: color-mix(in srgb, var(--primary) 40%, transparent);
  box-shadow: var(--shadow-lg);
}

.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.feature { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px 24px; box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .15s ease; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature h3 { color: var(--primary); margin-bottom: 8px; font-family: var(--font-head); font-size: 1.08rem; }
.feature p { color: var(--ink-soft); font-size: 0.95rem; }
.feature-icon { width: 52px; height: 52px; display: grid; place-items: center; background: var(--soft); border-radius: 50%; margin-bottom: 14px; }
.feature-icon svg { width: 26px; height: 26px; color: var(--accent); }

.rate-strip { background: var(--ink); color: var(--bg); }
.rate-strip-inner { max-width: 1120px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: center; gap: clamp(16px, 4vw, 48px); flex-wrap: wrap; }
.rate-item { display: flex; align-items: baseline; gap: 8px; }
.rate-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; opacity: 0.75; font-weight: 700; }
.rate-value { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; }
.rate-unit { font-size: 0.78rem; opacity: 0.7; }
.rate-strip a { color: inherit; opacity: 0.85; font-size: 0.85rem; font-weight: 600; white-space: nowrap; }
.rate-strip a:hover { opacity: 1; }

.stats-strip { background: var(--bg-alt); border-bottom: 1px solid var(--border); }
.stats-strip .container { display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between; padding: 26px 24px; }
.stat-item { flex: 1; min-width: 130px; text-align: center; }
.stat-num { font-family: var(--font-head); font-size: 1.9rem; font-weight: 700; color: var(--primary-dark); line-height: 1; }
.stat-label { font-size: 0.78rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 6px; font-weight: 600; }

.collections-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.collection-card { position: relative; display: block; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 4 / 3; background: var(--soft); transition: transform .18s ease, box-shadow .18s ease; }
.collection-card:hover { transform: translateY(-5px); text-decoration: none; }
.collection-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.collection-card:hover img { transform: scale(1.05); }
.collection-card .veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,14,8,0.05) 30%, rgba(20,14,8,0.72) 100%); }
.collection-card .label { position: absolute; left: 22px; right: 22px; bottom: 18px; z-index: 2; color: #fdf9ef; }
.collection-card .label h3 { font-family: var(--font-head); font-size: 1.45rem; margin-bottom: 2px; }
.collection-card .label span { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.14em; opacity: 0.85; }
.collection-card.no-image { background: linear-gradient(150deg, var(--primary-light), var(--soft)); }
.collection-card.no-image .veil { background: linear-gradient(180deg, rgba(20,14,8,0.02) 30%, rgba(20,14,8,0.55) 100%); }

.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 24px; }
.product-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .15s ease, box-shadow .15s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.product-card .thumb { height: 210px; overflow: hidden; position: relative; background: var(--soft); }
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.product-card:hover .thumb img { transform: scale(1.06); }
.product-card .body { padding: 20px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.badge-cat { align-self: flex-start; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.13em; color: var(--accent); background: var(--accent-light); padding: 3px 10px; border-radius: 999px; }
.product-card h3 { font-family: var(--font-head); font-size: 1.12rem; line-height: 1.35; }
.product-karat { color: var(--ink-faint); font-size: 0.82rem; font-weight: 600; }
.product-price { font-weight: 700; color: var(--primary-dark); font-size: 1.08rem; margin-top: auto; padding-top: 8px; }
.product-card .footer { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; border-top: 1px dashed var(--border); }
.product-card .footer a { font-weight: 600; font-size: 0.92rem; }

.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.filter-btn { font-family: var(--font-body); font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.13em; color: var(--accent); background: var(--accent-light); padding: 8px 14px; border-radius: 999px; border: 1px solid transparent; cursor: pointer; transition: border-color .15s ease, background .15s ease; }
.filter-btn:hover { border-color: var(--primary); }
.filter-btn.active { outline: 2px solid var(--primary); }
.is-hidden { display: none !important; }

.pdp { display: grid; grid-template-columns: 1.05fr 1fr; gap: 44px; align-items: start; max-width: 1020px; margin: 0 auto; }
.pdp-gallery { display: grid; gap: 12px; }
.pdp-main { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); background: var(--soft); aspect-ratio: 1 / 1; }
.pdp-main img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.pdp-thumb { width: 74px; height: 74px; border-radius: var(--radius); overflow: hidden; border: 2px solid var(--border); cursor: pointer; padding: 0; background: none; transition: border-color .15s ease; }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumb.active, .pdp-thumb:hover { border-color: var(--primary); }
.pdp-info h1 { font-family: var(--font-head); font-size: clamp(1.7rem, 3.4vw, 2.3rem); line-height: 1.2; margin-bottom: 10px; }
.pdp-info .price-tag { font-size: 1.55rem; font-weight: 700; color: var(--primary-dark); margin: 14px 0 4px; }
.pdp-info .price-note { color: var(--ink-faint); font-size: 0.85rem; margin-bottom: 18px; }
.spec-table { width: 100%; border-collapse: collapse; margin: 18px 0 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.spec-table th, .spec-table td { text-align: left; padding: 11px 16px; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }
.spec-table th { color: var(--ink-faint); font-weight: 600; width: 130px; background: var(--bg-alt); }
.pdp-desc { font-size: 1.02rem; }
.pdp-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }
.btn { display: inline-block; background: var(--primary); color: var(--on-primary); border: none; border-radius: var(--radius-pill); padding: 13px 28px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: background .15s ease, transform .15s ease; }
.btn:hover { background: var(--primary-dark); transform: translateY(-1px); text-decoration: none; }
.btn-outline { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline:hover { background: var(--primary-light); }

.rates-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; max-width: 760px; margin: 0 auto; }
.rate-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 22px; text-align: center; box-shadow: var(--shadow-md); }
.rate-card .purity { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: var(--accent); margin-bottom: 8px; }
.rate-card .amount { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--ink); }
.rate-card .per { color: var(--ink-faint); font-size: 0.84rem; }
.rates-table { width: 100%; max-width: 720px; margin: 36px auto 0; border-collapse: collapse; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.rates-table th, .rates-table td { text-align: left; padding: 12px 18px; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.rates-table th { background: var(--bg-alt); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-faint); }
.rates-table tr:last-child td { border-bottom: 0; }
.rates-note { text-align: center; color: var(--ink-faint); font-size: 0.86rem; margin-top: 14px; }

.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; counter-reset: step; }
.process-step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px 22px; box-shadow: var(--shadow-sm); position: relative; }
.process-step::before { counter-increment: step; content: counter(step); display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--primary); color: var(--on-primary); font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; margin-bottom: 14px; }
.process-step h3 { font-family: var(--font-head); font-size: 1.08rem; margin-bottom: 6px; }
.process-step p { color: var(--ink-soft); font-size: 0.93rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
.gallery-grid figure { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); position: relative; border: 1px solid var(--border); }
.gallery-grid img { width: 100%; height: 220px; object-fit: cover; transition: transform .35s ease; }
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-grid figcaption { font-size: 0.85rem; color: var(--ink-soft); padding: 10px 14px; background: var(--surface); }

.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 20px; }
.testimonial-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 10px; }
.testimonial-card .qmark { font-family: var(--font-head); font-size: 2.4rem; line-height: 1; color: color-mix(in srgb, var(--primary) 30%, transparent); }
.testimonial-card .stars { color: var(--accent); font-size: 1.05rem; letter-spacing: 2px; }
.testimonial-card p { color: var(--ink); font-size: 0.98rem; flex: 1; }
.testimonial-card .author { color: var(--ink-soft); font-size: 0.88rem; font-weight: 700; }

.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 14px; }
.faq-list details { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-list summary { cursor: pointer; list-style: none; padding: 18px 22px; font-weight: 700; font-size: 1rem; font-family: var(--font-head); display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: background .15s ease; }
.faq-list summary:hover { background: var(--bg-alt); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-size: 1.3rem; color: var(--primary); transition: transform .15s ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p, .faq-list details .rich { padding: 0 22px 18px; color: var(--ink-soft); font-size: 0.97rem; }

.rich h2, .rich h3 { font-family: var(--font-head); color: var(--ink); margin: 16px 0 8px; line-height: 1.35; }
.rich h2 { font-size: 1.25rem; }
.rich h3 { font-size: 1.08rem; }
.rich p { margin: 0 0 12px; }
.rich ul, .rich ol { margin: 0 0 12px; padding-left: 22px; }
.rich li { margin-bottom: 4px; }
.rich blockquote { border-left: 3px solid var(--primary); padding-left: 14px; color: var(--ink-soft); margin: 0 0 12px; font-style: italic; }
.rich a { color: var(--primary-dark); font-weight: 600; }

.articles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.article-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .15s ease, box-shadow .15s ease; }
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.article-card .thumb { height: 180px; overflow: hidden; }
.article-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.article-card:hover .thumb img { transform: scale(1.06); }
.article-card .body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.article-card h3 { font-family: var(--font-head); font-size: 1.1rem; }
.article-card p { color: var(--ink-soft); font-size: 0.93rem; flex: 1; }
.article-meta { font-size: 0.78rem; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; }
.article-card .footer { margin-top: auto; padding-top: 10px; }
.article-card .footer a { font-weight: 600; }

.article-prose { max-width: 760px; margin: 0 auto; }
.article-prose img { width: 100%; max-height: 400px; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 26px; }
.article-prose h1 { font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 10px; }
.article-prose .lede { font-size: 1.12rem; color: var(--ink-soft); margin-bottom: 26px; }
.article-prose .body { font-size: 1.05rem; }
.article-prose .body p { margin-bottom: 18px; }
.article-prose .body h2 { font-family: var(--font-head); font-size: 1.4rem; margin: 30px 0 12px; }
.article-prose .body h3 { font-family: var(--font-head); font-size: 1.15rem; margin: 26px 0 10px; }
.article-prose .body ul, .article-prose .body ol { margin: 0 0 18px 24px; }
.article-prose .body li { margin-bottom: 6px; }
.article-prose .body blockquote { border-left: 3px solid var(--primary); padding-left: 16px; color: var(--ink-soft); margin: 0 0 18px; font-style: italic; }
.article-prose .body a { color: var(--primary-dark); font-weight: 600; }

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.contact-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm); }
.contact-card h3 { color: var(--primary); margin-bottom: 10px; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 800; }
.contact-card .hours { white-space: pre-line; }

.enquiry-wrap { display: grid; grid-template-columns: 340px 1fr; gap: 32px; align-items: start; }
.enquiry-info { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); display: grid; gap: 18px; position: sticky; top: 96px; }
.enquiry-info h3 { color: var(--primary); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 800; margin-bottom: 2px; }
.enquiry-info .hours { white-space: pre-line; }
.enquiry-form { max-width: 640px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-sm); display: grid; gap: 16px; }
.enquiry-form label { font-weight: 600; font-size: 0.95rem; display: grid; gap: 7px; }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea { padding: 11px 13px; border: 1px solid var(--border); border-radius: var(--radius); font: inherit; width: 100%; background: var(--bg); color: var(--ink); transition: border-color .15s ease, box-shadow .15s ease; }
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 18%, transparent); }
.enquiry-form textarea { min-height: 96px; resize: vertical; }
.consent-line { display: flex; gap: 10px; align-items: flex-start; font-weight: 400 !important; font-size: 0.88rem; color: var(--ink-soft); }
.consent-line input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--primary); flex-shrink: 0; }
.success-box { max-width: 580px; margin: 48px auto; text-align: center; background: var(--primary-light); border: 2px solid var(--primary); border-radius: var(--radius-lg); padding: 36px; }
.success-box h3 { font-family: var(--font-head); margin-bottom: 8px; }
.error-box { max-width: 580px; margin: 24px auto; text-align: center; background: #fef2f2; border: 1px solid #fca5a5; border-radius: var(--radius); padding: 20px; color: #b91c1c; }

.pager { display: flex; gap: 8px; justify-content: center; align-items: center; margin-top: 32px; flex-wrap: wrap; }
.pager-link { display: inline-flex; min-width: 38px; height: 38px; padding: 0 12px; align-items: center; justify-content: center; border: 1px solid var(--border); background: var(--surface); border-radius: 10px; font-size: 0.9rem; color: var(--primary); text-decoration: none; }
.pager-link:hover { border-color: var(--primary); }
.pager-link.current { background: var(--primary); border-color: var(--primary); color: var(--on-primary); font-weight: 600; }

.empty-note { text-align: center; color: var(--muted, var(--ink-faint)); padding: 32px 0; }

.site-footer { background: var(--ink); color: color-mix(in srgb, var(--ink) 35%, #fff); border-top: 4px solid color-mix(in srgb, var(--primary) 60%, transparent); padding: 56px 0 0; margin-top: 48px; }
.footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 40px; }
.site-footer h3 { color: #fff; margin-bottom: 14px; font-size: 1rem; font-family: var(--font-head); }
.site-footer a { color: var(--primary); }
.site-footer .brand { color: #fff; }
.site-footer .brand:hover { text-decoration: none; }
.site-footer .footer-desc { color: color-mix(in srgb, var(--ink) 22%, #fff); font-size: 0.92rem; margin-top: 6px; }
.footer-links { display: grid; gap: 4px; }
.footer-links a { color: color-mix(in srgb, var(--ink) 30%, #fff); }
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-links a.all-link { font-weight: 700; color: var(--primary); margin-top: 6px; }
.footer-col p { margin-bottom: 6px; }
.site-footer .hours { white-space: pre-line; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 44px; padding: 18px 24px; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 0.86rem; color: color-mix(in srgb, var(--ink) 22%, #fff); }
.footer-bottom a { color: color-mix(in srgb, var(--ink) 22%, #fff); font-weight: 600; }
.footer-bottom a:hover { color: #fff; }
.powered-by{opacity:.8}
.powered-by a{color:inherit;text-decoration:none}
.powered-by a:hover{text-decoration:underline;opacity:1}
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 999px; background: rgba(255,255,255,.1); color: #fff; transition: background .15s ease, transform .15s ease; }
.social-link:hover { background: var(--primary); transform: translateY(-2px); text-decoration: none; }
.social-link svg { width: 16px; height: 16px; }
.wa-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.wa-link svg { width: 16px; height: 16px; }
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 60; display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 999px; background: #25d366; color: #fff; box-shadow: 0 8px 24px rgba(37,211,102,.4); transition: transform .15s ease, background .15s ease; }
.wa-float:hover { transform: translateY(-3px) scale(1.04); background: #1ebe5b; text-decoration: none; }
.wa-float svg { width: 30px; height: 30px; }

/* ===================== Templates ===================== */
:root, html[data-theme="gilded"] {
  --primary: #a8842c;
  --primary-dark: #86671d;
  --primary-light: #f3e8cf;
  --accent: #8c3b4a;
  --accent-light: #f6e7ea;
  --bg: #faf7f0;
  --bg-alt: #f3ecdd;
  --surface: #fffdf8;
  --soft: #efe6d2;
  --border: #e4d8bf;
  --ink: #292014;
  --ink-soft: #6b5c46;
  --ink-faint: #9c8d74;
  --on-primary: #fffdf8;
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', system-ui, -apple-system, sans-serif;
  --radius: 10px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --hero-gradient: linear-gradient(160deg, #2a2115 0%, #4a3a1e 55%, #86671d 100%);
  --hero-overlay: linear-gradient(180deg, rgba(42,33,21,0.30) 0%, rgba(42,33,21,0.62) 100%);
  --hero-text: #f8f2e3;
  --shadow-sm: 0 1px 3px rgba(41,32,20,0.07), 0 4px 12px rgba(41,32,20,0.05);
  --shadow-md: 0 4px 16px rgba(41,32,20,0.09), 0 10px 26px rgba(41,32,20,0.06);
  --shadow-lg: 0 14px 36px rgba(41,32,20,0.14), 0 22px 52px rgba(41,32,20,0.09);
  --muted: var(--ink-soft);
}
html[data-theme="gilded"] .brand-name { letter-spacing: 0.04em; }
html[data-theme="gilded"] .nav-link { letter-spacing: 0.02em; }
html[data-theme="gilded"] .hero h1 { font-weight: 600; }
html[data-theme="gilded"] .hero .tagline { color: var(--primary-light); }
html[data-theme="gilded"] .section-head .eyebrow { letter-spacing: 0.22em; }
html[data-theme="gilded"] .feature { border-top: 3px solid var(--primary-light); }
html[data-theme="gilded"] .feature-icon { background: var(--primary-light); }
html[data-theme="gilded"] .feature-icon svg { color: var(--primary-dark); }
html[data-theme="gilded"] .product-card .thumb { border-bottom: 3px solid var(--primary-light); }
html[data-theme="gilded"] .process-step::before { font-family: var(--font-body); }
html[data-theme="gilded"] .rate-strip { background: #292014; color: #f3e8cf; }
html[data-theme="gilded"] .rate-value { color: #d9b95c; }
html[data-theme="gilded"] .site-footer { background: #292014; border-top-color: var(--primary); }

html[data-theme="noir"] {
  --primary: #d4af6a;
  --primary-dark: #b8934e;
  --primary-light: #33291a;
  --accent: #c98a5e;
  --accent-light: #2e2318;
  --bg: #121212;
  --bg-alt: #181818;
  --surface: #1d1d1d;
  --soft: #262626;
  --border: #2e2e2e;
  --ink: #f2ede2;
  --ink-soft: #b5ad9c;
  --ink-faint: #7d766a;
  --on-primary: #16130c;
  --font-head: 'Marcellus', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 2px;
  --radius-lg: 4px;
  --radius-pill: 999px;
  --hero-gradient: linear-gradient(165deg, #000000 0%, #191512 55%, #2c2416 100%);
  --hero-overlay: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.72) 100%);
  --hero-text: #f2ede2;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.5), 0 4px 12px rgba(0,0,0,0.4);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.5);
  --shadow-lg: 0 16px 44px rgba(0,0,0,0.6);
  --muted: var(--ink-soft);
}
html[data-theme="noir"] .site-header { background: rgba(18,18,18,0.92); border-bottom: 1px solid var(--border); }
html[data-theme="noir"] .brand-name { text-transform: uppercase; letter-spacing: 0.14em; font-size: 1.1rem; }
html[data-theme="noir"] .nav-link { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.8rem; border-radius: 0; font-weight: 500; }
html[data-theme="noir"] .nav-link.active { background: var(--soft); color: var(--primary); }
html[data-theme="noir"] .nav-cta { border-radius: 0; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.82rem; }
html[data-theme="noir"] .hero h1 { text-transform: uppercase; letter-spacing: 0.05em; font-weight: 400; }
html[data-theme="noir"] .hero .tagline { font-style: normal; color: var(--primary); letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.95rem; }
html[data-theme="noir"] .hero-cta { border-radius: 0; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.88rem; }
html[data-theme="noir"] .btn { border-radius: 0; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.88rem; }
html[data-theme="noir"] .btn-outline { border-radius: 0; }
html[data-theme="noir"] .section-head .eyebrow { background: transparent; border-color: var(--border); color: var(--primary); letter-spacing: 0.24em; }
html[data-theme="noir"] .badge-cat { background: transparent; border: 1px solid var(--border); color: var(--primary); }
html[data-theme="noir"] .filter-btn { background: transparent; border: 1px solid var(--border); color: var(--primary); }
html[data-theme="noir"] .feature { border-left: 2px solid var(--primary); border-radius: 0; }
html[data-theme="noir"] .feature-icon { border-radius: 0; background: var(--soft); }
html[data-theme="noir"] .collection-card .label h3 { text-transform: uppercase; letter-spacing: 0.08em; font-size: 1.2rem; }
html[data-theme="noir"] .product-price { color: var(--primary); }
html[data-theme="noir"] .rate-strip { background: #000; color: var(--ink); border-bottom: 1px solid var(--border); }
html[data-theme="noir"] .rate-value { color: var(--primary); }
html[data-theme="noir"] .spec-table th { background: var(--soft); }
html[data-theme="noir"] .process-step::before { border-radius: 0; font-family: var(--font-body); font-size: 0.95rem; }
html[data-theme="noir"] .site-footer { background: #000; border-top: 2px solid var(--primary); }
html[data-theme="noir"] .faq-list summary { text-transform: none; }

html[data-theme="heirloom"] {
  --primary: #7b2136;
  --primary-dark: #5f1828;
  --primary-light: #f3dde2;
  --accent: #2f6b4f;
  --accent-light: #e2efe7;
  --bg: #fbf6ef;
  --bg-alt: #f4ebe0;
  --surface: #fffdfa;
  --soft: #f0e4d6;
  --border: #e6d5c4;
  --ink: #2b1a1e;
  --ink-soft: #6d5258;
  --ink-faint: #9c8388;
  --on-primary: #fff8f2;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --hero-gradient: linear-gradient(155deg, #33101a 0%, #5f1828 55%, #7b2136 100%);
  --hero-overlay: linear-gradient(180deg, rgba(51,16,26,0.25) 0%, rgba(51,16,26,0.55) 100%);
  --hero-text: #fbf0ea;
  --shadow-sm: 0 1px 3px rgba(43,26,30,0.07), 0 4px 12px rgba(43,26,30,0.05);
  --shadow-md: 0 4px 16px rgba(43,26,30,0.09), 0 10px 26px rgba(43,26,30,0.06);
  --shadow-lg: 0 14px 36px rgba(43,26,30,0.14), 0 22px 52px rgba(43,26,30,0.09);
  --muted: var(--ink-soft);
}
html[data-theme="heirloom"] .brand-name { font-style: italic; }
html[data-theme="heirloom"] .hero .tagline { color: #f3dde2; }
html[data-theme="heirloom"] .section-head .eyebrow { color: var(--primary-dark); }
html[data-theme="heirloom"] .feature { border-top: 3px solid var(--accent); }
html[data-theme="heirloom"] .feature-icon { background: var(--accent-light); }
html[data-theme="heirloom"] .feature-icon svg { color: var(--accent); }
html[data-theme="heirloom"] .badge-cat { color: var(--primary-dark); background: var(--primary-light); }
html[data-theme="heirloom"] .product-card .thumb { border-bottom: 3px solid var(--primary-light); }
html[data-theme="heirloom"] .process-step::before { background: var(--accent); }
html[data-theme="heirloom"] .rate-strip { background: #33101a; color: #f3dde2; }
html[data-theme="heirloom"] .rate-value { color: #eec9a0; }
html[data-theme="heirloom"] .testimonial-card .stars { color: var(--primary); }
html[data-theme="heirloom"] .site-footer { background: #33101a; border-top-color: var(--accent); }

/* ===================== Theme switcher ===================== */
.theme-btn {
  position: fixed; bottom: 92px; right: 22px; z-index: 110;
  width: 52px; height: 52px; border-radius: 999px; border: none; cursor: pointer;
  background: var(--primary); color: var(--on-primary);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); transition: background .15s ease, transform .15s ease;
}
.theme-btn:hover { background: var(--primary-dark); transform: translateY(-2px); }
.theme-btn svg { width: 24px; height: 24px; }
.theme-panel {
  position: fixed; bottom: 156px; right: 22px; z-index: 120;
  width: 292px; max-width: calc(100vw - 32px);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 16px;
  display: none; text-align: left;
}
.theme-panel.open { display: block; }
.theme-panel h3 { font-family: var(--font-head); font-size: 1.05rem; margin-bottom: 2px; }
.theme-panel .theme-sub { font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 12px; }
.theme-card {
  display: flex; align-items: center; gap: 12px; width: 100%; text-align: left;
  background: var(--soft); border: 2px solid transparent; border-radius: var(--radius);
  padding: 10px 12px; margin-bottom: 8px; cursor: pointer;
  font-family: var(--font-body); color: var(--ink); transition: border-color .15s ease, background .15s ease;
}
.theme-card:hover { background: color-mix(in srgb, var(--soft) 60%, var(--primary-light)); }
.theme-card.active { border-color: var(--primary); background: var(--primary-light); }
.theme-swatches { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px; flex-shrink: 0; }
.theme-swatches .sw { width: 16px; height: 16px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.12); }
.theme-card .t-name { font-weight: 700; font-size: 0.9rem; }
.theme-card .t-desc { font-size: 0.75rem; color: var(--ink-soft); line-height: 1.35; }
.theme-note { margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--border); font-size: 0.72rem; color: var(--ink-faint); line-height: 1.4; }

@media (max-width: 900px) {
  .pdp { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 860px) {
  .header-inner { flex-wrap: wrap; }
  .brand { justify-content: flex-start; }
  .nav-toggle { display: block; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 2px; padding: 10px 20px 16px; background: var(--bg); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg); }
  .nav.open { display: flex; }
  .nav-link { border-radius: 10px; padding: 12px 14px; font-size: 1rem; }
  .nav-cta { text-align: center; }
  .hero { padding: 76px 20px 84px; }
  .section { padding: 56px 20px; }
  .page-hero { padding: 48px 20px; }
  .enquiry-wrap { grid-template-columns: 1fr; }
  .enquiry-info { position: static; }
  .stats-strip .container { padding: 20px; }
  .theme-panel { right: 16px; bottom: 148px; }
  .theme-btn { right: 16px; bottom: 88px; }
}
@media (max-width: 520px) {
  .nav { gap: 3px; }
  .nav-link { padding: 7px 10px; font-size: 0.88rem; }
  .enquiry-form { padding: 24px 20px; }
  .stat-item { min-width: 110px; }
  .stat-num { font-size: 1.5rem; }
}