/* ============================================================
   PURE KARET JEWELLERY — GLOBAL DESIGN SYSTEM
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ---------- 1. RESET ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #1a1a1a;
  background-color: #FFFFFF;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ---------- 2. BRAND VARIABLES ---------- */
:root {
  --pk-black: #0A0A0A;
  --pk-dark: #111111;
  --pk-dark-2: #1a1a1a;
  --pk-gold: #C9A227;
  --pk-gold-light: #E6C766;
  --pk-gold-dark: #A8851A;
  --pk-white: #FFFFFF;
  --pk-off-white: #F8F6F0;
  --pk-gray-100: #F4F4F4;
  --pk-gray-200: #E5E5E5;
  --pk-gray-400: #9A9A9A;
  --pk-gray-600: #5A5A5A;
  --pk-red: #B00020;

  --font-heading: 'Cormorant Garamond', 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --space-2xl: 120px;

  --container-max: 1440px;
  --header-height: 110px;
  --announcement-height: 38px;

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
}

/* ---------- 3. TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--pk-black);
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: 0.02em; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); letter-spacing: 0.02em; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
  color: var(--pk-gray-600);
  font-size: 0.95rem;
  font-weight: 300;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pk-gold);
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.section-title { margin-bottom: var(--space-sm); }

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--pk-gray-600);
  max-width: 620px;
  margin: 0 auto;
  letter-spacing: 0.02em;
}

.text-center { text-align: center; }

/* ---------- 4. LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: var(--space-2xl) 0; }
.section-sm { padding: var(--space-xl) 0; }

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-cta {
  text-align: center;
  margin-top: var(--space-lg);
}

/* ---------- 5. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 36px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: var(--pk-gold);
  color: var(--pk-black);
  border-color: var(--pk-gold);
}

.btn-primary:hover {
  background: var(--pk-gold-light);
  border-color: var(--pk-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 162, 39, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--pk-black);
  border-color: var(--pk-black);
}

.btn-outline:hover {
  background: var(--pk-black);
  color: var(--pk-white);
}

.btn-outline-light {
  background: transparent;
  color: var(--pk-white);
  border-color: var(--pk-white);
}

.btn-outline-light:hover {
  background: var(--pk-white);
  color: var(--pk-black);
}

.btn-dark {
  background: var(--pk-black);
  color: var(--pk-white);
  border-color: var(--pk-black);
}

.btn-dark:hover {
  background: var(--pk-gold);
  border-color: var(--pk-gold);
  color: var(--pk-black);
}

/* ---------- 6. ANNOUNCEMENT BAR ---------- */
.announcement-bar {
  background: var(--pk-black);
  color: var(--pk-off-white);
  height: var(--announcement-height);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0 20px;
}

.announcement-bar p {
  color: var(--pk-off-white);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  margin: 0;
  text-align: center;
}

.announcement-bar .gold {
  color: var(--pk-gold-light);
  margin: 0 8px;
}

/* ---------- 7. HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--pk-black);
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
  transition: all var(--transition-base);
  overflow: visible;
}

.site-header .container {
  position: relative;
  overflow: visible;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: var(--space-md);
}

.header-left { flex-shrink: 0; min-width: 180px; }

.header-logo { display: inline-block; line-height: 0; }

.header-logo img {
  height: 110px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-base);
}

.header-logo:hover img { transform: scale(1.03); }

.header-center { flex: 1; display: flex; justify-content: center; }

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
}

.primary-nav a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pk-off-white);
  padding: 8px 0;
  position: relative;
  transition: color var(--transition-base);
}

.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--pk-gold);
  transition: width var(--transition-base);
}

.primary-nav a:hover { color: var(--pk-gold); }
.primary-nav a:hover::after { width: 100%; }

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  min-width: 180px;
  justify-content: flex-end;
}

.header-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--pk-off-white);
  transition: color var(--transition-base), transform var(--transition-base);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.header-icon:hover { color: var(--pk-gold); transform: translateY(-2px); }

.header-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-icon .icon-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--pk-gold);
  color: var(--pk-black);
  font-size: 0.62rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ---------- 8. MEGA MENU — FULL WIDTH ---------- */
.nav-item {
  position: static;
}

