/* ============================================
   LUEUR PATISSERIE — Main Stylesheet
   Clean & Modern Premium Bakery
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&family=Pinyon+Script&display=swap');

/* ---- CSS Variables ---- */
:root {
  --white:       #FFFFFF;
  --off-white:   #FAFAF8;
  --cream:       #F5F0E8;
  --black:       #0F0F0F;
  --dark:        #1A1A1A;
  --mid:         #444444;
  --gray:        #888888;
  --light-gray:  #E8E5E0;
  --border:      #EBEBEB;
  --gold:        #7A8B60;
  --gold-light:  #E6EBD8;
  --gold-dark:   #5A6844;
  --logo-gold:   #C9973A;
  --logo-gold-lt: #E8C56D;
  --error:       #C0392B;
  --success:     #3A7A5A;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --nav-h: 72px;
  --max-w: 1240px;
  --section-pad: 100px 24px;
  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: auto; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
ul { list-style: none; }
input, textarea, select {
  font-family: var(--font-body);
  font-size: 15px;
  width: 100%;
  outline: none;
}

/* ---- Utility ---- */
.container  { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.sr-only    { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

/* ---- Logo Mark (matches real brand logo) ---- */
.logo-mark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  border: 1.5px solid var(--logo-gold);
  padding: 6px 18px 8px;
  text-decoration: none;
  line-height: 1;
  gap: 0;
  position: relative;
  transition: opacity var(--transition);
}
.logo-mark:hover { opacity: 0.82; }
.logo-mark__script {
  font-family: 'Pinyon Script', 'Great Vibes', cursive;
  font-size: 30px;
  color: var(--logo-gold);
  display: block;
  line-height: 1.15;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.logo-mark__rule {
  width: 100%;
  height: 1px;
  background: var(--logo-gold);
  margin: 2px 0 4px;
  display: block;
}
.logo-mark__sub {
  font-family: var(--font-body);
  font-size: 7px;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--logo-gold);
  display: block;
  white-space: nowrap;
  text-indent: 0.38em; /* optical centre for letter-spacing */
}
/* Footer variant — slightly smaller */
.logo-mark--footer .logo-mark__script { font-size: 26px; }
.logo-mark--footer { padding: 5px 16px 7px; }
/* On dark backgrounds the gold still reads well — no change needed */
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav__links a:hover, .nav__links a.active { color: var(--black); }
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }
.nav__cta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 24px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.nav__cta:hover { background: var(--gold); transform: translateY(-1px); }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 8px 0 16px;
}
.nav__mobile a {
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--dark);
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), color var(--transition);
}
.nav__mobile a:hover { background: var(--off-white); color: var(--gold); }
.nav__mobile a:last-child { border-bottom: none; }

/* ============================================
   PAGE OFFSET (below fixed nav)
   ============================================ */
.page-top { padding-top: var(--nav-h); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--off-white);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15,15,15,0.62) 0%, rgba(15,15,15,0.20) 60%, rgba(15,15,15,0) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 80px 24px 80px 72px;
  color: var(--white);
}
.hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero__title em { font-style: italic; color: var(--gold-light); }
.hero__desc {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,151,58,0.35);
}
.btn--dark {
  background: var(--black);
  color: var(--white);
}
.btn--dark:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.6);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn--outline-dark {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}
.btn--outline-dark:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--gold-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn--gold-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
  margin-bottom: 64px;
}
.section-header--center { text-align: center; }
.section-header .eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--black);
}
.section-header h2 em { font-style: italic; }
.section-header .subtitle {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 300;
  color: var(--gray);
  max-width: 520px;
  line-height: 1.7;
}
.section-header--center .subtitle { margin: 16px auto 0; }
.section-divider {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 20px 0;
}
.section-header--center .section-divider { margin: 20px auto; }

/* ============================================
   HOMEPAGE SECTIONS
   ============================================ */

