/* ============================================================
   HD PARFUMS – THEME STYLESHEET
   Version: 1.0.0
   ============================================================ */

/* ─── CSS CUSTOM PROPERTIES ─── */
:root {
  --ink:          #0a0a0a;
  --deep:         #111111;
  --surface:      #161616;
  --card:         #1c1c1c;
  --border:       rgba(255,255,255,.08);
  --gold:         #c9a84c;
  --gold-light:   #e8c97a;
  --gold-pale:    rgba(201,168,76,.12);
  --ivory:        #f5f0e8;
  --ivory-dim:    rgba(245,240,232,.65);
  --white:        #ffffff;
  --muted:        rgba(255,255,255,.4);
  --accent-red:   #8b1a2e;
  --rose-warm:    #c87070;

  /* Typography scale */
  --font-display: 'Lora', Georgia, serif;
  --font-body:    'Lora', Georgia, serif;

  /* Spacing */
  --section-gap: 60px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--ivory);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── GRAIN OVERLAY ─── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px;
}

/* ─── LAYOUT ─── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding: 0 48px;
}

.site-main {
  max-width: 1240px;
  margin: 0 auto;
}

/* ─── ANNOUNCEMENT BAR ─── */
.announcement {
  background: var(--gold);
  color: var(--ink);
  text-align: center;
  font-size: 11px;
  letter-spacing: 2px;
  padding: 9px 16px;
  text-transform: uppercase;
  font-weight: 700;
}
.announcement a { color: var(--ink); text-decoration: underline; }

/* ─── SITE HEADER ─── */
.site-header {
  background: rgba(10,10,10,.96);
  backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  max-width: 1240px;
  margin: 0 auto;
  gap: 24px;
}

/* Logo */
.logo-img-link { display: none; } /* text logo is used; hide image link */

.logo-text-wrap { display: flex; flex-direction: column; }
.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}
.logo-sub {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
  margin-top: 3px;
}

.custom-logo { max-height: 48px; width: auto; }
.custom-logo-link img { max-width: 200px; display: block !important; }

/* Search */
.search-bar {
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 9px 18px;
  gap: 10px;
  flex: 1;
  max-width: 380px;
  transition: border-color .2s;
}
.search-bar:focus-within { border-color: var(--gold); }
.search-bar input,
.search-bar .search-field {
  border: none; outline: none; background: transparent;
  font-size: 12px; font-family: var(--font-body);
  letter-spacing: .5px;
  width: 100%; color: var(--ivory);
}
.search-bar input::placeholder,
.search-bar .search-field::placeholder { color: var(--muted); }
.search-bar svg { color: var(--muted); flex-shrink: 0; }
.search-bar .search-submit { display: none; }

/* Header icons */
.header-icons { display: flex; gap: 24px; align-items: center; }
.header-icons a {
  color: var(--ivory-dim); text-decoration: none;
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  transition: color .2s; font-weight: 600; white-space: nowrap;
}
.header-icons a:hover { color: var(--gold); }
.cart-badge {
  background: var(--gold); color: var(--ink);
  font-size: 9px; border-radius: 50%;
  width: 16px; height: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-left: -6px; margin-top: -10px;
  font-weight: 700; line-height: 1;
}

/* ─── PRIMARY NAV ─── */
.nav-wrap {
  background: var(--deep);
  border-bottom: 1px solid var(--border);
}
.primary-nav {
  display: flex;
  justify-content: center;
  max-width: 1240px;
  margin: 0 auto;
}
.primary-nav a,
.primary-nav > ul > li > a {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--muted);
  text-decoration: none;
  display: block;
  padding: 14px 22px;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
  white-space: nowrap;
}
.primary-nav a:hover,
.primary-nav a.active { border-color: var(--gold); color: var(--ivory); }
.primary-nav a.active { color: var(--gold); }

.primary-nav ul { list-style: none; display: flex; margin: 0; padding: 0; }
.primary-nav ul ul { display: none; }