.mega-menu {
  position: fixed;
  top: 148px;
  left: 0;
  right: 0;
  width: 100%;
  background: #0A0A0A;
  border-top: 1px solid rgba(201, 162, 39, 0.25);
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  padding: 50px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 1000;
  pointer-events: none;
}

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.mega-col-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--pk-off-white);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--pk-gold);
  display: inline-block;
}

.mega-col ul li { margin-bottom: 12px; }

.mega-col a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  display: inline-block;
  letter-spacing: 0.08em;
}

.mega-col a:hover { color: var(--pk-gold); padding-left: 6px; }

/* ---------- 9. HAMBURGER ---------- */
.hamburger {
  display: none;
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--pk-off-white);
  position: absolute;
  left: 0;
  transition: all var(--transition-base);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.is-active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) { opacity: 0; }

.hamburger.is-active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* ---------- 10. HERO ---------- */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--header-height) - var(--announcement-height));
  min-height: 620px;
  overflow: hidden;
  background: var(--pk-black);
}

.hero-video,
.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-video {
  z-index: 2;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-video.is-ready { opacity: 1; }

.hero-fallback {
  z-index: 1;
  background: url('../assets/images/banners/hero-fallback.jpg') center/cover no-repeat,
              linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.30) 45%,
    rgba(0, 0, 0, 0.60) 100%
  );
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 4;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  color: var(--pk-white);
  padding: 0 40px 100px;
}

.hero-brand {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pk-white);
  margin-bottom: 18px;
  animation: fadeUp 1.2s ease 0.2s both;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--pk-gold-light);
  margin-bottom: 30px;
  animation: fadeUp 1.2s ease 0.4s both;
}

.hero-description {
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 44px;
  animation: fadeUp 1.2s ease 0.6s both;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  animation: fadeUp 1.2s ease 0.8s both;
}

/* ---------- 11. CATEGORY GRID ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category-card {
  display: block;
  overflow: hidden;
  position: relative;
  background: var(--pk-off-white);
}

.category-card-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--pk-off-white);
}

.category-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.category-card:hover .category-card-image img {
  transform: scale(1.06);
}

.category-card-info {
  padding: 22px 24px;
  background: var(--pk-white);
  text-align: center;
  border: 1px solid var(--pk-gray-200);
  border-top: none;
}

.category-card-info h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.category-card-link {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pk-gold);
}

/* ---------- 12. PRODUCT GRID ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.product-card {
  position: relative;
  background: var(--pk-white);
  transition: transform var(--transition-base);
}

.product-card:hover { transform: translateY(-4px); }

.product-image-wrap {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  background: var(--pk-off-white);
}

.product-image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
  background: var(--pk-off-white);
  color: transparent;
  font-size: 0;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.06);
}

.product-image-wrap::before {
  content: 'PURE KARET';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  color: #C9A227;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  background: var(--pk-black);
  color: var(--pk-white);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 3;
}

.product-badge.badge-sale { background: var(--pk-gold); color: var(--pk-black); }
.product-badge.badge-new { background: var(--pk-white); color: var(--pk-black); }

.product-actions {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 3;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.product-action-btn {
  width: 38px;
  height: 38px;
  background: var(--pk-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pk-black);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
}

.product-action-btn:hover { background: var(--pk-gold); color: var(--pk-black); }
.product-action-btn.is-active { background: var(--pk-gold); color: var(--pk-black); }

.product-action-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.product-action-btn.is-active svg { fill: currentColor; }

.product-quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px;
  background: var(--pk-black);
  color: var(--pk-white);
  text-align: center;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  cursor: pointer;
  z-index: 3;
  border: none;
  width: 100%;
}

.product-card:hover .product-quick-add {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.product-quick-add:hover {
  background: var(--pk-gold);
  color: var(--pk-black);
}

.product-info {
  padding: 20px 4px 8px;
  text-align: center;
}

.product-category {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pk-gray-400);
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--pk-black);
  margin-bottom: 8px;
  line-height: 1.35;
}

.product-name a:hover { color: var(--pk-gold); }

.product-price {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--pk-black);
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: baseline;
}

.product-price .sale { color: var(--pk-red); font-weight: 600; }
.product-price .original { color: var(--pk-gray-400); text-decoration: line-through; font-weight: 400; }

/* ---------- 13. COLLECTION BANNER ---------- */
.collection-banner {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: url('../assets/images/banners/collection-banner.jpg') center/cover no-repeat,
              linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 100%);
}