/* -- Intro Strip -- */
.intro-strip {
  background: var(--black);
  padding: 20px 24px;
  overflow: hidden;
}
.intro-strip__track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  animation: marquee 20s linear infinite;
}
.intro-strip__track span { flex-shrink: 0; }
.intro-strip__track .dot { color: var(--gold); }

/* -- Promise Bar -- */
.promise-bar {
  padding: 60px 24px;
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.promise-bar__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.promise-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.promise-item__icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.promise-item__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
}
.promise-item__desc {
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.6;
}

/* -- Featured Products -- */
.featured { padding: var(--section-pad); background: var(--white); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.product-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.product-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.product-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card__img img { transform: scale(1.06); }
.product-card__tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  font-weight: 500;
}
.product-card__tag--gold { background: var(--gold); }
.product-card__body { padding: 22px 24px 26px; }
.product-card__name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.2;
}
.product-card__desc {
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 16px;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-card__price {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
}
.product-card__price span {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray);
  font-family: var(--font-body);
}
.product-card__cta {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}
.product-card:hover .product-card__cta { border-color: var(--gold); }
.featured__footer { text-align: center; }

/* -- About Split -- */
.about-split {
  padding: var(--section-pad);
  background: var(--off-white);
}
.about-split__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-split__img {
  position: relative;
}
.about-split__img-main {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-split__img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-split__img-accent {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 180px; height: 180px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-md);
}
.about-split__img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-split__text { padding: 20px 0; }
.about-split__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 40px 0;
}
.stat-box {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.stat-box__num {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-box__num span { font-size: 22px; color: var(--gold); }
.stat-box__label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 500;
}

/* -- Testimonials -- */
.testimonials {
  padding: var(--section-pad);
  background: var(--black);
  color: var(--white);
}
.testimonials .section-header .eyebrow { color: var(--gold-light); }
.testimonials .section-header h2 { color: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  padding: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: background var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,0.07); }
.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}
.testimonial-card__stars span { color: var(--gold); font-size: 14px; }
.testimonial-card__text {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}
.testimonial-card__author {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}
.testimonial-card__author strong {
  display: block;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  margin-bottom: 2px;
  font-size: 13px;
}

/* -- Instagram Section -- */
.instagram-section {
  padding: var(--section-pad);
  background: var(--white);
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  margin-bottom: 32px;
}
.insta-tile {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
}
.insta-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.insta-tile:hover img { transform: scale(1.08); }
.insta-tile__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.insta-tile:hover .insta-tile__overlay { background: rgba(0,0,0,0.35); }
.insta-tile__overlay svg { opacity: 0; transition: opacity var(--transition); fill: white; width: 28px; }
.insta-tile:hover .insta-tile__overlay svg { opacity: 1; }
.instagram-section__footer { text-align: center; }
.instagram-handle {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}

/* -- CTA Banner -- */
.cta-banner {
  padding: 100px 24px;
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: 'L';
  position: absolute;
  font-family: var(--font-heading);
  font-size: 500px;
  font-weight: 700;
  color: rgba(201,151,58,0.06);
  top: -100px; left: -60px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.cta-banner__inner { position: relative; }
.cta-banner .eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--black);
  max-width: 700px;
  margin: 0 auto 24px;
}
.cta-banner h2 em { font-style: italic; color: var(--gold); }
.cta-banner p {
  font-size: 16px;
  color: var(--gray);
  font-weight: 300;
  max-width: 440px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-banner__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 80px 24px 0;
}
.footer__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: start;
}
.footer__brand { display: flex; flex-direction: column; align-items: flex-start; }
/* legacy selectors kept for safety — logo now uses .logo-mark */
.footer__brand .logo-name,
.footer__brand .logo-sub { display: none; }
.footer__brand p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 320px;
  color: rgba(255,255,255,0.55);
}
.footer__socials {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}
.footer__social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
  text-decoration: none;
}
.footer__social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,151,58,0.1);
}
.footer__col-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }
.footer__contact { display: flex; flex-direction: column; gap: 14px; }
.footer__contact-item { display: flex; gap: 12px; align-items: flex-start; }
.footer__contact-item .icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.footer__contact-item .text { font-size: 13px; font-weight: 300; line-height: 1.5; color: rgba(255,255,255,0.5); }
.footer__contact-item .text strong { color: rgba(255,255,255,0.8); font-weight: 400; }
.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer__bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer__bottom a { color: var(--gold); }