/* ─── HAMBURGER (mobile) ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ivory);
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE NAV ─── */
.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 200;
  opacity: 0; transition: opacity .3s;
}
.nav-overlay.visible { opacity: 1; }

.mobile-nav {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 300px;
  background: var(--deep);
  z-index: 300;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  padding: 24px;
  border-right: 1px solid var(--border);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-close {
  position: absolute; top: 20px; right: 20px;
  background: transparent; border: none;
  color: var(--muted); cursor: pointer;
  transition: color .2s;
}
.mobile-nav-close:hover { color: var(--gold); }
.mobile-nav-logo { margin: 40px 0 32px; }
.mobile-nav-menu ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav-menu a {
  display: block; padding: 12px 0;
  font-size: 13px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 600;
  color: var(--ivory-dim); border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-nav-menu a:hover { color: var(--gold); }

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 580px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform-origin: center;
  animation: heroZoom 10s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,10,10,.92) 0%, rgba(10,10,10,.6) 50%, rgba(10,10,10,.3) 100%);
}
.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative; z-index: 2;
  animation: fadeSlideUp .9s ease both;
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; font-weight: 600;
  display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 40px; height: 1px; background: var(--gold);
}
.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 680px;
}
.hero-heading em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 14px;
  color: var(--ivory-dim);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 36px;
  letter-spacing: .3px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: background .25s, color .25s, border-color .25s, transform .2s;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: var(--gold-light); }
.btn-outline {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(255,255,255,.3);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 10px 24px; font-size: 10px; }

/* ─── SECTION SHARED ─── */
.section { padding: var(--section-gap) 0; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 16px;
}
.section-head-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.section-eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.view-all-link {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  transition: opacity .2s;
}
.view-all-link:hover { opacity: .7; }

/* Carousel arrows */
.carousel-arrows { display: flex; gap: 8px; }
.arrow-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--ivory-dim);
  transition: border-color .2s, color .2s;
  cursor: pointer;
}
.arrow-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ─── PRODUCT GRID / CAROUSEL ─── */
.products-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
  cursor: grab;
}
.products-carousel::-webkit-scrollbar { display: none; }
.products-carousel .product-card {
  flex: 0 0 280px;
  width: 280px;
  scroll-snap-align: start;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .35s, border-color .35s;
  cursor: pointer;
}
.product-card:hover { transform: translateY(-4px); border-color: var(--gold-pale); }

.product-link { display: block; color: inherit; text-decoration: none; }

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.product-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.product-card:hover .product-img { transform: scale(1.04); }
.product-img-placeholder {
  width: 100%; height: 100%;
  background: var(--surface);
}
.product-sale-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent-red);
  color: #fff;
  font-size: 9px; letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 700;
  padding: 4px 10px;
}
.product-overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,10,.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.product-card:hover .product-overlay { opacity: 1; }
.product-overlay span {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 700; color: var(--gold);
  border: 1px solid var(--gold); padding: 8px 20px;
}

.product-info { padding: 18px 20px 14px; }
.product-tag {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px; font-weight: 600;
}
.product-name {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700;
  color: var(--ivory); margin-bottom: 4px;
}
.product-type {
  font-size: 11px; color: var(--muted); letter-spacing: .3px; margin-bottom: 10px;
}
.product-price {
  font-size: 16px; color: var(--gold); font-weight: 700;
}
.product-price .woocommerce-Price-amount { color: var(--gold); }
.product-price ins { text-decoration: none; }
.product-price del { color: var(--muted); font-size: 13px; margin-right: 6px; }

.add-to-cart-btn {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: none;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700;
  transition: color .2s, background .2s;
  cursor: pointer;
}
.add-to-cart-btn:hover { color: var(--gold); background: var(--gold-pale); }