.collection-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.collection-banner-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  max-width: 720px;
  color: var(--pk-white);
}

.collection-banner-content h2 {
  color: var(--pk-white);
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 18px;
}

.collection-banner-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-bottom: 32px;
}

/* ---------- 14. SPLIT SECTION ---------- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: var(--pk-off-white);
}

.split-image { overflow: hidden; }

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.split-section:hover .split-image img { transform: scale(1.04); }

.split-content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-content h2 { margin-bottom: 22px; }

.split-content p {
  font-size: 0.95rem;
  margin-bottom: 32px;
  max-width: 480px;
}

.split-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- 15. STORY ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-content h2 { margin-bottom: 12px; }
.story-content p { margin-bottom: 16px; }

/* ---------- 16. TESTIMONIALS ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  padding: 40px 32px;
  background: var(--pk-off-white);
  border: 1px solid var(--pk-gray-200);
  text-align: center;
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  border-color: var(--pk-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: var(--pk-gold);
  font-size: 1rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--pk-black);
  margin-bottom: 22px;
  line-height: 1.5;
}

.testimonial-author {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pk-gray-600);
}

/* ---------- 17. INSTAGRAM ---------- */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}

.instagram-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--pk-off-white);
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, opacity 0.4s ease;
}

.instagram-item:hover img {
  transform: scale(1.08);
  opacity: 0.85;
}

/* ---------- 18. NEWSLETTER ---------- */
.newsletter {
  background: var(--pk-dark);
  padding: var(--space-xl) 0;
  text-align: center;
}

.newsletter-form {
  display: flex;
  max-width: 560px;
  margin: 30px auto 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: border-color var(--transition-base);
}

.newsletter-form:focus-within { border-bottom-color: var(--pk-gold); }

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--pk-white);
  padding: 16px 8px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.4); }

.newsletter-form button {
  color: var(--pk-gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0 16px;
  transition: color var(--transition-base);
}

.newsletter-form button:hover { color: var(--pk-gold-light); }

/* ============================================================
   19. PROFESSIONAL FOOTER
   ============================================================ */

.site-footer {
  background: var(--pk-black);
  color: var(--pk-off-white);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1.2fr 1fr 0.8fr;
  gap: 60px;
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col-brand .footer-logo {
  height: 90px;
  width: auto;
  margin-bottom: 24px;
}

.footer-col-brand .footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  line-height: 1.9;
  margin-bottom: 24px;
  max-width: 360px;
}

.footer-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-trust span {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--pk-gold);
  font-weight: 400;
}

.footer-col-newsletter h4,
.footer-col-contact h4,
.footer-col-social h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pk-gold);
  margin-bottom: 20px;
}

.footer-col-newsletter p,
.footer-col-social p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-newsletter-form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: border-color 0.3s ease;
}

.footer-newsletter-form:focus-within {
  border-bottom-color: var(--pk-gold);
}

.footer-newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--pk-white);
  padding: 12px 0;
  font-size: 0.85rem;
  font-family: var(--font-body);
}

.footer-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
}

.footer-newsletter-form button {
  background: transparent;
  border: none;
  color: var(--pk-gold);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-newsletter-form button:hover {
  color: var(--pk-gold-light);
  transform: translateX(4px);
}

.footer-newsletter-form button svg {
  width: 18px;
  height: 18px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-contact-list strong {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pk-off-white);
  margin-bottom: 2px;
}

.footer-contact-list span,
.footer-contact-list a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  line-height: 1.6;
  transition: color 0.25s ease;
}

.footer-contact-list a:hover {
  color: var(--pk-gold);
}

.footer-col-social .footer-social {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.footer-col-social .footer-social a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pk-off-white);
  transition: all 0.3s ease;
}

.footer-col-social .footer-social a:hover {
  background: var(--pk-gold);
  border-color: var(--pk-gold);
  color: var(--pk-black);
  transform: translateY(-3px);
}

.footer-col-social .footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  flex-wrap: wrap;
  gap: 16px 32px;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  margin: 0;
  letter-spacing: 0.04em;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.25s ease;
}

.footer-legal a:hover {
  color: var(--pk-gold);
}

.footer-legal-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  user-select: none;
}

