/* ==========================================================
   Lumière Cosméticos · B2B Skincare
   Design tokens
   ========================================================== */
:root {
  --bg: #faf6f0;
  --bg-alt: #f3ece1;
  --bg-deep: #1a1814;
  --ink: #1a1814;
  --ink-soft: #4a443c;
  --ink-mute: #8a8278;
  --line: #e6dccb;
  --line-strong: #d6c9b1;
  --gold: #b8915a;
  --gold-soft: #d6b985;
  --gold-deep: #8a6a3c;
  --accent: #c97361;        /* soft coral — for whitening theme */
  --accent-soft: #f1d5cd;
  --rose: #e9c9b8;
  --leaf: #5a6a4f;
  --white: #ffffff;
  --shadow: 0 10px 30px -12px rgba(40, 30, 20, 0.18);
  --shadow-lg: 0 30px 60px -20px rgba(40, 30, 20, 0.25);
  --radius: 14px;
  --radius-lg: 22px;
  --transition: .35s cubic-bezier(.2,.7,.2,1);
  --container: 1240px;
}

/* ==========================================================
   Reset & base
   ========================================================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-head--light { color: var(--white); }
.section-head--light .section-title,
.section-head--light .section-lead { color: var(--white); }
.section-head--light .eyebrow { color: var(--gold-soft); }

.section-title {
  font-size: clamp(32px, 4.5vw, 52px);
  margin-bottom: 18px;
}
.section-lead {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ==========================================================
   Buttons
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn--primary {
  background: var(--ink);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--light {
  background: var(--white);
  color: var(--ink);
}
.btn--light:hover {
  background: var(--bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn--lg { padding: 17px 32px; font-size: 15px; }
.btn--block { width: 100%; }

/* ==========================================================
   Top bar
   ========================================================== */
.topbar {
  background: var(--bg-deep);
  color: var(--bg);
  font-size: 13px;
  padding: 10px 0;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.topbar__left, .topbar__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar__item { color: rgba(250, 246, 240, 0.85); }
.topbar__badge {
  padding: 4px 12px;
  background: rgba(216, 185, 133, 0.15);
  color: var(--gold-soft);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.lang-select {
  background: transparent;
  color: var(--bg);
  border: 1px solid rgba(250, 246, 240, 0.3);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}
.lang-select option { color: var(--ink); }

/* ==========================================================
   Header
   ========================================================== */
.header {
  position: sticky;
  top: 0;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
  transition: all var(--transition);
}
.header--scrolled {
  background: rgba(250, 246, 240, 0.98);
  box-shadow: 0 4px 20px -10px rgba(40, 30, 20, 0.15);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 18px 32px;
  max-width: var(--container);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--gold-soft);
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  border-radius: 50%;
  position: relative;
  letter-spacing: -0.04em;
}
.logo__mark::after {
  content: '';
  position: absolute;
  inset: -3px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.5;
}
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.logo__sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav {
  display: flex;
  gap: 4px;
}
.nav__link {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 8px;
  position: relative;
  transition: color var(--transition);
}
.nav__link:hover { color: var(--ink); }
.nav__link--active { color: var(--ink); font-weight: 600; }
.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.header__cta { padding: 11px 22px; font-size: 13px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
  transition: all var(--transition);
}
.hamburger--open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger--open span:nth-child(2) { opacity: 0; }
.hamburger--open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==========================================================
   Hero
   ========================================================== */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(216, 185, 133, 0.25), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(241, 213, 205, 0.4), transparent 50%);
  z-index: -1;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__content { max-width: 600px; }
.hero__title {
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 500;
}
.hero__lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 36px;
}
.hero__lead strong {
  color: var(--ink);
  font-weight: 600;
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.stat { display: flex; flex-direction: column; }
.stat__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--gold-deep);
  line-height: 1;
}
.stat__label {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Hero visual */
.hero__visual {
  position: relative;
  height: 540px;
}
.hero__card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.hero__card--lg {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #fff, #faf3e6);
}
.hero__card--sm {
  top: -20px;
  right: -30px;
  width: 140px;
  height: 140px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
}
.hero__card--xs {
  bottom: 30px;
  left: -40px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
}

.product-mock {
  position: relative;
  width: 220px;
  height: 360px;
}
.product-mock__bottle {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 280px;
  background: linear-gradient(180deg, #f8f1e3 0%, #e9d5b5 50%, #c9a16e 100%);
  border-radius: 30px 30px 50px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.1), 0 20px 40px -20px rgba(40,30,20,0.3);
}
.product-mock__cap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 70px;
  background: linear-gradient(180deg, #2a2620, #1a1814);
  border-radius: 12px 12px 0 0;
  z-index: 2;
}
.product-mock__cap::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 12px;
  background: var(--gold);
  border-radius: 0 0 4px 4px;
}
.product-mock__shine {
  position: absolute;
  top: 80px;
  left: 20px;
  width: 25px;
  height: 180px;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), transparent);
  border-radius: 12px;
  filter: blur(2px);
}
.product-mock__label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--ink);
  margin-top: 20px;
}
.product-mock__sub {
  font-size: 10px;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
  margin-top: 8px;
  line-height: 1.4;
}

.product-mock__tag {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: var(--ink);
  color: var(--gold-soft);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 999px;
}

.badge-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
  position: relative;
}
.badge-circle::after {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px dashed var(--gold-soft);
  border-radius: 50%;
  opacity: 0.4;
}

.mini-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mini-stat__icon { font-size: 22px; }
.mini-stat__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.mini-stat__label {
  font-size: 11px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================
   Trust strip
   ========================================================== */
.trust {
  padding: 40px 0;
  background: var(--bg-deep);
  color: var(--bg);
}
.trust__title {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 24px;
  font-weight: 500;
}
.trust__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px 50px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: rgba(250, 246, 240, 0.85);
}

/* ==========================================================
   Categories
   ========================================================== */