/* ============================================
   MENU PAGE
   ============================================ */
.page-hero {
  padding: 80px 24px 60px;
  background: var(--off-white);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero .eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 600;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero h1 em { font-style: italic; }
.page-hero .subtitle {
  font-size: 16px;
  font-weight: 300;
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Category tabs */
.category-tabs {
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.category-tabs__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.category-tabs__inner::-webkit-scrollbar { display: none; }
.tab-btn {
  padding: 18px 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all var(--transition);
  background: none;
  cursor: pointer;
}
.tab-btn:hover { color: var(--black); }
.tab-btn.active { color: var(--black); border-bottom-color: var(--gold); }

/* Menu section */
.menu-section {
  padding: 80px 24px;
  background: var(--white);
}
.menu-section + .menu-section { padding-top: 0; }
.menu-section__header {
  max-width: var(--max-w);
  margin: 0 auto 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.menu-section__header h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  color: var(--black);
}
.menu-section__header p {
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
  max-width: 360px;
  text-align: right;
  line-height: 1.6;
}
.menu-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ============================================
   ORDER PAGE
   ============================================ */
.order-page { padding: 60px 24px 100px; background: var(--white); }
.order-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 64px;
  align-items: start;
}
.order-form-wrap {}
.order-form-wrap h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}
.order-form-wrap .form-subtitle {
  font-size: 15px;
  color: var(--gray);
  font-weight: 300;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Form Styles */
.form-group { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-label .req { color: var(--gold); margin-left: 3px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--off-white);
  font-size: 15px;
  color: var(--dark);
  font-weight: 300;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,151,58,0.12);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-hint { font-size: 12px; color: var(--gray); margin-top: 6px; font-weight: 300; }
.form-radio-group { display: flex; flex-wrap: wrap; gap: 10px; }
.form-radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 13px;
  font-weight: 400;
  color: var(--mid);
}
.form-radio input { display: none; }
.form-radio:has(input:checked),
.form-radio.selected {
  border-color: var(--gold);
  background: var(--gold-light);
  color: var(--black);
  font-weight: 500;
}
.form-radio:hover { border-color: var(--gold); }
.form-submit {
  width: 100%;
  padding: 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  margin-top: 8px;
  transition: all var(--transition);
}
.form-submit:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,151,58,0.3);
}
.form-success {
  display: none;
  text-align: center;
  padding: 48px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.form-success .success-icon { font-size: 48px; margin-bottom: 16px; }
.form-success h3 { font-family: var(--font-heading); font-size: 28px; font-weight: 600; color: var(--black); margin-bottom: 12px; }
.form-success p { font-size: 15px; color: var(--gray); font-weight: 300; }

/* Order Sidebar */
.order-sidebar { position: sticky; top: calc(var(--nav-h) + 32px); }
.sidebar-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
}
.sidebar-card__img { aspect-ratio: 4/3; overflow: hidden; }
.sidebar-card__img img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-card__body { padding: 28px; }
.sidebar-card__body h3 { font-family: var(--font-heading); font-size: 22px; font-weight: 600; color: var(--black); margin-bottom: 12px; }
.sidebar-card__body ul { display: flex; flex-direction: column; gap: 10px; }
.sidebar-card__body ul li { font-size: 14px; color: var(--gray); font-weight: 300; display: flex; gap: 10px; align-items: flex-start; line-height: 1.5; }
.sidebar-card__body ul li .dot { color: var(--gold); flex-shrink: 0; margin-top: 4px; font-size: 10px; }
.contact-quick { background: var(--black); border-radius: var(--radius-lg); padding: 28px; color: rgba(255,255,255,0.7); }
.contact-quick h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 16px; }
.contact-quick p { font-size: 14px; font-weight: 300; line-height: 1.6; margin-bottom: 20px; }
.contact-quick a { display: flex; gap: 10px; align-items: center; padding: 12px 16px; background: rgba(255,255,255,0.06); border-radius: var(--radius); font-size: 14px; font-weight: 400; color: var(--white); margin-bottom: 10px; transition: background var(--transition); text-decoration: none; }
.contact-quick a:hover { background: rgba(201,151,58,0.2); color: var(--gold); }