/* ---------- 20. BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 46px;
  height: 46px;
  background: var(--pk-black);
  color: var(--pk-white);
  border: 1px solid var(--pk-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 800;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all var(--transition-base);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover { background: var(--pk-gold); color: var(--pk-black); }

.back-to-top svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- 21. ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- 22. UTILITIES ---------- */
.bg-dark { background: var(--pk-dark); }
.bg-black { background: var(--pk-black); }
.bg-offwhite { background: var(--pk-off-white); }

.text-gold { color: var(--pk-gold); }
.text-white { color: var(--pk-white); }

.gold-divider {
  width: 60px;
  height: 1px;
  background: var(--pk-gold);
  margin: 20px auto;
}

.gold-divider.left { margin-left: 0; }

.hidden { display: none !important; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- 23. TOAST NOTIFICATION ---------- */
.pk-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--pk-black);
  color: var(--pk-white);
  padding: 14px 28px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--pk-gold);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
  pointer-events: none;
  font-family: var(--font-body);
}

.pk-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ============================================================
   SEARCH OVERLAY
   ============================================================ */

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.96);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
}

.search-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.search-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 40px 100px;
  position: relative;
}

.search-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--pk-off-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.search-close:hover {
  background: var(--pk-gold);
  border-color: var(--pk-gold);
  color: var(--pk-black);
}

.search-close svg {
  width: 18px;
  height: 18px;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 20px;
  margin-bottom: 40px;
  transition: border-color 0.3s ease;
}

.search-input-wrap:focus-within {
  border-bottom-color: var(--pk-gold);
}

.search-icon {
  width: 24px;
  height: 24px;
  color: var(--pk-gold);
  flex-shrink: 0;
}

.search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--pk-white);
  padding: 8px 0;
  letter-spacing: 0.02em;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
}

.search-hint {
  text-align: center;
  padding: 20px 0;
}

.search-hint p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.search-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.search-suggestion {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--pk-off-white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: all 0.25s ease;
}

.search-suggestion:hover {
  background: var(--pk-gold);
  border-color: var(--pk-gold);
  color: var(--pk-black);
}

.search-empty {
  text-align: center;
  padding: 40px 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.search-empty strong {
  color: var(--pk-gold);
  font-weight: 500;
}

.search-results {
  display: flex;
  flex-direction: column;
}

.search-result-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.25s ease;
}

.search-result-item:hover {
  padding-left: 10px;
  border-bottom-color: var(--pk-gold);
}

.search-result-image {
  width: 70px;
  height: 70px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

.search-result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-result-info {
  min-width: 0;
}

.search-result-category {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pk-gold);
  margin-bottom: 4px;
}

.search-result-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--pk-white);
  margin-bottom: 6px;
  line-height: 1.3;
}

.search-result-price {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.search-price-sale {
  color: var(--pk-red);
  font-weight: 600;
}

.search-price-orig {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  font-size: 0.75rem;
}

.search-view-all {
  display: block;
  text-align: center;
  padding: 24px 0 10px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pk-gold);
  transition: color 0.25s ease;
}

.search-view-all:hover {
  color: var(--pk-gold-light);
}

/* ============================================================
   SITEMAP PAGE
   ============================================================ */

.sitemap-section {
  padding: 80px 0 100px;
  background: var(--pk-white);
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px 40px;
}

.sitemap-column {
  position: relative;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--pk-gray-200);
}

.sitemap-heading {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--pk-black);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--pk-gold);
  display: inline-block;
  letter-spacing: 0.02em;
}

.sitemap-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sitemap-list li {
  position: relative;
  padding-left: 18px;
}

.sitemap-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 1px;
  background: var(--pk-gold);
}

.sitemap-list a {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--pk-gray-600);
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  display: inline-block;
}

.sitemap-list a:hover {
  color: var(--pk-gold);
  padding-left: 6px;
}

/* ============================================================
   CONTENT PAGES — Hero, Story, Values, CTA
   ============================================================ */

.content-hero {
  background: var(--pk-off-white);
  padding: 70px 0 60px;
  border-bottom: 1px solid var(--pk-gray-200);
  text-align: center;
}

.content-hero .breadcrumb {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pk-gray-600);
  margin-bottom: 24px;
}

.content-hero .breadcrumb a { color: var(--pk-gray-600); }
.content-hero .breadcrumb a:hover { color: var(--pk-gold); }
.content-hero .breadcrumb span { margin: 0 10px; color: var(--pk-gray-400); }

.content-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