.categories { padding: 110px 0; }
.cat-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
}
.cat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.cat-card--feature { background: linear-gradient(160deg, var(--white) 50%, var(--bg-alt)); }
.cat-card__img {
  height: 260px;
  position: relative;
  overflow: hidden;
}
.cat-card__img--white {
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 245, 230, 0.9), transparent 60%),
    linear-gradient(135deg, #f9f0e0, #e8d4b8);
}
.cat-card__img--white::after {
  content: '✨';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  opacity: 0.6;
}
.cat-card__img--cream {
  background:
    radial-gradient(circle at 70% 30%, rgba(245, 235, 220, 0.9), transparent 60%),
    linear-gradient(135deg, #f5ead8, #d9c5a3);
}
.cat-card__img--cream::after {
  content: '🌿';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  opacity: 0.6;
}
.cat-card__body { padding: 38px 38px 42px; }
.cat-card__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--gold-deep);
  letter-spacing: 0.1em;
  font-weight: 600;
}
.cat-card__title {
  font-size: 32px;
  margin: 8px 0 14px;
  font-weight: 600;
}
.cat-card__desc {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 22px;
}
.cat-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}
.cat-card__list li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--ink-soft);
}
.cat-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 1.5px;
  background: var(--gold);
}
.cat-card__cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-deep);
  letter-spacing: 0.04em;
}
.cat-card:hover .cat-card__cta { color: var(--accent); }

/* ==========================================================
   Services
   ========================================================== */
.services {
  padding: 110px 0;
  background: var(--bg-deep);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(216, 185, 133, 0.15), transparent 70%);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.svc-card {
  padding: 36px 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(216, 185, 133, 0.2);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.svc-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
  border-color: var(--gold-soft);
}
.svc-card__icon {
  font-size: 32px;
  margin-bottom: 22px;
  display: inline-block;
}
.svc-card__title {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 600;
}
.svc-card__text {
  color: rgba(250, 246, 240, 0.7);
  font-size: 14.5px;
  line-height: 1.7;
}

/* ==========================================================
   Process
   ========================================================== */
.process { padding: 110px 0; background: var(--bg-alt); }
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50px;
  right: 0;
  width: 100%;
  height: 1px;
  background: var(--line-strong);
}
.step__num {
  display: block;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  line-height: 57px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-deep);
  background: var(--white);
}
.step h4 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}
.step p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ==========================================================
   Certs
   ========================================================== */
.certs { padding: 110px 0; }
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cert {
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--transition);
}
.cert:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.cert span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.cert small {
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

/* ==========================================================
   About
   ========================================================== */
.about { padding: 110px 0; background: var(--bg-alt); }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about__img {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(160deg, rgba(40, 30, 20, 0.1), rgba(40, 30, 20, 0.3)),
    radial-gradient(circle at 30% 30%, var(--gold-soft), var(--gold-deep));
  position: relative;
}
.about__img::before {
  content: '🏭';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 100px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}
.about__floating {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--white);
  padding: 22px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  max-width: 240px;
}
.about__floating strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--gold-deep);
  font-weight: 600;
  line-height: 1;
}
.about__floating span {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.about__content p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about__points {
  margin-top: 30px;
  display: grid;
  gap: 18px;
}
.about__point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 22px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.about__point-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--gold-deep);
  min-width: 70px;
}
.about__point-text {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ==========================================================
   Testimonials
   ========================================================== */
.testi { padding: 110px 0; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.testi-card__quote {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  flex: 1;
  margin-bottom: 24px;
  position: relative;
  padding-top: 20px;
}
.testi-card__quote::before {
  content: '“';
  position: absolute;
  top: -10px;
  left: -8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  color: var(--gold-soft);
  line-height: 1;
}
.testi-card__person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.testi-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 16px;
}
.testi-card__person strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.testi-card__person span {
  font-size: 12.5px;
  color: var(--ink-mute);
}

/* ==========================================================
   CTA band
   ========================================================== */
.cta-band {
  padding: 70px 0;
  background: linear-gradient(120deg, var(--gold-deep) 0%, var(--gold) 60%, var(--accent) 100%);
  color: var(--white);
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band__title {
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 600;
}
.cta-band__sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================
   Contact
   ========================================================== */
.contact { padding: 110px 0; background: var(--bg-alt); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact__info p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 30px;
}
.contact__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact__list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.contact__list strong {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}
.contact__list span,
.contact__list a {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}

.contact__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact__form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  color: var(--ink);
  transition: all var(--transition);
  width: 100%;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: 0;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(184, 145, 90, 0.1);
}
.contact__form textarea { resize: vertical; min-height: 100px; }
.form-check {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px !important;
  font-size: 13px !important;
  color: var(--ink-mute) !important;
}
.form-check input { width: auto; margin-top: 2px; }
.form-msg {
  font-size: 14px;
  text-align: center;
  margin-top: 8px;
  min-height: 20px;
}
.form-msg--ok { color: var(--leaf); }
.form-msg--err { color: var(--accent); }

/* ==========================================================
   Footer
   ========================================================== */
.footer {
  background: var(--bg-deep);
  color: var(--bg);
  padding: 80px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
}
.footer__col .logo .logo__name { color: var(--white); }
.footer__col .logo .logo__sub { color: var(--gold-soft); }
.footer__col p {
  margin-top: 16px;
  color: rgba(250, 246, 240, 0.65);
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}
.footer__col h4 {
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 18px;
}
.footer__col a {
  display: block;
  font-size: 14px;
  color: rgba(250, 246, 240, 0.7);
  padding: 6px 0;
}
.footer__col a:hover { color: var(--gold-soft); }
.footer__bottom {
  border-top: 1px solid rgba(250, 246, 240, 0.1);
  padding: 24px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(250, 246, 240, 0.5);
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================
   Floating CTA
   ========================================================== */
.float-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--ink);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 99;
  transition: all var(--transition);
}
.float-cta:hover {
  background: var(--gold-deep);
  transform: translateY(-3px);
}