/* ============================================
   B2B PAGE
   ============================================ */
.b2b-hero {
  padding: 100px 24px 80px;
  background: var(--black);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.b2b-hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201,151,58,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.b2b-hero .eyebrow { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 500; color: var(--gold); margin-bottom: 16px; display: block; }
.b2b-hero h1 { font-family: var(--font-heading); font-size: clamp(44px, 6vw, 72px); font-weight: 600; line-height: 1.1; margin-bottom: 20px; }
.b2b-hero h1 em { font-style: italic; color: var(--gold-light); }
.b2b-hero p { font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto 40px; line-height: 1.7; }
.b2b-hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.b2b-logos {
  padding: 48px 24px;
  background: var(--cream);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.b2b-logos__label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; color: var(--gray); margin-bottom: 28px; }
.b2b-logos__row { display: flex; gap: 48px; align-items: center; justify-content: center; flex-wrap: wrap; }
.b2b-logos__item { font-family: var(--font-heading); font-size: 20px; font-weight: 600; color: var(--light-gray); letter-spacing: 0.08em; text-transform: uppercase; }

.b2b-offerings { padding: var(--section-pad); background: var(--white); }
.offerings-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.offering-card {
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  cursor: default;
}
.offering-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}
.offering-card__icon { font-size: 36px; margin-bottom: 20px; }
.offering-card__title { font-family: var(--font-heading); font-size: 24px; font-weight: 600; color: var(--black); margin-bottom: 12px; }
.offering-card__desc { font-size: 14px; color: var(--gray); font-weight: 300; line-height: 1.7; margin-bottom: 20px; }
.offering-card__list { display: flex; flex-direction: column; gap: 8px; }
.offering-card__list li { font-size: 13px; color: var(--mid); display: flex; gap: 8px; align-items: flex-start; }
.offering-card__list li::before { content: '—'; color: var(--gold); flex-shrink: 0; }

.b2b-process { padding: var(--section-pad); background: var(--off-white); }
.process-steps {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 1px;
  background: var(--border);
}
.process-step { text-align: center; position: relative; }
.process-step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.process-step__title { font-family: var(--font-heading); font-size: 20px; font-weight: 600; color: var(--black); margin-bottom: 8px; }
.process-step__desc { font-size: 13px; color: var(--gray); font-weight: 300; line-height: 1.6; }

.b2b-form-section { padding: var(--section-pad); background: var(--white); }
.b2b-form-layout { max-width: 800px; margin: 0 auto; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-page { overflow: hidden; }
.story-section { padding: var(--section-pad); background: var(--white); }
.story-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-text {}
.story-text p { font-size: 16px; font-weight: 300; color: var(--mid); line-height: 1.8; margin-bottom: 20px; }
.story-images { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.story-img { border-radius: var(--radius-lg); overflow: hidden; }
.story-img:first-child { grid-row: span 2; }
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-img:first-child { aspect-ratio: 2/3; }
.story-img:not(:first-child) { aspect-ratio: 4/3; }

.values-section { padding: var(--section-pad); background: var(--off-white); }
.values-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.value-card { padding: 40px 32px; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); }
.value-card__icon { font-size: 40px; margin-bottom: 20px; }
.value-card__title { font-family: var(--font-heading); font-size: 26px; font-weight: 600; color: var(--black); margin-bottom: 12px; }
.value-card__desc { font-size: 14px; color: var(--gray); font-weight: 300; line-height: 1.7; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: span 2; }   /* brand takes full width on medium screens */
  .about-split__grid { gap: 48px; }
}