.content-lead {
  font-size: 1rem;
  color: var(--pk-gray-600);
  max-width: 640px;
  margin: 0 auto;
  font-weight: 300;
}

.content-section {
  padding: 80px 0;
  background: var(--pk-white);
}

.content-section.bg-offwhite {
  background: var(--pk-off-white);
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.value-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--pk-white);
  border: 1px solid var(--pk-gray-200);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--pk-gold);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--pk-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.value-icon svg {
  width: 26px;
  height: 26px;
  min-width: 26px;
  min-height: 26px;
  max-width: 26px;
  max-height: 26px;
  stroke: var(--pk-black);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--pk-gray-600);
}

/* CTA band */
.content-cta {
  background: var(--pk-black);
  padding: 70px 0;
  text-align: center;
}

.content-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--pk-white);
  margin-bottom: 14px;
}

.content-cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.content-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   GLOBAL SVG SAFETY NET
   Prevents any SVG from rendering huge if its sizing rule
   is missed or its parent's CSS fails to load.
   ============================================================ */

svg {
  max-width: 100%;
  max-height: 100%;
}

.value-icon svg,
.header-icon svg,
.footer-social svg,
.product-action-btn svg,
.search-close svg,
.back-to-top svg,
.faq-question svg,
.mobile-menu-close svg,
.mobile-nav-toggle svg {
  display: block;
}

/* ============================================================
   RESPONSIVE — All Breakpoints
   ============================================================ */

@media (min-width: 1920px) {
  :root { --container-max: 1600px; }
  .hero-brand { font-size: 6rem; }
}

@media (max-width: 1440px) {
  .container { padding: 0 32px; }
  .primary-nav ul { gap: 26px; }
  .primary-nav a { font-size: 0.68rem; }
}

@media (max-width: 1200px) {
  :root { --header-height: 80px; --space-2xl: 90px; }
  .primary-nav ul { gap: 20px; }
  .primary-nav a { font-size: 0.65rem; letter-spacing: 0.16em; }
  .header-logo img { height: 68px; }
  .mega-menu { padding: 32px 0; }
  .mega-menu-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; }

  .footer-top {
    grid-template-columns: 1.5fr 1.2fr 1fr;
    gap: 40px;
  }

  .footer-col-social {
    grid-column: span 3;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .footer-col-social .footer-social {
    justify-content: flex-start;
  }

  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .header-center { display: none; }
  .header-left { min-width: auto; }
  .header-right { min-width: auto; gap: 16px; }
  .hamburger { display: block; }

  .container { padding: 0 24px; }
  .section { padding: 70px 0; }
  .section-sm { padding: 50px 0; }

  .hero { min-height: 520px; }
  .hero-brand { letter-spacing: 0.1em; }

  .category-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }

  .split-section { grid-template-columns: 1fr; }
  .split-image { aspect-ratio: 16 / 9; }
  .split-content { padding: 60px 32px; }

  .story-grid { grid-template-columns: 1fr; gap: 40px; }

  .values-grid { grid-template-columns: 1fr 1fr; }

  .testimonial-grid { grid-template-columns: 1fr 1fr; gap: 20px; }

  .instagram-grid { grid-template-columns: repeat(3, 1fr); }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-col-social {
    grid-column: span 2;
  }

  .content-section { padding: 60px 0; }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
    --announcement-height: 34px;
    --space-2xl: 64px;
    --space-xl: 48px;
  }

  body { font-size: 14px; }
  .container { padding: 0 20px; }

  .announcement-bar p { font-size: 0.62rem; letter-spacing: 0.16em; }
  .header-logo img { height: 72px; }
  .header-icon { width: 20px; height: 20px; }

  .hero { height: auto; min-height: 78vh; padding: 80px 0; }
  .hero-content { padding: 0 24px; }
  .hero-buttons { flex-direction: column; width: 100%; max-width: 320px; }
  .hero-buttons .btn { width: 100%; }

  .section { padding: 56px 0; }
  .section-header { margin-bottom: 32px; }

  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .values-grid { grid-template-columns: 1fr; gap: 18px; }

  .testimonial-grid { grid-template-columns: 1fr; }

  .newsletter-form { flex-direction: column; border: none; gap: 12px; }
  .newsletter-form input {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 14px 4px;
  }
  .newsletter-form button {
    padding: 14px 24px;
    background: var(--pk-gold);
    color: var(--pk-black);
  }
  .newsletter-form button:hover { color: var(--pk-black); }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .footer-col-brand .footer-tagline { margin: 0 auto 24px; }
  .footer-trust { align-items: center; }
  .footer-col-social { grid-column: span 1; }
  .footer-col-social .footer-social { justify-content: center; }

  .footer-bottom { flex-direction: column; text-align: center; gap: 14px; }
  .footer-legal { justify-content: center; gap: 10px; }

  .back-to-top { right: 18px; bottom: 18px; width: 42px; height: 42px; }

  .content-hero { padding: 50px 0 40px; }
  .content-section { padding: 50px 0; }
  .content-cta-buttons { flex-direction: column; }
  .content-cta-buttons .btn { width: 100%; }
}