/* ==========================================================
   Floating WhatsApp button (right side)
   ========================================================== */
.wa-float {
  position: fixed !important;
  right: 24px !important;
  bottom: 96px !important;
  z-index: 9999 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px;
  text-decoration: none !important;
  font-family: inherit;
  color: inherit;
  background: transparent !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}
.wa-float__bubble {
  background: #fff;
  color: #2a2520;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 6px 20px -6px rgba(0,0,0,0.25);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.wa-float__bubble::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 2px;
}
.wa-float__btn {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  min-height: 56px !important;
  max-width: 56px !important;
  max-height: 56px !important;
  flex: 0 0 56px !important;
  border-radius: 50% !important;
  background: #25d366 !important;
  color: #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 8px 24px -6px rgba(37, 211, 102, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
  padding: 0 !important;
  margin: 0 !important;
}
.wa-float__btn svg {
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  min-height: 30px !important;
  flex: 0 0 30px !important;
  display: block;
}
.wa-float__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.45);
  animation: wa-pulse 2s infinite;
  z-index: -1;
}
.wa-float:hover .wa-float__bubble {
  opacity: 1;
  transform: translateX(0);
}
.wa-float:hover .wa-float__btn,
.wa-float:focus-visible .wa-float__btn {
  transform: scale(1.08);
  box-shadow: 0 12px 28px -6px rgba(37, 211, 102, 0.65);
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float__btn::before { animation: none; }
}
@media (max-width: 640px) {
  .wa-float { right: 16px !important; bottom: 90px !important; }
  .wa-float__bubble { display: none !important; }
}

/* ==========================================================
   Product page
   ========================================================== */