@media (max-width: 900px) {
  :root { --section-pad: 72px 24px; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .products-grid, .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .about-split__grid, .story-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-split__img-accent { display: none; }
  .promise-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .offerings-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .order-layout { grid-template-columns: 1fr; }
  .order-sidebar { position: static; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  :root { --nav-h: 64px; --section-pad: 60px 20px; }
  .hero__content { padding: 60px 20px; }
  .products-grid, .menu-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .about-split__stats, .values-grid { grid-template-columns: 1fr; }
  .promise-bar__grid { grid-template-columns: 1fr; }
  .offerings-grid, .process-steps { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 8px; }
  .form-row { grid-template-columns: 1fr; }
  .menu-section__header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .menu-section__header p { text-align: left; }
  .b2b-logos__row { gap: 24px; }
  .hero__actions { flex-direction: column; }
}

/* ============================================
   PREMIUM UPGRADE V2 — High-end visual layer
   ============================================ */

/* -- Refined Google Font (add weight 700) -- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600;1,700&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* ---- Keyframes ---- */
@keyframes orbFloat1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(70px,50px) scale(1.12); }
  66%      { transform: translate(-40px,90px) scale(0.92); }
}
@keyframes orbFloat2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-90px,-70px) scale(1.18); }
}
@keyframes orbFloat3 {
  0%,100% { transform: translate(-50%,-50%) scale(1); }
  40%     { transform: translate(-43%,-57%) scale(1.22); }
  70%     { transform: translate(-57%,-43%) scale(0.88); }
}
@keyframes gradientShift {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}
@keyframes scrollPulse {
  0%,100% { transform: translateY(0); opacity: 1; }
  50%     { transform: translateY(8px); opacity: 0.4; }
}
@keyframes badgePop {
  from { opacity:0; transform: translateX(20px) scale(0.9); }
  to   { opacity:1; transform: translateX(0) scale(1); }
}
@keyframes shimmer {
  from { background-position: -200% center; }
  to   { background-position: 200% center; }
}