/* ─── DUAL BANNERS ─── */
.dual-banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.dual-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 48px;
  text-decoration: none;
  color: inherit;
}
.dual-banner-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .7s cubic-bezier(.4,0,.2,1);
}
.dual-banner:hover .dual-banner-bg { transform: scale(1.04); }
.dual-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,10,10,.85) 0%, rgba(10,10,10,.3) 60%, transparent 100%);
}
.dual-banner-content { position: relative; z-index: 2; }
.dual-banner-eyebrow {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 10px;
}
.dual-banner-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700; color: var(--white);
  line-height: 1.1; margin-bottom: 12px;
}
.dual-banner-sub {
  font-size: 13px; color: var(--ivory-dim);
  line-height: 1.6; margin-bottom: 24px;
  max-width: 340px;
}

/* ─── OFFERS ─── */
.offers-section { background: var(--deep); }
.offers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.offer-card { cursor: pointer; }
.offer-card a { color: inherit; text-decoration: none; }
.offer-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2.4;
  margin-bottom: 14px;
}
.offer-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s;
}
.offer-card:hover .offer-img-wrap img { transform: scale(1.05); }
.offer-img-placeholder { width: 100%; height: 100%; background: var(--surface); }
.offer-badge {
  position: absolute; bottom: 10px; left: 10px;
  background: var(--gold);
  color: var(--ink);
  font-size: 9px; letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 700;
  padding: 4px 10px;
}
.offer-name {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700; color: var(--ivory); margin-bottom: 4px;
}
.offer-type { font-size: 11px; color: var(--muted); }

/* ─── CATEGORY STRIP ─── */
.cat-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 48px;
}
.cat-strip-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.cat-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; text-decoration: none; cursor: pointer;
}
.cat-thumb {
  width: 50px; height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color .2s;
}
.cat-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cat-thumb-placeholder { width: 100%; height: 100%; background: var(--card); }
.cat-item:hover .cat-thumb { border-color: var(--gold); }
.cat-label {
  font-size: 8px; letter-spacing: 0; text-transform: uppercase;
  color: var(--muted); font-weight: 600; transition: color .2s;
}
.cat-item:hover .cat-label { color: var(--gold); }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--deep);
  border-top: 1px solid var(--border);
}
.footer-grid-wrap { padding: 60px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.footer-col h4 {
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 700; color: var(--gold); margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 12px; letter-spacing: .5px;
  color: var(--muted); margin-bottom: 10px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--ivory); }
.footer-col ul { list-style: none; margin: 0; padding: 0; }

.footer-newsletter { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.footer-newsletter input {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 12px; letter-spacing: .5px;
  padding: 10px 14px;
  outline: none;
  transition: border-color .2s;
}
.footer-newsletter input:focus { border-color: var(--gold); }
.footer-newsletter input::placeholder { color: var(--muted); }
.submit-btn {
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700;
  padding: 10px;
  transition: background .2s;
  cursor: pointer;
  border: none;
}
.submit-btn:hover { background: var(--gold-light); }

.socials { display: flex; gap: 12px; margin-top: 4px; }
.social-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: border-color .2s, color .2s;
}
.social-icon:hover { border-color: var(--gold); color: var(--gold); }

