/* ==========================================================================
   FASHIONFLAIR.LIVE - DESIGN SYSTEM & BESPOKE STYLESHEET (v4.0 MASTER)
   Theme: Luxury Haute Couture & Fashion Accessories
   Color Palette: Deep Emerald Teal (#0C5A54), Accent Coral (#FF6B53), Gold (#E5A93C)
   Typography: Plus Jakarta Sans (Headings) + Inter (Body)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & ROOT VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Color System */
  --clr-bg-dark: #073531;
  --clr-primary-teal: #0C5A54;
  --clr-primary-light: #127A72;
  --clr-accent-coral: #FF6B53;
  --clr-accent-coral-hover: #E5543D;
  --clr-accent-gold: #E5A93C;
  --clr-cream-bg: #F4FAF8;
  --clr-mint-bg: #E4F4EF;
  --clr-white: #FFFFFF;
  --clr-card-border: rgba(12, 90, 84, 0.12);
  --clr-text-dark: #0D2623;
  --clr-text-muted: #4A6360;
  --clr-text-light: #E0F2EF;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Elevation & Shadows */
  --shadow-sm: 0 4px 12px rgba(12, 90, 84, 0.06);
  --shadow-md: 0 12px 32px rgba(12, 90, 84, 0.12);
  --shadow-lg: 0 24px 48px rgba(7, 53, 49, 0.18);
  --shadow-glow: 0 0 24px rgba(255, 107, 83, 0.35);

  /* Glassmorphism */
  --glass-bg-dark: rgba(7, 53, 49, 0.88);
  --glass-bg-light: rgba(255, 255, 255, 0.92);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-blur: blur(16px);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-max-width: 1240px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 9999px;
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--clr-cream-bg);
  color: var(--clr-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Container Utility */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(135deg, var(--clr-accent-coral) 0%, var(--clr-accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Price & Badge Helpers */
.price-tag-gold {
  background: linear-gradient(135deg, var(--clr-accent-gold), #C88E29);
  color: var(--clr-white);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(229, 169, 60, 0.3);
}

.gold-badge-highlight {
  display: inline-block;
  font-weight: 700;
  color: var(--clr-accent-coral);
  font-size: 0.85rem;
  margin-top: 0.5rem;
  background: rgba(255, 107, 83, 0.08);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 107, 83, 0.2);
}

/* --------------------------------------------------------------------------
   3. HEADER & NAVIGATION (GLASSMORPHIC STICKY)
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--glass-bg-dark);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.85rem 0;
  transition: var(--transition-normal);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 44px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--clr-accent-coral), var(--clr-accent-gold));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--clr-white);
  letter-spacing: -0.03em;
}

.logo-text span {
  color: var(--clr-accent-coral);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  color: var(--clr-text-light);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-link:hover {
  color: var(--clr-accent-coral);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Button System (Touch Target Compliant >= 44px) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  min-width: 44px;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
  text-decoration: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-accent-coral) 0%, var(--clr-accent-coral-hover) 100%);
  color: var(--clr-white);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 83, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--clr-white);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.hamburger-btn {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: var(--clr-white);
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  z-index: 1200;
  position: relative;
}

.hamburger-btn svg {
  width: 24px;
  height: 24px;
  pointer-events: none;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--clr-bg-dark);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  padding: 2rem 1.5rem;
}

.mobile-nav-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-link {
  color: var(--clr-white);
  font-size: 1.3rem;
  font-weight: 700;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   4. HERO SECTION (ASYMMETRIC 55/45 SPLIT)
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 70% 30%, #0F6E67 0%, var(--clr-bg-dark) 75%);
  padding-top: 120px;
  padding-bottom: 70px;
  overflow: hidden;
  color: var(--clr-white);
}

.hero-bg-orb {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 83, 0.2) 0%, rgba(0,0,0,0) 70%);
  top: -50px;
  right: -50px;
  pointer-events: none;
  filter: blur(40px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-accent-gold);
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
}

.hero-pill-badge .dot {
  width: 8px;
  height: 8px;
  background-color: var(--clr-accent-coral);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--clr-accent-coral);
}

.hero-title {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 1.1rem;
  line-height: 1.18;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--clr-text-light);
  margin-bottom: 2rem;
  max-width: 540px;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
  width: 100%;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
}

.stat-item h4 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: var(--clr-white);
  margin-bottom: 0.1rem;
}

.stat-item p {
  font-size: 0.78rem;
  color: var(--clr-text-light);
  line-height: 1.3;
}

/* Hero Visual Showcase & Badges Row */
.hero-visual-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-normal);
  width: 100%;
}

.hero-image-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Integrated Badges Row Below Image */
.hero-glass-badges-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  width: 100%;
  margin-top: 1rem;
}