/* ---- Hero — full redesign ---- */
.hero {
  min-height: 100vh;
  background: #080808;
  position: relative;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero__orb--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,151,58,0.22) 0%, transparent 65%);
  top: -180px; left: -220px;
  filter: blur(60px);
  animation: orbFloat1 14s ease-in-out infinite;
}
.hero__orb--2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(122,139,96,0.18) 0%, transparent 65%);
  bottom: -120px; right: -150px;
  filter: blur(70px);
  animation: orbFloat2 18s ease-in-out infinite;
}
.hero__orb--3 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,151,58,0.10) 0%, transparent 60%);
  top: 45%; left: 55%;
  filter: blur(80px);
  animation: orbFloat3 22s ease-in-out infinite;
}
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px;
}
.hero__overlay {
  background: linear-gradient(
    110deg,
    rgba(8,8,8,0.82) 0%,
    rgba(8,8,8,0.55) 45%,
    rgba(8,8,8,0.15) 100%
  );
}
.hero__content {
  z-index: 2;
  padding: 100px 24px 100px 80px;
  max-width: 680px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: rgba(201,151,58,0.9);
  margin-bottom: 28px;
  padding: 8px 18px;
  border: 1px solid rgba(201,151,58,0.25);
  border-radius: 40px;
  backdrop-filter: blur(10px);
  background: rgba(201,151,58,0.06);
}
.hero__title {
  font-size: clamp(62px, 8.5vw, 112px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(135deg, #E8C56D 0%, #C9973A 50%, #E8C56D 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
.hero__desc {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  max-width: 460px;
  margin-bottom: 48px;
}
.hero__actions {
  gap: 20px;
  margin-bottom: 64px;
}
/* Premium primary button */
.hero__actions .btn--primary {
  background: linear-gradient(135deg, #C9973A 0%, #a87a2a 100%);
  box-shadow: 0 0 40px rgba(201,151,58,0.3);
  border: 1px solid rgba(201,151,58,0.4);
  padding: 16px 36px;
  font-size: 12px;
  letter-spacing: 0.16em;
}
.hero__actions .btn--primary:hover {
  box-shadow: 0 0 60px rgba(201,151,58,0.5);
  transform: translateY(-3px);
}
.hero__actions .btn--outline {
  border-color: rgba(255,255,255,0.22);
  padding: 16px 36px;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.05);
}
.hero__actions .btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.5);
}
/* Scroll hint */
.hero__scroll-hint {
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s forwards;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero__scroll-text {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
}
/* Rating badge */
.hero__badge {
  position: absolute;
  right: 80px;
  bottom: 80px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  opacity: 0;
  animation: badgePop 0.8s 1.4s forwards;
}
.hero__badge-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.hero__badge-star {
  font-size: 16px;
  color: #E8C56D;
  line-height: 1;
}
.hero__badge-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

/* ---- Marquee strip — premium dark ---- */
.intro-strip {
  background: #0d0d0d;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 22px 0;
}
.intro-strip__track {
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.22em;
  animation: marquee 24s linear infinite;
}
.intro-strip__track .dot { color: rgba(201,151,58,0.7); }

/* ---- Promise bar — glassmorphism on dark ---- */
.promise-bar {
  background: #0d0d0d;
  border-top: none;
  border-bottom: none;
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}
.promise-bar::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(201,151,58,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.promise-bar__grid {
  gap: 20px;
  position: relative;
  z-index: 1;
}
.promise-item {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 44px 32px;
  align-items: flex-start;
  text-align: left;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
}
.promise-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,151,58,0.4), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.promise-item:hover::before { opacity: 1; }
.promise-item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,151,58,0.2);
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,151,58,0.1);
}
.promise-item__icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(201,151,58,0.15), rgba(201,151,58,0.04));
  border: 1px solid rgba(201,151,58,0.25);
  border-radius: 14px;
  font-size: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promise-item__title {
  color: rgba(255,255,255,0.92);
  font-size: 20px;
  font-weight: 600;
}
.promise-item__desc {
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  line-height: 1.65;
}