.footer-bottom-wrap {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-bottom { display: flex; justify-content: center; }
.footer-copyright { font-size: 11px; letter-spacing: 1px; color: var(--muted); }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── BLOG ─── */
.blog-main { padding: var(--section-gap) 0; }
.blog-main .page-header { margin-bottom: 40px; }
.page-title {
  font-family: var(--font-display);
  font-size: 42px; font-weight: 700; color: var(--white);
}
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.post-card {
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
}
.post-card a { text-decoration: none; color: inherit; }
.post-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.post-card-body { padding: 20px; }
.post-card-title {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700; color: var(--ivory); margin-bottom: 10px;
}
.post-card-excerpt { font-size: 13px; color: var(--muted); line-height: 1.6; }
.no-posts { color: var(--muted); font-size: 14px; }

.nav-links { display: flex; gap: 16px; margin-top: 48px; }
.nav-links a {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}

/* ─── WOOCOMMERCE (see assets/css/woocommerce.css) ─── */
.woo-main { padding: var(--section-gap) 0; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .products-grid,
  .offers-grid { grid-template-columns: repeat(2, 1fr); }
  .products-carousel .product-card { flex: 0 0 240px; width: 240px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-gap: 48px; }
  .container { padding: 0 24px; }
  .header-top { padding: 14px 24px; }
  .search-bar { display: none; }
  .hamburger { display: flex; }
  .nav-wrap { display: none; }
  .header-icons a span { display: none; }
  .hero { height: 440px; }
  .hero-heading { font-size: 38px; }
  .dual-banners { grid-template-columns: 1fr; }
  .dual-banner { min-height: 340px; }
  .offers-grid,
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .products-carousel .product-card { flex: 0 0 200px; width: 200px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cat-strip { padding: 24px; }
  .section-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .fp-carousel { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

/* ── 404 page ── */
.page-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.page-404__inner {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.page-404__eyebrow {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.page-404__title {
  font-size: clamp(48px, 8vw, 96px);
  margin-bottom: 20px;
  color: var(--white);
}
.page-404__text {
  font-size: 15px;
  color: var(--muted);
  max-width: 420px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.page-404__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Blog / single post ── */
.entry-header { margin-bottom: 32px; }
.entry-meta {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1px;
  margin-top: 12px;
}
.entry-thumbnail { margin-bottom: 40px; }
.entry-thumbnail img { width: 100%; height: auto; }
.entry-content {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ivory-dim);
  max-width: 720px;
}

/* ── Static page ── */
.page-container { max-width: 860px; }
.page-container .page-header {
  margin-bottom: 48px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 32px;
}
.archive-description {
  color: var(--muted);
  font-size: 14px;
  margin-top: 12px;
}

/* ── Search ── */
.search-term { color: var(--gold); font-style: italic; }
.no-results {
  text-align: center;
  padding: 80px 0;
}
.no-results__text {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 32px;
}
.no-results__form { display: none; }

/* ── Front page ── */
.fp-inline-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fp-section-header { background: transparent; }
.fp-product-badge--sale { background: var(--accent-red); color: #fff; }
.fp-product-badge--new { background: var(--gold); color: var(--ink); }
.fp-deals-section { padding-bottom: 80px; }
.fp-carousel-nav { display: none !important; }

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */

/* ── Hero ── */
.about-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background: var(--deep);
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.about-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,.98) 0%, rgba(17,17,17,.85) 100%);
}
.about-hero-content {
  position: relative; z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
}
.about-hero-heading {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin: 16px 0 20px;
  max-width: 700px;
}
.about-hero-heading em { font-style: italic; color: var(--gold); }
.about-hero-sub {
  font-size: 15px;
  color: var(--ivory-dim);
  line-height: 1.75;
  max-width: 520px;
}

/* ── Mission ── */
.about-mission { background: var(--ink); }
.about-mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-mission-text p {
  font-size: 15px;
  color: var(--ivory-dim);
  line-height: 1.8;
  margin-top: 20px;
}
.about-mission-text .section-title { margin-top: 10px; }
.about-mission-image { position: relative; }
.about-mission-img-frame {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-mission-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-img-placeholder {
  width: 100%; height: 100%;
  background: var(--surface);
}
.about-mission-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 100px; height: 100px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.about-mission-badge-number {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
}
.about-mission-badge-number span { font-size: 14px; }
.about-mission-badge-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
}

/* ── Values ── */
.about-values { background: var(--deep); }
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.about-value-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 32px 28px;
  transition: border-color .3s;
}
.about-value-card:hover { border-color: var(--gold-pale); }
.about-value-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}
.about-value-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 12px;
}
.about-value-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
}