.page-head {
  padding: 80px 0 50px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-alt), var(--bg));
}
.page-head__title {
  font-size: clamp(40px, 5vw, 60px);
  margin-bottom: 18px;
}
.page-head__lead {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.filter-chip {
  padding: 9px 20px;
  border: 1.5px solid var(--line-strong);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--white);
  transition: all var(--transition);
}
.filter-chip:hover { border-color: var(--gold); color: var(--ink); }
.filter-chip--active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.prod-section { padding: 80px 0; }
.prod-section--alt { background: var(--bg-alt); }
.prod-section__head { margin-bottom: 50px; }
.prod-section__title {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 10px;
}
.prod-section__sub {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 700px;
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.prod-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.prod-card.is-hidden { display: none; }
.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.prod-card__media {
  height: 240px;
  position: relative;
  display: grid;
  place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}
.prod-card__media::after {
  content: '';
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
}
.prod-card__media--n1 { background: linear-gradient(135deg, #f9efe0, #c9a16e); }
.prod-card__media--n2 { background: linear-gradient(135deg, #fff5e6, #d4a76a); }
.prod-card__media--n3 { background: linear-gradient(135deg, #fdf6ec, #e8c08a); }
.prod-card__media--n4 { background: linear-gradient(135deg, #f0e4d0, #b88c5b); }
.prod-card__media--n5 { background: linear-gradient(135deg, #e8d5b8, #a87a4a); }
.prod-card__media--n6 { background: linear-gradient(135deg, #fff2d6, #c9a16e); }
.prod-card__media--a1 { background: linear-gradient(135deg, #f5ebe0, #c4a883); }
.prod-card__media--a2 { background: linear-gradient(135deg, #fff0e3, #d4a76a); }
.prod-card__media--a3 { background: linear-gradient(135deg, #ead7be, #b88c5b); }
.prod-card__media--h1 { background: linear-gradient(135deg, #e6f0e6, #8aab8a); }
.prod-card__media--h2 { background: linear-gradient(135deg, #f4ecdc, #c9a16e); }
.prod-card__media--c1 { background: linear-gradient(135deg, #f0e6dc, #a87a4a); }

.prod-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--ink);
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  z-index: 2;
}
.prod-card__badge--soft {
  background: var(--white);
  color: var(--leaf);
  border: 1px solid var(--leaf);
}
.prod-card__badge--gold {
  background: var(--gold);
  color: var(--white);
}
.prod-card__body { padding: 28px 28px 32px; display: flex; flex-direction: column; flex: 1; }
.prod-card__code {
  font-size: 11px;
  color: var(--gold-deep);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}
.prod-card__name {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.25;
}
.prod-card__attrs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.prod-card__attrs li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
}
.prod-card__attrs li span {
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  font-size: 10px;
}
.prod-card__attrs li {
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
}
.prod-card__desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}
.prod-card__cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-deep);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.prod-card__cta:hover { color: var(--accent); }

/* Compare table */
.compare { padding: 110px 0; }
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--white);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.compare-table th {
  background: var(--bg-alt);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.compare-table td {
  color: var(--ink-soft);
}
.compare-table td strong { color: var(--ink); }
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table tr:hover td { background: var(--bg); }

/* ==========================================================
   Responsive
   ========================================================== */
@media (max-width: 1024px) {
  .nav { display: none; }
  .header__cta { display: none; }
  .hamburger { display: flex; }
  .nav--open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg);
    padding: 20px 32px;
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav--open .nav__link { padding: 14px 0; border-bottom: 1px solid var(--line); }

  .hero__inner { grid-template-columns: 1fr; gap: 60px; }
  .hero__visual { height: 460px; max-width: 400px; margin: 0 auto; width: 100%; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .cat-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .step:not(:last-child)::after { display: none; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner { grid-template-columns: 1fr; gap: 50px; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .header__inner { padding: 14px 20px; }
  .topbar__left { gap: 10px; font-size: 11px; }
  .topbar__item:nth-child(2) { display: none; }
  .topbar__right .topbar__badge { display: none; }

  .hero { padding: 50px 0 70px; }
  .hero__title { font-size: 40px; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .hero__visual { height: 380px; }
  .hero__card--xs { left: 10px; }

  .categories, .services, .process, .certs, .about, .testi, .contact, .compare {
    padding: 70px 0;
  }
  .svc-grid, .cert-grid, .prod-grid, .steps { grid-template-columns: 1fr; }
  .prod-grid { gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .contact__form { padding: 28px 22px; }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }

  .float-cta__text { display: none; }
  .float-cta { padding: 14px; }
}

/* ==========================================================
   Animations
   ========================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.8s ease-out backwards; }
.fade-up:nth-child(1) { animation-delay: 0.1s; }
.fade-up:nth-child(2) { animation-delay: 0.2s; }
.fade-up:nth-child(3) { animation-delay: 0.3s; }
.fade-up:nth-child(4) { animation-delay: 0.4s; }
.fade-up:nth-child(5) { animation-delay: 0.5s; }
.fade-up:nth-child(6) { animation-delay: 0.6s; }

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   PAGE HERO (sub-pages)
   ============================================ */
.page-hero {
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero--light {
  background: linear-gradient(135deg, #faf6ef 0%, #f4ecde 100%);
}
.page-hero--gold {
  background: linear-gradient(135deg, #d4b87a 0%, #b8956a 100%);
  color: #fff;
}
.page-hero--gold .breadcrumb a,
.page-hero--gold .page-hero__title { color: #fff; }
.page-hero--dark {
  background: linear-gradient(135deg, #2a2520 0%, #1a1612 100%);
  color: #fff;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(212,184,122,0.15), transparent 50%);
  pointer-events: none;
}
.page-hero__inner {
  max-width: 900px;
  position: relative;
  z-index: 1;
}
.page-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
  margin: 16px 0 24px;
  color: #2a2520;
}
.page-hero__title em {
  font-style: italic;
  color: #b8956a;
}
.page-hero__title--light { color: #fff; }
.page-hero__title--light em { color: #d4b87a; }
.page-hero__lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #5a5247;
  max-width: 720px;
  margin: 0 0 32px;
}
.page-hero__lead--light { color: rgba(255,255,255,0.85); }
.page-hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.eyebrow--light { color: #d4b87a; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 0.85rem;
  color: #8a8275;
  margin-bottom: 16px;
}
.breadcrumb a { color: #5a5247; text-decoration: none; }
.breadcrumb a:hover { color: #b8956a; }
.breadcrumb--light { color: rgba(255,255,255,0.6); }
.breadcrumb--light a { color: rgba(255,255,255,0.85); }

.hero__stats--contact { margin-top: 40px; }

/* ============================================
   SERVICIOS — Detailed
   ============================================ */
.services-detailed {
  padding: 100px 0;
  background: #faf8f3;
}
.svc-detailed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 60px;
}
.svc-detailed__item {
  background: #fff;
  padding: 40px 36px;
  border-radius: 16px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #ece4d3;
}
.svc-detailed__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -20px rgba(184,149,106,0.4);
}
.svc-detailed__num {
  position: absolute;
  top: 24px;
  right: 32px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  color: #d4b87a;
  font-weight: 500;
  opacity: 0.5;
}
.svc-detailed__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.svc-detailed__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0 0 12px;
  color: #2a2520;
}
.svc-detailed__text {
  color: #5a5247;
  line-height: 1.7;
  margin: 0 0 20px;
  font-size: 0.95rem;
}
.svc-detailed__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #ece4d3;
  padding-top: 16px;
}
.svc-detailed__list li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: #5a5247;
}
.svc-detailed__list li strong {
  color: #2a2520;
  display: inline-block;
  min-width: 130px;
}

/* ============================================
   MOQ TABLE
   ============================================ */
.moq-section {
  padding: 100px 0;
  background: #fff;
}
.moq-table-wrap {
  overflow-x: auto;
  margin-top: 50px;
  border-radius: 12px;
  border: 1px solid #ece4d3;
}
.moq-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.moq-table th, .moq-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid #ece4d3;
}
.moq-table th {
  background: #2a2520;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.moq-table tr:last-child td { border-bottom: 0; }
.moq-table tr:hover { background: #faf8f3; }
.moq-table td strong { color: #b8956a; }
.moq-note {
  font-size: 0.85rem;
  color: #8a8275;
  margin-top: 20px;
  text-align: center;
  font-style: italic;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 100px 0;
  background: #faf8f3;
}
.faq__list {
  max-width: 820px;
  margin: 50px auto 0;
}
.faq__item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 12px;
  border: 1px solid #ece4d3;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq__item[open] { border-color: #b8956a; }
.faq__item summary {
  padding: 22px 28px;
  cursor: pointer;
  font-weight: 600;
  color: #2a2520;
  font-size: 1.05rem;
  list-style: none;
  position: relative;
  padding-right: 56px;
  transition: background 0.2s;
}
.faq__item summary:hover { background: #faf8f3; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #b8956a;
  font-weight: 300;
  transition: transform 0.3s;
}
.faq__item[open] summary::after { content: '−'; }
.faq__item p {
  padding: 0 28px 24px;
  color: #5a5247;
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   CERTIFICACIONES — Showcase
   ============================================ */
.cert-showcase {
  padding: 100px 0;
  background: #faf8f3;
}
.cert-showcase__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 60px;
}
.cert-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  border: 1px solid #ece4d3;
  transition: transform 0.3s, box-shadow 0.3s;
}
.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -20px rgba(184,149,106,0.4);
}
.cert-card__ring {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4b87a, #b8956a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.2;
  margin: 0 auto 20px;
  text-align: center;
  box-shadow: 0 8px 20px -8px rgba(184,149,106,0.6);
}
.cert-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 12px;
  color: #2a2520;
}
.cert-card p {
  color: #5a5247;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

/* QC Section */
.qc-section {
  padding: 100px 0;
  background: #2a2520;
  color: #fff;
}
.section-head--light .section-title { color: #fff; }
.section-head--light .section-lead { color: rgba(255,255,255,0.7); }
.qc-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 60px;
}
.qc-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,184,122,0.2);
  border-radius: 12px;
  padding: 36px 28px;
  position: relative;
}
.qc-step__num {
  display: inline-block;
  background: #d4b87a;
  color: #2a2520;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.qc-step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 16px;
  color: #fff;
}
.qc-step ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.qc-step ul li {
  padding: 8px 0 8px 22px;
  position: relative;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.5;
}
.qc-step ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #d4b87a;
  font-weight: 700;
}

/* Docs Section */
.docs-section {
  padding: 100px 0;
  background: #faf8f3;
}
.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 50px;
}
.doc-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: 12px;
  border: 1px solid #ece4d3;
  transition: transform 0.3s, border-color 0.3s;
}
.doc-card:hover {
  transform: translateY(-4px);
  border-color: #b8956a;
}
.doc-card__icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}
.doc-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 10px;
  color: #2a2520;
}
.doc-card p {
  color: #5a5247;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Audit Section */
.audit-section {
  padding: 80px 0;
  background: #fff;
}
.audit-card {
  background: linear-gradient(135deg, #d4b87a, #b8956a);
  border-radius: 20px;
  padding: 50px 60px;
  display: flex;
  align-items: center;
  gap: 32px;
  color: #fff;
  flex-wrap: wrap;
}
.audit-card__icon { font-size: 3.5rem; }
.audit-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  margin: 0 0 8px;
  color: #fff;
}
.audit-card p {
  margin: 0;
  line-height: 1.6;
  flex: 1;
  min-width: 280px;
  color: rgba(255,255,255,0.95);
}
.audit-card .btn--primary {
  background: #fff;
  color: #b8956a;
  border-color: #fff;
}
.audit-card .btn--primary:hover {
  background: #2a2520;
  color: #fff;
  border-color: #2a2520;
}

/* ============================================
   NOSOTROS — Story
   ============================================ */
.story {
  padding: 100px 0;
  background: #faf8f3;
}
.story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story__content p {
  color: #5a5247;
  line-height: 1.8;
  margin: 0 0 16px;
  font-size: 1rem;
}
.story__content strong { color: #2a2520; }
.story__content em { color: #b8956a; font-style: italic; }
.story__visual {
  position: relative;
  height: 540px;
}
.story__img {
  position: absolute;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
}
.story__img--1 {
  inset: 0 35% 30% 0;
  background: linear-gradient(135deg, #b8956a, #d4b87a);
}
.story__img--2 {
  inset: 30% 0 0 30%;
  background: linear-gradient(135deg, #2a2520, #5a5247);
}
.story__quote {
  position: absolute;
  inset: auto 0 0 0;
  background: #fff;
  padding: 24px 28px;
  border-radius: 12px;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.2);
  z-index: 2;
}
.story__quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: #d4b87a;
  line-height: 0.5;
  display: block;
  margin-bottom: 8px;
}
.story__quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: #2a2520;
  margin: 0 0 12px;
}
.story__quote small { color: #8a8275; font-size: 0.85rem; }

/* ============================================
   MVV — Mission Vision Values
   ============================================ */
.mvv { padding: 100px 0; background: #fff; }
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.mvv-card {
  background: #faf8f3;
  border: 1px solid #ece4d3;
  border-radius: 16px;
  padding: 40px 32px;
  transition: transform 0.3s, border-color 0.3s;
}
.mvv-card:hover { transform: translateY(-4px); border-color: #b8956a; }
.mvv-card__icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
}
.mvv-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0 0 14px;
  color: #2a2520;
}
.mvv-card p, .mvv-card li {
  color: #5a5247;
  line-height: 1.7;
  font-size: 0.95rem;
}
.mvv-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mvv-card li {
  padding: 6px 0;
  border-bottom: 1px dashed #ece4d3;
}
.mvv-card li:last-child { border-bottom: 0; }
.mvv-card li strong { color: #2a2520; display: block; font-size: 1rem; }

/* Numbers band */
.numbers-band {
  padding: 80px 0;
  background: linear-gradient(135deg, #2a2520, #1a1612);
  color: #fff;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
}
.number-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.number-item__num,
.number-item__plus {
  display: inline-block;
  vertical-align: baseline;
  line-height: 1;
}
.number-item__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 600;
  color: #d4b87a;
}
.number-item__plus {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  color: #d4b87a;
  margin-left: 4px;
  font-weight: 500;
}
.number-item__label {
  margin-top: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* Team */
.team { padding: 100px 0; background: #faf8f3; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 60px;
}
.team-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #ece4d3;
  transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(184,149,106,0.3);
}
.team-card__avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
}
.team-card__avatar--1 { background: linear-gradient(135deg, #b8956a, #d4b87a); }
.team-card__avatar--2 { background: linear-gradient(135deg, #2a2520, #5a5247); }
.team-card__avatar--3 { background: linear-gradient(135deg, #c98686, #e8b4b4); }
.team-card__avatar--4 { background: linear-gradient(135deg, #4a6b8a, #7a9bb8); }
.team-card__avatar--5 { background: linear-gradient(135deg, #6b8a4a, #9bb87a); }
.team-card__avatar--6 { background: linear-gradient(135deg, #8a6b4a, #b8956a); }
.team-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 4px;
  color: #2a2520;
}
.team-card__role {
  display: block;
  font-size: 0.85rem;
  color: #b8956a;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.team-card p {
  color: #5a5247;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Facility */
.facility {
  padding: 100px 0;
  background: linear-gradient(135deg, #2a2520, #1a1612);
  color: #fff;
}
.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 60px;
}
.facility-tile {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,184,122,0.2);
  border-radius: 12px;
  padding: 32px 28px;
  transition: background 0.3s, border-color 0.3s;
}
.facility-tile:hover {
  background: rgba(255,255,255,0.08);
  border-color: #d4b87a;
}
.facility-tile__icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 14px;
}
.facility-tile h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 10px;
  color: #d4b87a;
}
.facility-tile p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Timeline */
.timeline { padding: 100px 0; background: #fff; }
.timeline-list {
  list-style: none;
  padding: 0;
  margin: 60px auto 0;
  max-width: 820px;
  position: relative;
}
.timeline-list::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: #ece4d3;
}
.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  padding: 20px 0;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 73px;
  top: 32px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #b8956a;
  border: 4px solid #fff;
  box-shadow: 0 0 0 1px #b8956a;
}
.timeline-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #b8956a;
  text-align: right;
}
.timeline-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: #2a2520;
}
.timeline-item p {
  color: #5a5247;
  margin: 0;
  line-height: 1.6;
}

/* ============================================
   CONTACTO
   ============================================ */
.channels { padding: 100px 0; background: #faf8f3; }
.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.channel-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid #ece4d3;
  text-decoration: none;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  display: block;
}
.channel-card:hover {
  transform: translateY(-6px);
  border-color: #b8956a;
  box-shadow: 0 20px 40px -20px rgba(184,149,106,0.4);
}
.channel-card__icon {
  font-size: 2.8rem;
  display: block;
  margin-bottom: 16px;
}
.channel-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 10px;
  color: #2a2520;
}
.channel-card__main {
  font-weight: 600;
  color: #b8956a;
  margin: 0 0 6px;
  font-size: 0.95rem;
  word-break: break-word;
}
.channel-card__sub {
  color: #8a8275;
  font-size: 0.85rem;
  margin: 0 0 16px;
}
.channel-card__link {
  display: inline-block;
  color: #2a2520;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Contact — enhanced form */
.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0 0 24px;
  color: #2a2520;
  padding-bottom: 16px;
  border-bottom: 1px solid #ece4d3;
}
.form-section {
  background: #faf8f3;
  padding: 24px;
  border-radius: 10px;
  margin-bottom: 24px;
}
.form-section h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 18px;
  color: #b8956a;
}
.form-row--checks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.form-check--legal {
  background: #faf8f3;
  padding: 16px;
  border-radius: 8px;
  margin: 20px 0;
}
.form-check--legal a { color: #b8956a; }
.contact__promise {
  margin-top: 28px;
  padding: 20px 24px;
  background: linear-gradient(135deg, #d4b87a, #b8956a);
  color: #fff;
  border-radius: 10px;
  font-size: 0.95rem;
}
.contact__promise strong { display: block; font-size: 1.05rem; margin-bottom: 4px; }

/* Offices */
.offices { padding: 100px 0; background: #faf8f3; }
.offices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 60px;
}
.office-card {
  background: #fff;
  padding: 36px 30px;
  border-radius: 14px;
  border: 1px solid #ece4d3;
  transition: transform 0.3s, border-color 0.3s;
}
.office-card:hover {
  transform: translateY(-4px);
  border-color: #b8956a;
}
.office-card__flag {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 14px;
}
.office-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 14px;
  color: #2a2520;
}
.office-card__addr {
  color: #5a5247;
  line-height: 1.6;
  font-size: 0.9rem;
  margin: 0 0 16px;
  font-style: italic;
}
.office-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #ece4d3;
  padding-top: 14px;
}
.office-card__list li {
  padding: 6px 0 6px 22px;
  position: relative;
  color: #5a5247;
  font-size: 0.9rem;
}
.office-card__list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: #d4b87a;
  font-size: 0.7rem;
  top: 9px;
}

/* ============================================
   RESPONSIVE — Sub-pages
   ============================================ */
@media (max-width: 1024px) {
  .story__inner { grid-template-columns: 1fr; gap: 40px; }
  .story__visual { height: 420px; }
  .audit-card { padding: 40px; }
  .timeline-item { grid-template-columns: 80px 1fr; gap: 30px; }
  .timeline-list::before { left: 60px; }
  .timeline-item::before { left: 53px; }
}
@media (max-width: 640px) {
  .page-hero { padding: 60px 0 50px; }
  .services-detailed, .moq-section, .faq,
  .cert-showcase, .qc-section, .docs-section,
  .audit-section, .story, .mvv, .team, .facility,
  .timeline, .channels, .offices { padding: 60px 0; }
  .svc-detailed { grid-template-columns: 1fr; }
  .moq-table th, .moq-table td { padding: 12px; font-size: 0.85rem; }
  .audit-card { flex-direction: column; text-align: center; padding: 32px 24px; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; padding-left: 30px; }
  .timeline-list::before { left: 0; }
  .timeline-item::before { left: -8px; top: 6px; }
  .timeline-year { text-align: left; }
  .story__visual { height: 360px; }
  .form-row--checks { grid-template-columns: 1fr; }
}

/* Admin link badge in header (small lock icon) */
.header__admin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: transparent;
  color: #8a8275;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.header__admin:hover {
  background: #faf8f3;
  color: #b8956a;
  border-color: #ece4d3;
}

/* ============================================
   BLOG — Index + Article
   ============================================ */

/* Blog hero search */
.blog-search {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  max-width: 580px;
}
.blog-search input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid #ece4d3;
  border-radius: 10px;
  background: #fff;
  font-size: 0.95rem;
  color: #2a2520;
  font-family: inherit;
}
.blog-search input:focus {
  outline: none;
  border-color: #b8956a;
  box-shadow: 0 0 0 3px rgba(184,149,106,0.15);
}

/* Featured */
.blog-featured { padding: 60px 0 0; background: #faf8f3; }
.featured-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid #ece4d3;
  margin-top: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(184,149,106,0.4);
}
.featured-card__img {
  background: linear-gradient(135deg, #b8956a, #d4b87a);
  min-height: 360px;
  position: relative;
}
.featured-card__img::before {
  content: '🧪';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  opacity: 0.55;
}
.featured-card__body {
  padding: 44px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-card__body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 16px 0 14px;
  color: #2a2520;
}
.featured-card__body p {
  color: #5a5247;
  line-height: 1.7;
  margin: 0 0 24px;
}
.blog-tag {
  display: inline-block;
  background: #faf8f3;
  color: #b8956a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid #ece4d3;
}
.blog-tag--feat {
  background: #b8956a;
  color: #fff;
  border-color: #b8956a;
}
.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: #8a8275;
  font-size: 0.85rem;
}

/* Blog categories bar */
.blog-cats { padding: 30px 0 10px; background: #faf8f3; }
.blog-cats__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.blog-cat {
  background: #fff;
  border: 1px solid #ece4d3;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #5a5247;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
}
.blog-cat span {
  background: #faf8f3;
  color: #b8956a;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 600;
}
.blog-cat:hover { border-color: #b8956a; color: #2a2520; }
.blog-cat--active {
  background: #2a2520;
  color: #fff;
  border-color: #2a2520;
}
.blog-cat--active span {
  background: #d4b87a;
  color: #2a2520;
}

/* Blog layout (grid + sidebar) */
.blog-layout { padding: 60px 0 100px; background: #faf8f3; }
.blog-layout__inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
  align-items: start;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #ece4d3;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -20px rgba(184,149,106,0.4);
  border-color: #d4b87a;
}
.blog-card__img {
  display: block;
  height: 180px;
  position: relative;
  background-size: cover;
  background-position: center;
}
.blog-card__img .blog-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
}
.blog-card__img--1 { background: linear-gradient(135deg, #d4b87a, #b8956a); }
.blog-card__img--2 { background: linear-gradient(135deg, #4a6b8a, #7a9bb8); }
.blog-card__img--3 { background: linear-gradient(135deg, #c98686, #e8b4b4); }
.blog-card__img--4 { background: linear-gradient(135deg, #6b8a4a, #9bb87a); }
.blog-card__img--5 { background: linear-gradient(135deg, #8a6b4a, #b8956a); }
.blog-card__img--6 { background: linear-gradient(135deg, #5a5247, #2a2520); }
.blog-card__img--7 { background: linear-gradient(135deg, #b8956a, #5a5247); }
.blog-card__img--8 { background: linear-gradient(135deg, #d4b87a, #8a6b4a); }
.blog-card__img--9 { background: linear-gradient(135deg, #e8b4b4, #b8956a); }
.blog-card__body { padding: 24px 24px 22px; flex: 1; display: flex; flex-direction: column; }
.blog-date { font-size: 0.8rem; color: #8a8275; }
.blog-card__body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 8px 0 10px;
  color: #2a2520;
}
.blog-card__body h3 a { color: inherit; text-decoration: none; }
.blog-card__body h3 a:hover { color: #b8956a; }
.blog-card__body p {
  color: #5a5247;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 18px;
  flex: 1;
}
.blog-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid #ece4d3;
  font-size: 0.85rem;
}
.blog-author { color: #8a8275; }
.blog-read { color: #b8956a; font-weight: 600; text-decoration: none; }
.blog-read:hover { color: #2a2520; }

/* Sidebar */
.blog-sidebar { display: flex; flex-direction: column; gap: 22px; position: sticky; top: 100px; }
.sidebar-card {
  background: #fff;
  border: 1px solid #ece4d3;
  border-radius: 14px;
  padding: 26px 24px;
}
.sidebar-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 18px;
  color: #2a2520;
}
.sidebar-card--highlight {
  background: linear-gradient(135deg, #2a2520, #1a1612);
  color: #fff;
  border-color: #2a2520;
}
.sidebar-card--highlight h4 { color: #d4b87a; }
.sidebar-card--highlight p { color: rgba(255,255,255,0.8); margin: 0 0 18px; }
.sidebar-card--highlight .btn--primary {
  background: #d4b87a;
  border-color: #d4b87a;
  color: #2a2520;
}
.sidebar-card--highlight .btn--primary:hover {
  background: #fff;
  border-color: #fff;
  color: #2a2520;
}
.sidebar-card__badge {
  display: inline-block;
  background: #d4b87a;
  color: #2a2520;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sidebar-list { list-style: none; padding: 0; margin: 0; }
.sidebar-list li a {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed #ece4d3;
  color: #5a5247;
  text-decoration: none;
  font-size: 0.95rem;
}
.sidebar-list li a:hover { color: #b8956a; }
.sidebar-list li a span {
  color: #b8956a;
  font-weight: 600;
  font-size: 0.85rem;
}
.sidebar-list li:last-child a { border-bottom: 0; }
.sidebar-popular { padding-left: 0; list-style: none; counter-reset: pop; }
.sidebar-popular li {
  padding: 10px 0;
  border-bottom: 1px dashed #ece4d3;
  font-size: 0.9rem;
  line-height: 1.5;
}
.sidebar-popular li:last-child { border-bottom: 0; }
.sidebar-popular li a { color: #5a5247; text-decoration: none; }
.sidebar-popular li a:hover { color: #b8956a; }
.sidebar-popular li a strong { color: #b8956a; margin-right: 6px; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  background: #faf8f3;
  color: #5a5247;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.82rem;
  text-decoration: none;
  border: 1px solid #ece4d3;
  transition: all 0.2s;
}
.tag:hover { background: #b8956a; color: #fff; border-color: #b8956a; }
.sidebar-card--quote {
  background: #faf8f3;
  border-color: #d4b87a;
  position: relative;
}
.sidebar-card__quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: #d4b87a;
  line-height: 0.4;
  display: block;
  margin-bottom: 8px;
}
.sidebar-card--quote p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: #2a2520;
  margin: 0 0 12px;
  font-size: 1.05rem;
  line-height: 1.5;
}
.sidebar-card--quote small { color: #8a8275; font-size: 0.82rem; }

/* Newsletter */
.newsletter {
  padding: 80px 0;
  background: linear-gradient(135deg, #2a2520, #1a1612);
  color: #fff;
}
.newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.newsletter .eyebrow { color: #d4b87a; }
.newsletter .section-title { color: #fff; margin: 8px 0 12px; }
.newsletter__copy p { color: rgba(255,255,255,0.75); margin: 0; line-height: 1.6; }
.newsletter__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.newsletter__form input {
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
}
.newsletter__form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter__form input:focus { outline: none; border-color: #d4b87a; }
.newsletter__form small {
  grid-column: 1 / -1;
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  margin-top: 4px;
}

/* Blog preview block on homepage */
.blog-preview { padding: 100px 0; background: #fff; }
.blog-preview__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}
.blog-preview__copy .section-title { margin: 12px 0 16px; }
.blog-preview__copy p { color: #5a5247; line-height: 1.7; margin: 0 0 28px; max-width: 380px; }
.blog-preview__stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid #ece4d3;
}
.blog-preview__stats > div { display: flex; flex-direction: column; }
.blog-preview__stats strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: #b8956a;
  font-weight: 600;
  line-height: 1;
}
.blog-preview__stats span {
  color: #8a8275;
  font-size: 0.82rem;
  margin-top: 4px;
}
.blog-preview__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.blog-preview__item {
  display: block;
  background: #faf8f3;
  padding: 24px 22px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid #ece4d3;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.blog-preview__item:hover {
  transform: translateY(-4px);
  border-color: #b8956a;
  box-shadow: 0 16px 32px -16px rgba(184,149,106,0.4);
}
.blog-preview__item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 12px 0 10px;
  color: #2a2520;
  line-height: 1.3;
}
.blog-preview__item small { color: #8a8275; font-size: 0.82rem; }

/* Article detail */
.article-hero {
  padding: 60px 0 50px;
  background: linear-gradient(135deg, #faf6ef 0%, #f4ecde 100%);
}
.article-hero__inner { max-width: 820px; margin: 0 auto; }
.article-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 20px 0 28px;
  color: #2a2520;
}
.article-hero__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid #ece4d3;
  flex-wrap: wrap;
}
.article-author { display: flex; align-items: center; gap: 12px; }
.article-author__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b8956a, #d4b87a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
}
.article-author strong { display: block; color: #2a2520; font-size: 0.95rem; }
.article-author span { color: #8a8275; font-size: 0.8rem; }
.article-meta-stats { display: flex; gap: 18px; color: #8a8275; font-size: 0.85rem; flex-wrap: wrap; }

.article-layout { padding: 70px 0 100px; background: #faf8f3; }
.article-layout__inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}
.article-body {
  background: #fff;
  padding: 50px 56px;
  border-radius: 14px;
  border: 1px solid #ece4d3;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #3a3530;
}
.article-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: #5a5247;
  margin: 0 0 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid #ece4d3;
  line-height: 1.5;
}
.article-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 40px 0 16px;
  color: #2a2520;
}
.article-body p { margin: 0 0 20px; }
.article-body blockquote {
  border-left: 4px solid #b8956a;
  margin: 32px 0;
  padding: 16px 24px;
  background: #faf8f3;
  border-radius: 0 8px 8px 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: #2a2520;
}
.article-body blockquote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #8a8275;
}

.article-side { display: flex; flex-direction: column; gap: 22px; position: sticky; top: 100px; }
.sidebar-card--cta { background: linear-gradient(135deg, #d4b87a, #b8956a); color: #fff; }
.sidebar-card--cta h4 { color: #fff; }
.sidebar-card--cta p { color: rgba(255,255,255,0.9); margin: 0 0 16px; }
.toc { padding-left: 0; list-style: none; counter-reset: toc; }
.toc li {
  counter-increment: toc;
  padding: 8px 0;
  border-bottom: 1px dashed #ece4d3;
}
.toc li a {
  color: #5a5247;
  text-decoration: none;
  font-size: 0.9rem;
}
.toc li a::before { content: counter(toc, decimal-leading-zero) ". "; color: #b8956a; font-weight: 600; }
.toc li a:hover { color: #b8956a; }
.share-row { display: flex; gap: 10px; }
.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #faf8f3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5a5247;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s;
}
.share-btn:hover { background: #b8956a; color: #fff; transform: translateY(-2px); }
.author-card { display: flex; gap: 14px; align-items: flex-start; }
.author-card p { margin: 8px 0 0; font-size: 0.85rem; line-height: 1.5; color: #5a5247; }
.author-card strong { display: block; color: #2a2520; }
.author-card span { color: #8a8275; font-size: 0.78rem; }

/* Related articles */
.related { padding: 80px 0; background: #fff; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 50px;
}
.related-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #ece4d3;
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}
.related-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(184,149,106,0.3); }
.related-card__img { height: 160px; }
.related-card__img--1 { background: linear-gradient(135deg, #d4b87a, #b8956a); }
.related-card__img--2 { background: linear-gradient(135deg, #c98686, #e8b4b4); }
.related-card__img--3 { background: linear-gradient(135deg, #4a6b8a, #7a9bb8); }
.related-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 16px 22px 10px;
  color: #2a2520;
  line-height: 1.3;
}
.related-card .blog-tag { margin: 22px 22px 0; display: inline-block; margin-top: 22px; }
.related-card small { display: block; margin: 0 22px 22px; color: #8a8275; font-size: 0.82rem; }

/* Responsive — Blog */
@media (max-width: 1024px) {
  .blog-layout__inner, .article-layout__inner, .blog-preview__inner, .newsletter__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .blog-sidebar, .article-side { position: static; }
  .featured-card { grid-template-columns: 1fr; }
  .featured-card__img { min-height: 240px; }
  .article-body { padding: 36px 28px; }
}
@media (max-width: 640px) {
  .blog-preview__list { grid-template-columns: 1fr; }
  .blog-search { flex-direction: column; }
  .article-hero { padding: 40px 0 30px; }
  .article-body { padding: 30px 22px; font-size: 0.98rem; }
  .article-body h2 { font-size: 1.4rem; }
  .article-body blockquote { font-size: 1.05rem; }
  .article-hero__meta { flex-direction: column; align-items: flex-start; }
  .featured-card__body { padding: 28px 24px; }
}