/* ---- Featured section — premium cards ---- */
.featured {
  background: #f8f6f3;
  padding: 120px 24px;
}
.section-header h2 {
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.section-header h2 em {
  font-style: italic;
  font-weight: 300;
}
.product-card {
  background: var(--white);
  border: none;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: all 0.5s cubic-bezier(0.23,1,0.32,1);
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.14);
}
.product-card__img {
  aspect-ratio: 5/4;
  border-radius: 20px 20px 0 0;
}
.product-card__img img {
  border-radius: 20px 20px 0 0;
  transition: transform 0.7s cubic-bezier(0.23,1,0.32,1);
}
.product-card:hover .product-card__img img { transform: scale(1.07); }
.product-card__tag {
  font-size: 9px;
  letter-spacing: 0.18em;
  padding: 6px 14px;
  border-radius: 40px;
  border: none;
}
.product-card__tag--gold {
  background: linear-gradient(135deg, #C9973A, #a87a2a);
  color: white;
}
.product-card__body { padding: 26px 28px 30px; }
.product-card__name {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.product-card__price {
  font-size: 22px;
  font-weight: 600;
}
.product-card__cta {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--logo-gold);
  padding: 8px 18px;
  border: 1px solid rgba(201,151,58,0.3);
  border-radius: 40px;
  transition: all 0.3s ease;
}
.product-card:hover .product-card__cta {
  background: var(--logo-gold);
  color: white;
  border-color: var(--logo-gold);
}

/* ---- About split — premium stats ---- */
.stat-box {
  background: var(--white);
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.stat-box__num { font-size: 48px; font-weight: 600; letter-spacing: -0.02em; }

/* ---- Testimonials — richer glassmorphism ---- */
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 40px 36px;
  transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; left: 24px;
  font-family: var(--font-heading);
  font-size: 120px;
  color: rgba(201,151,58,0.08);
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,151,58,0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.testimonial-card__text {
  font-size: 19px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.testimonial-card__stars span { font-size: 16px; }

/* ---- CTA Banner — dark luxury ---- */
.cta-banner {
  background: #080808;
  padding: 140px 24px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(201,151,58,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner::after {
  content: 'Lueur';
  position: absolute;
  font-family: var(--font-heading);
  font-size: 380px;
  font-weight: 700;
  color: rgba(255,255,255,0.02);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.04em;
}
.cta-banner .eyebrow { color: rgba(201,151,58,0.8); }
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.cta-banner h2 em {
  font-style: italic;
  font-weight: 300;
  color: #E8C56D;
}
.cta-banner p {
  color: rgba(255,255,255,0.5);
  font-size: 17px;
}
.cta-banner .btn--primary {
  background: linear-gradient(135deg, #C9973A, #a87a2a);
  box-shadow: 0 0 40px rgba(201,151,58,0.3);
  padding: 16px 40px;
  font-size: 12px;
  letter-spacing: 0.16em;
}
.cta-banner .btn--primary:hover {
  box-shadow: 0 0 70px rgba(201,151,58,0.5);
  transform: translateY(-3px);
}
.cta-banner .btn--outline-dark {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.2);
  padding: 16px 40px;
}
.cta-banner .btn--outline-dark:hover {
  background: rgba(255,255,255,0.08);
  color: white;
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-3px);
}

/* ---- Navigation — more premium ---- */
.nav {
  background: rgba(8,8,8,0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(8,8,8,0.92);
  border-bottom-color: rgba(255,255,255,0.08);
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.nav__links a {
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
}
.nav__links a:hover, .nav__links a.active { color: rgba(255,255,255,0.95); }
.nav__links a::after { background: var(--logo-gold); }
.nav__cta {
  background: linear-gradient(135deg, #C9973A, #a87a2a);
  color: white;
  border-radius: 40px;
  padding: 10px 26px;
  box-shadow: 0 0 20px rgba(201,151,58,0.2);
}
.nav__cta:hover {
  background: linear-gradient(135deg, #E8C56D, #C9973A);
  box-shadow: 0 0 36px rgba(201,151,58,0.4);
  transform: translateY(-1px);
}
/* Logo on dark nav */
.nav .logo-mark {
  border-color: rgba(201,151,58,0.5);
}
.nav .logo-mark__script,
.nav .logo-mark__rule,
.nav .logo-mark__sub {
  color: rgba(201,151,58,0.9);
}
.nav .logo-mark__rule { background: rgba(201,151,58,0.5); }

/* ---- Section headers — premium typography ---- */
.section-header .eyebrow {
  letter-spacing: 0.28em;
  font-size: 10px;
}
.section-divider {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--logo-gold), transparent);
}

/* ---- Enhanced fade-up animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.23,1,0.32,1),
              transform 0.8s cubic-bezier(0.23,1,0.32,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.12s; }
.fade-up-delay-2 { transition-delay: 0.24s; }
.fade-up-delay-3 { transition-delay: 0.36s; }
.fade-up-delay-4 { transition-delay: 0.48s; }

/* ---- Responsive fixes for premium additions ---- */
@media (max-width: 900px) {
  .hero__badge { right: 24px; bottom: 40px; }
  .hero__content { padding: 80px 24px; }
  .promise-item { padding: 32px 24px; border-radius: 16px; }
}
@media (max-width: 600px) {
  .hero__badge { display: none; }
  .hero__scroll-hint { display: none; }
  .hero__eyebrow { font-size: 9px; letter-spacing: 0.2em; }
  .promise-item { align-items: center; text-align: center; }
  .cta-banner { padding: 100px 24px; }
  .nav { background: rgba(8,8,8,0.95); }
}