.glass-badge-pill {
  background: var(--glass-bg-light);
  color: var(--clr-text-dark);
  backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.badge-icon-sm {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--clr-mint-bg);
  color: var(--clr-primary-teal);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}

.badge-text-sm strong {
  display: block;
  font-size: 0.8rem;
  color: var(--clr-text-dark);
  line-height: 1.2;
}

.badge-text-sm span {
  font-size: 0.7rem;
  color: var(--clr-text-muted);
}

/* --------------------------------------------------------------------------
   5. SECTION 1: ASYMMETRIC BENTO GRID (CATEGORY SHOWCASE)
   -------------------------------------------------------------------------- */
.bento-section {
  padding: 70px 0;
  background-color: var(--clr-cream-bg);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-accent-coral);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  color: var(--clr-text-dark);
  margin-bottom: 0.85rem;
}

.section-desc {
  color: var(--clr-text-muted);
  font-size: 1rem;
}

/* Bento Layout */
.bento-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.bento-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-primary-teal);
}

.bento-card-main {
  grid-row: span 2;
  justify-content: space-between;
}

.bento-img-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: var(--clr-mint-bg);
}

.bento-img-wrapper img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.bento-card-content h3 {
  font-size: 1.35rem;
  color: var(--clr-text-dark);
  margin-bottom: 0.4rem;
}