/* ── Stats ── */
.about-stats {
  background: var(--gold);
  padding: 56px 0;
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.about-stat { display: flex; flex-direction: column; gap: 6px; }
.about-stat-number {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
}
.about-stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(10,10,10,.6);
}

/* ── CTA ── */
.about-cta {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--section-gap) 0;
}
.about-cta-inner { text-align: center; }
.about-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.about-cta-sub {
  font-size: 15px;
  color: var(--ivory-dim);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.about-cta-inner .hero-ctas { justify-content: center; }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

/* ── Hero ── */
.contact-hero {
  position: relative;
  background: var(--deep);
  padding: 80px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.contact-hero-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.contact-hero-content { position: relative; z-index: 2; }
.contact-hero-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin: 16px 0 20px;
  max-width: 640px;
}
.contact-hero-heading em { font-style: italic; color: var(--gold); }
.contact-hero-sub {
  font-size: 15px;
  color: var(--ivory-dim);
  line-height: 1.75;
  max-width: 480px;
}

/* ── Main layout ── */
.contact-main { background: var(--ink); }
.contact-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}

/* ── Info cards ── */
.contact-info { display: flex; flex-direction: column; gap: 2px; }
.contact-info-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--border);
  background: var(--card);
  transition: border-color .25s;
}
.contact-info-card:hover { border-color: var(--gold-pale); }
.contact-info-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.contact-info-title {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-info-detail {
  font-size: 14px;
  color: var(--ivory);
  line-height: 1.5;
}
.contact-info-detail a {
  color: var(--ivory);
  transition: color .2s;
}
.contact-info-detail a:hover { color: var(--gold); }
.contact-info-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: .3px;
}

/* ── Form wrapper ── */
.contact-form-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 40px;
}
.contact-form-header { margin-bottom: 32px; }
.contact-form-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-top: 8px;
}

/* ── Form fields ── */
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.contact-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.contact-field:last-of-type { margin-bottom: 28px; }
.contact-field label {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ivory-dim);
}
.contact-field label span { color: var(--gold); margin-left: 2px; }
.contact-field input,
.contact-field select,
.contact-field textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 12px 16px;
  outline: none;
  transition: border-color .2s;
  width: 100%;
  box-sizing: border-box;
  border-radius: 0;
  -webkit-appearance: none;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder { color: var(--muted); }
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus { border-color: var(--gold); }
.contact-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23ffffff40' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.contact-field select option { background: var(--surface); color: var(--ivory); }
.contact-field textarea { resize: vertical; min-height: 140px; }
.contact-submit { gap: 8px; }

/* ── Feedback states ── */
.contact-success {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(201,168,76,.1);
  border: 1px solid var(--gold);
  padding: 20px 24px;
  margin-bottom: 24px;
  color: var(--ivory);
  font-size: 14px;
  line-height: 1.6;
}
.contact-success svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-errors {
  background: rgba(139,26,46,.15);
  border: 1px solid var(--accent-red);
  padding: 16px 20px;
  margin-bottom: 24px;
}
.contact-errors p {
  font-size: 13px;
  color: #e07070;
  margin: 0;
  line-height: 1.6;
}

/* ── FAQ ── */
.contact-faq { background: var(--deep); }
.contact-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 16px;
}
.contact-faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 28px 24px;
  transition: border-color .25s;
}
.contact-faq-item:hover { border-color: var(--gold-pale); }
.contact-faq-q {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 12px;
  line-height: 1.4;
}
.contact-faq-a {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
}

/* ==========================================================================
   ABOUT + CONTACT RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .about-mission-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-faq-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .about-hero-heading { font-size: 38px; }
  .about-mission-badge { width: 80px; height: 80px; bottom: -16px; right: -8px; }
  .about-mission-badge-number { font-size: 18px; }
  .about-values-grid { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-hero-heading { font-size: 34px; }
  .contact-form-wrap { padding: 28px 20px; }
  .contact-form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