@media (max-width: 480px) {
  :root { --header-height: 64px; --space-lg: 32px; --space-xl: 40px; }

  .container { padding: 0 16px; }

  .header-logo img { height: 64px; }
  .header-right { gap: 14px; }
  .header-icon { width: 19px; height: 19px; }

  .hero { min-height: 72vh; padding: 60px 0; }
  .hero-content { padding: 0 18px; }
  .hero-brand { font-size: 2rem; letter-spacing: 0.06em; }
  .hero-tagline { font-size: 0.68rem; letter-spacing: 0.28em; }
  .hero-description { font-size: 0.85rem; margin-bottom: 32px; }
  .btn { padding: 13px 26px; font-size: 0.7rem; letter-spacing: 0.18em; }

  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.55rem; }
  h3 { font-size: 1.25rem; }

  .section { padding: 44px 0; }

  .category-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .product-info { padding: 14px 2px 6px; }
  .product-name { font-size: 1rem; }

  .instagram-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-col-brand .footer-logo { height: 70px; }
  .footer-copyright { font-size: 0.7rem; }
  .footer-legal a { font-size: 0.7rem; }
}

@media (max-width: 375px) {
  body { font-size: 13.5px; }
  .header-logo img { height: 60px; }
  .header-right { gap: 11px; }
  .header-icon { width: 18px; height: 18px; }
  .hero-brand { font-size: 1.7rem; }
  .btn { padding: 12px 22px; font-size: 0.66rem; }
  .container { padding: 0 14px; }
}

/* ============================================================
   MOBILE MENU
   ============================================================ */

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 88%;
  max-width: 400px;
  height: 100vh;
  background: var(--pk-black);
  color: var(--pk-white);
  z-index: 2000;
  overflow-y: auto;
  transition: left 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 28px 26px 40px;
  display: flex;
  flex-direction: column;
}

.mobile-menu.is-open { left: 0; }

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-header img { height: 42px; }

.mobile-menu-close {
  width: 34px;
  height: 34px;
  color: var(--pk-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
}

.mobile-menu-close svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
}

.mobile-menu ul li { border-bottom: 1px solid rgba(255,255,255,0.06); }

.mobile-menu ul li a,
.mobile-menu .mobile-nav-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 0;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pk-white);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--transition-fast);
}

.mobile-menu ul li a:hover,
.mobile-menu .mobile-nav-toggle:hover { color: var(--pk-gold); }

.mobile-nav-toggle svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform var(--transition-base);
}

.mobile-nav-toggle.is-open svg { transform: rotate(180deg); }

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 12px;
}

.mobile-submenu.is-open { max-height: 500px; }

.mobile-submenu a {
  font-size: 0.72rem !important;
  letter-spacing: 0.16em !important;
  padding: 12px 0 !important;
  color: rgba(255,255,255,0.65) !important;
  text-transform: uppercase;
}

.mobile-submenu a:hover { color: var(--pk-gold) !important; }

.mobile-menu-footer {
  margin-top: auto;
  padding-top: 30px;
  display: flex;
  gap: 14px;
}

.mobile-menu-footer a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pk-off-white);
  transition: all var(--transition-base);
}

.mobile-menu-footer a:hover {
  background: var(--pk-gold);
  border-color: var(--pk-gold);
  color: var(--pk-black);
}

.mobile-menu-footer svg {
  width: 15px; height: 15px;
  stroke: currentColor; fill: none;
  stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.mobile-overlay.is-visible { opacity: 1; visibility: visible; }

@media (min-width: 1025px) {
  .mobile-menu,
  .mobile-overlay { display: none !important; }
}