.bento-card-content p {
  color: var(--clr-text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}

.bento-card-stat {
  background: linear-gradient(135deg, var(--clr-primary-teal), var(--clr-bg-dark));
  color: var(--clr-white);
  justify-content: center;
}

.bento-card-stat h3 {
  color: var(--clr-accent-gold);
  font-size: 2.5rem;
  margin-bottom: 0.4rem;
}

.bento-card-stat p {
  color: var(--clr-text-light);
  font-size: 0.98rem;
}

/* --------------------------------------------------------------------------
   6. SECTION 2: DUAL-COLOR OVERLAPPING PROMO BANNER
   -------------------------------------------------------------------------- */
.promo-section {
  padding: 50px 0 70px 0;
}

.promo-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.promo-left {
  background: linear-gradient(135deg, var(--clr-accent-coral) 0%, #E54C35 100%);
  color: var(--clr-white);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-left h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  margin-bottom: 1rem;
}

.promo-left p {
  font-size: 1rem;
  margin-bottom: 1.75rem;
  opacity: 0.95;
}

.promo-right {
  background: linear-gradient(135deg, var(--clr-primary-teal) 0%, var(--clr-bg-dark) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  min-height: 320px;
}

.promo-right img {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* --------------------------------------------------------------------------
   7. SECTION 3: CRAFTSMANSHIP & ATELIER (REVERSE ASYMMETRIC)
   -------------------------------------------------------------------------- */
.craft-section {
  padding: 70px 0;
  background-color: var(--clr-mint-bg);
}

.craft-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.craft-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--clr-white);
}

.craft-image-frame img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.craft-details h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  color: var(--clr-text-dark);
  margin-bottom: 1rem;
}

.craft-details p {
  color: var(--clr-text-muted);
  font-size: 1rem;
  margin-bottom: 1.75rem;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.feature-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--clr-white);
  color: var(--clr-primary-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
  font-size: 0.85rem;
}

.feature-text h4 {
  font-size: 1.05rem;
  color: var(--clr-text-dark);
  margin-bottom: 0.15rem;
}

.feature-text p {
  font-size: 0.88rem;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   8. SECTION 4: TESTIMONIAL MATRIX & SOCIAL PROOF
   -------------------------------------------------------------------------- */
.reviews-section {
  padding: 70px 0;
  background-color: var(--clr-cream-bg);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: stretch;
}

.review-stat-card {
  background: linear-gradient(135deg, var(--clr-primary-teal) 0%, var(--clr-bg-dark) 100%);
  color: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.review-stat-card h3 {
  font-size: 3.5rem;
  color: var(--clr-accent-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.review-stat-card p {
  font-size: 1rem;
  color: var(--clr-text-light);
}

.reviews-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.review-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars-row {
  color: var(--clr-accent-gold);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.review-quote {
  font-size: 0.9rem;
  color: var(--clr-text-dark);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-user img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.user-info strong {
  display: block;
  font-size: 0.85rem;
  color: var(--clr-text-dark);
}

.user-info span {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
}

/* --------------------------------------------------------------------------
   9. INTERACTIVE ACCORDION (FAQ)
   -------------------------------------------------------------------------- */
.faq-section {
  padding: 70px 0;
  background-color: var(--clr-mint-bg);
}

.accordion-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.accordion-item {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-card-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  width: 100%;
  padding: 1.1rem 1.25rem;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--clr-text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 50px;
}

.accordion-icon {
  width: 22px;
  height: 22px;
  transition: transform var(--transition-fast);
}

.accordion-item.is-open .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
  padding: 0 1.25rem;
  color: var(--clr-text-muted);
  font-size: 0.9rem;
}

.accordion-item.is-open .accordion-content {
  padding: 0 1.25rem 1.25rem 1.25rem;
}

/* --------------------------------------------------------------------------
   10. FOOTER & GOOGLE ADS LEGAL COMPLIANCE (RO LOCALE)
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--clr-bg-dark);
  color: var(--clr-text-light);
  padding: 65px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  color: var(--clr-text-light);
  font-size: 0.88rem;
  margin-top: 0.85rem;
  margin-bottom: 1.25rem;
  opacity: 0.85;
}

.footer-legal-entity {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--clr-accent-gold);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
  font-size: 1.05rem;
  color: var(--clr-white);
  margin-bottom: 1.1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a, .modal-trigger-btn {
  color: var(--clr-text-light);
  font-size: 0.88rem;
  transition: var(--transition-fast);
  background: none;
  border: none;
  padding: 0.35rem 0;
  cursor: pointer;
  text-align: left;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover, .modal-trigger-btn:hover {
  color: var(--clr-accent-coral);
}

.anpc-badges {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.anpc-badge-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--clr-white);
  min-height: 44px;
  min-width: 44px;
}

.anpc-badge-link:hover {
  background: rgba(255, 255, 255, 0.18);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

/* --------------------------------------------------------------------------
   11. INTERACTIVE LEGAL MODALS
   -------------------------------------------------------------------------- */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7, 53, 49, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--clr-white);
  color: var(--clr-text-dark);
  width: 100%;
  max-width: 760px;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.modal-header {
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--clr-card-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--clr-cream-bg);
}

.modal-header h3 {
  font-size: 1.25rem;
  color: var(--clr-primary-teal);
}

.modal-close-btn {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-dark);
}

.modal-body {
  padding: 1.75rem;
  overflow-y: auto;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--clr-text-dark);
}

.modal-body h4 {
  margin-top: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--clr-primary-teal);
}

/* --------------------------------------------------------------------------
   12. HIGH-END MOBILE RESPONSIVE REFACTORED STYLES (< 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-card-main {
    grid-row: auto;
  }
  .promo-banner {
    grid-template-columns: 1fr;
  }
  .craft-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* Navigation Refactoring */
  .nav-desktop {
    display: none;
  }
  .header-actions .btn {
    display: none; /* Hide header text button on mobile for sleek clean header */
  }
  .hamburger-btn {
    display: flex;
  }

  /* Hero Mobile Refactoring */
  .hero-section {
    padding-top: 95px;
    padding-bottom: 50px;
  }
  .hero-title {
    font-size: 2.1rem;
    line-height: 1.2;
  }
  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  .hero-cta-group .btn {
    width: 100%;
  }

  /* Stats row mobile */
  .hero-stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    text-align: center;
    padding-top: 1rem;
  }
  .stat-item h4 {
    font-size: 1.25rem;
  }
  .stat-item p {
    font-size: 0.72rem;
  }

  /* Hero Glass Badges Row */
  .hero-glass-badges-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  /* Bento Grid Mobile */
  .bento-section {
    padding: 50px 0;
  }
  .bento-img-wrapper img {
    height: 220px;
  }
  .bento-card {
    padding: 1.5rem;
    border-radius: var(--radius-md);
  }
  .bento-card-stat h3 {
    font-size: 2.2rem;
  }

  /* Promo Section Mobile */
  .promo-section {
    padding: 40px 0;
  }
  .promo-left {
    padding: 2.25rem 1.5rem;
  }
  .promo-right {
    padding: 1.25rem;
    min-height: 260px;
  }
  .promo-right img {
    max-width: 100%;
  }

  /* Craftsmanship Mobile */
  .craft-section {
    padding: 50px 0;
  }
  .craft-image-frame img {
    height: 260px;
  }

  /* Reviews & Testimonials Mobile */
  .reviews-section {
    padding: 50px 0;
  }
  .reviews-cards-grid {
    grid-template-columns: 1fr;
  }
  .review-stat-card {
    padding: 2rem 1.25rem;
  }
  .review-stat-card h3 {
    font-size: 3rem;
  }

  /* FAQ Mobile */
  .faq-section {
    padding: 50px 0;
  }

  /* Footer Mobile */
  .site-footer {
    padding: 50px 0 25px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}
