/* ====================================================
   INÉFFE — Design System v1.0
   Light, premium, Apple-inspired
   Palette: cream / gold / charcoal / green
   ==================================================== */

/* =====================
   CSS Custom Properties
   ===================== */
:root {
  --cream:        #e6decc;
  --cream-light:  #eeede7;
  --cream-dark:   #d4c9b0;
  --gold:         #bda55d;
  --gold-dark:    #a8913d;
  --gold-light:   #d4be85;
  --charcoal:     #3e3e3e;
  --charcoal-mid: #5a5a5a;
  --charcoal-lt:  #8a8a8a;
  --green:        #00664e;
  --green-dark:   #004d3a;
  --green-light:  #008c6a;
  --white:        #ffffff;
  --black:        #1a1a1a;

  --font-serif:    'Cormorant Garamond', Georgia, serif;
  --font-sans:     'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display:  'Fraunces', Georgia, serif;

  --max-width:      1200px;
  --max-width-text: 760px;
  --pad-x:          40px;
  --section-y:      120px;
  --section-y-sm:   72px;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --radius-xl: 48px;

  --shadow-sm: 0 2px 8px  rgba(62,62,62,0.07);
  --shadow-md: 0 8px 32px rgba(62,62,62,0.11);
  --shadow-lg: 0 24px 64px rgba(62,62,62,0.15);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t:    0.3s;
  --t-lg: 0.6s;
}

/* =====================
   Reset
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; scrollbar-gutter: stable; }
body  {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--cream-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

/* =====================
   Typography Scale
   ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.12;
  color: var(--charcoal);
}

.display-xl {
  font-size: clamp(3.25rem, 7.5vw, 6.5rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.0;
}
.display-lg {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.display-md {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.display-sm {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
}

.text-lead {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  font-weight: 300;
  color: var(--charcoal-mid);
  line-height: 1.75;
}
.text-body { font-size: 1rem; line-height: 1.8; color: var(--charcoal-mid); }
.text-sm   { font-size: 0.875rem; line-height: 1.65; color: var(--charcoal-lt); }

.label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.italic { font-style: italic; }

/* =====================
   Layout
   ===================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.container-text {
  max-width: var(--max-width-text);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section        { padding: var(--section-y) 0; }
.section-sm     { padding: var(--section-y-sm) 0; }
.section-cream  { background: var(--cream); }
.section-white  { background: var(--white); }
.section-dark   { background: var(--charcoal); }

.text-center  { text-align: center; }
.text-right   { text-align: right; }
.mx-auto      { margin-left: auto; margin-right: auto; }

/* Grid helpers */
.grid-2  { display: grid; grid-template-columns: repeat(2,1fr); gap: 48px; }
.grid-3  { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; }
.grid-4  { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }

/* Flex helpers */
.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col     { flex-direction: column; }
.gap-sm       { gap: 12px; }
.gap-md       { gap: 24px; }
.gap-lg       { gap: 48px; }

/* Spacing utilities */
.mb-xs  { margin-bottom: 8px; }
.mb-sm  { margin-bottom: 16px; }
.mb-md  { margin-bottom: 32px; }
.mb-lg  { margin-bottom: 56px; }
.mb-xl  { margin-bottom: 80px; }
.mt-sm  { margin-top: 16px; }
.mt-md  { margin-top: 32px; }
.mt-lg  { margin-top: 56px; }
.mt-xl  { margin-top: 80px; }

/* =====================
   Buttons
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 36px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  border-radius: 100px;
  border: 1.5px solid transparent;
  transition: background var(--t) var(--ease), color var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease), transform var(--t) var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn-lg { padding: 19px 48px; font-size: 1rem; }
.btn-sm { padding: 10px 24px; font-size: 0.8125rem; }

.btn-primary {
  background: var(--charcoal);
  color: var(--cream-light);
  border-color: var(--charcoal);
}
.btn-primary:hover {
  background: var(--black);
  border-color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

@keyframes goldPulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(189,165,93,0.2); }
  50%       { box-shadow: 0 6px 32px rgba(189,165,93,0.48); }
}
@keyframes creamPulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(238,237,231,0.15); }
  50%       { box-shadow: 0 6px 32px rgba(238,237,231,0.38); }
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  animation: goldPulse 3s ease-in-out infinite;
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(189,165,93,0.35);
  animation-play-state: paused;
}

.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--cream-light);
  border-color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-outline-light {
  background: transparent;
  color: var(--cream-light);
  border-color: rgba(238,237,231,0.5);
}
.btn-outline-light:hover {
  background: var(--cream-light);
  color: var(--charcoal);
  border-color: var(--cream-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-cream {
  background: rgba(238,237,231,0.82);
  color: var(--charcoal);
  border-color: rgba(189,165,93,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-cream:hover {
  background: rgba(238,237,231,0.97);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(189,165,93,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: transparent;
  padding-left: 4px;
  padding-right: 4px;
}
.btn-ghost::after {
  content: '';
  display: block;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease);
  margin-top: 2px;
}
.btn-ghost:hover::after { transform: scaleX(1); }
.nav-actions .btn-ghost:hover { color: var(--green); }

/* Arrow link */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--green);
  transition: gap var(--t) var(--ease);
}
p .link-arrow { font-size: inherit; }
.link-arrow:hover { gap: 14px; }
.link-arrow svg   { transition: transform var(--t) var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* =====================
   Navigation
   ===================== */
.ineffe-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(238, 237, 231, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background var(--t), box-shadow var(--t), padding var(--t);
  padding: 14px 0;
}
.ineffe-nav.is-scrolled {
  background: rgba(238, 237, 231, 0.97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 1px 0 rgba(62,62,62,0.09);
  padding: 10px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* Logo takes up left half of available space */
.nav-logo   { flex: 1 1 0; display: flex; align-items: center; }
.nav-logo img { height: 52px; width: auto; }
.nav-brand-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--charcoal);
}

/* Links sit naturally in the middle, not growing or shrinking */
.nav-links {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
}
.nav-links li { white-space: nowrap; list-style: none; }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.01em;
  transition: color var(--t);
}
.nav-links a:hover  { color: var(--green); }
.nav-links a.active { color: var(--green); }
.nav-links [aria-current="page"] { color: var(--green); }

/* Actions take up right half of available space, content pushed right */
.nav-actions {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

/* Cart icon + count badge */
.nav-cart-btn { position: relative; }
.nav-cart-count {
  position: absolute;
  top: -4px; right: -6px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 600;
  line-height: 1;
  padding: 2px 5px;
  border-radius: 100px;
  min-width: 16px;
  text-align: center;
  pointer-events: none;
}

/* wp_nav_menu adds .menu-item, .current-menu-item etc — normalise them */
.nav-links .menu-item       { list-style: none; }
.nav-links .current-menu-item > a,
.nav-links .current-page-ancestor > a { color: var(--green); }

/* Mobile drawer menu list from wp_nav_menu */
.nav-drawer-menu             { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 28px; }
.nav-drawer-menu .menu-item  { list-style: none; }
.nav-drawer-menu a {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--charcoal);
  transition: color var(--t);
}
.nav-drawer-menu a:hover { color: var(--gold); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all var(--t);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--cream-light);
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-lg) var(--ease);
}
.nav-drawer.open { opacity: 1; pointer-events: all; }
.nav-drawer a {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--charcoal);
  transition: color var(--t);
}
.nav-drawer a:hover { color: var(--gold); }

/* =====================
   Hero
   ===================== */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--cream-light);
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}
.hero-bg-line {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(189,165,93,0.06) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(0,102,78,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content {
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  position: relative;
  z-index: 1;
}
.hero-eyebrow  { display: block; margin-bottom: 36px; }
.hero-title    { margin-bottom: 28px; }
.hero-subtitle {
  max-width: 580px;
  margin: 0 auto 52px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--charcoal-lt);
}
.hero-scroll-hint span {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-pip {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--charcoal-lt), transparent);
  animation: pip 1.6s ease infinite;
}
@keyframes pip {
  0%   { opacity: 1; transform: scaleY(0) translateY(-50%); }
  50%  { opacity: 1; transform: scaleY(1) translateY(0); }
  100% { opacity: 0; transform: scaleY(1) translateY(50%); }
}

/* =====================
   Section header
   ===================== */
.section-header { margin-bottom: 72px; }
.section-header .label { display: block; margin-bottom: 18px; }
.section-header .display-md { margin-bottom: 20px; }
.section-header .text-lead  { max-width: 540px; }
.section-header.centered .text-lead,
.section-header.text-center .text-lead { margin: 0 auto; }

/* =====================
   How it Works / Steps
   ===================== */
.steps-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.steps-wrap::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background: var(--cream-dark);
}
.step {
  text-align: center;
  padding: 0 32px;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--cream-dark);
  background: var(--cream-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-family: var(--font-sans);
  font-size: 1.375rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
}
.step h3 { font-size: 1.25rem; margin-bottom: 14px; }
.step p   { font-size: 0.9375rem; color: var(--charcoal-mid); line-height: 1.7; }

/* =====================
   Materials / Quality
   ===================== */
.material-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.material-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  padding: 24px 14px;
  text-align: center;
  transition: border-color var(--t), box-shadow var(--t);
}
.material-card:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-md);
}
.material-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
}
.material-card h4 { font-size: 1rem; margin-bottom: 8px; }
.material-card p  { font-size: 0.875rem; color: var(--charcoal-lt); }

/* =====================
   Pricing
   ===================== */
.pricing-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 64px;
}
.pricing-toggle-inner {
  display: flex;
  gap: 4px;
  background: var(--cream);
  border-radius: 100px;
  padding: 5px;
}
.pricing-tab {
  padding: 10px 30px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--charcoal-mid);
  background: none;
  border: none;
  transition: all var(--t);
  cursor: pointer;
}
.pricing-tab.active {
  background: var(--white);
  color: var(--charcoal);
  box-shadow: var(--shadow-sm);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  transition: box-shadow var(--t), border-color var(--t);
}
.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--charcoal-lt);
}
.pricing-card--featured:hover {
  border-color: var(--gold);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.pricing-card--featured {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--cream-light);
}
.pricing-card--featured h2,
.pricing-card--featured h3,
.pricing-card--featured h4,
.pricing-card--featured p { color: var(--cream-light); }

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-type {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 24px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}
.plan-from {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 400;
  color: var(--charcoal-lt);
  align-self: flex-end;
  padding-bottom: 10px;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}
.pricing-card--featured .plan-from { color: rgba(238,237,231,0.55); }

.plan-price .amount {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3.75rem;
  font-weight: 400;
  font-optical-sizing: auto;
  letter-spacing: -0.02em;
  line-height: 1;
}
.plan-price .per {
  font-size: 0.875rem;
  color: var(--charcoal-lt);
}
.pricing-card--featured .plan-price .per { color: rgba(238,237,231,0.55); }
.plan-note {
  font-size: 0.8125rem;
  color: var(--charcoal-lt);
  margin-bottom: 32px;
}
.pricing-card--featured .plan-note { color: rgba(238,237,231,0.55); }
.plan-divider {
  height: 1px;
  background: var(--cream-dark);
  margin: 28px 0;
}
.pricing-card--featured .plan-divider { background: rgba(238,237,231,0.12); }
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 0 0 40px 0;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.plan-features li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='8.5' stroke='%23bda55d' stroke-opacity='.4'/%3E%3Cpath d='M5.5 9l2.5 2.5 4.5-5' stroke='%23bda55d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.pricing-card--featured .plan-features li::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='8.5' stroke='%23eeede7' stroke-opacity='.3'/%3E%3Cpath d='M5.5 9l2.5 2.5 4.5-5' stroke='%23eeede7' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
/* Pricing panels (monthly/quarterly/special) */
.pricing-panel { display: none; }
.pricing-panel.active { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; align-items: start; max-width: 720px; margin: 0 auto; }
.pricing-panel--single.active { grid-template-columns: 1fr; max-width: 420px; }

/* =====================
   Value / Quality strip
   ===================== */
.value-strip {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.value-item {
  padding: 48px 40px;
  border-right: 1px solid var(--cream-dark);
  background: var(--white);
  transition: background var(--t);
}
.value-item:last-child { border-right: none; }
.value-item:hover { background: var(--cream-light); }
.value-number {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3.5rem;
  font-weight: 400;
  font-optical-sizing: auto;
  letter-spacing: -0.02em;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}
.value-item h4 { font-size: 1.125rem; margin-bottom: 10px; }
.value-item p  { font-size: 0.9rem; color: var(--charcoal-mid); }
.value-label   { display: block; font-size: 0.875rem; color: var(--charcoal-mid); margin-top: 6px; }

/* =====================
   Testimonials
   ===================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.t-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 0.875rem;
}
.t-quote {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--charcoal-mid);
}
.t-name  { font-size: 0.9375rem; font-weight: 500; display: block; }
.t-sub   { font-size: 0.8125rem; color: var(--charcoal-lt); display: block; }

/* =====================
   CTA section (dark)
   ===================== */
.cta-dark {
  background: var(--charcoal);
  text-align: center;
  padding: 140px var(--pad-x);
  position: relative;
  overflow: hidden;
}
.cta-dark::before {
  content: 'I';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: 600px;
  line-height: 1;
  color: rgba(255,255,255,0.018);
  user-select: none;
  pointer-events: none;
  font-weight: 300;
}
.cta-dark .label       { color: var(--gold-light); margin-bottom: 20px; display: block; }
.cta-dark .display-lg  { color: var(--cream-light); margin-bottom: 16px; }
.cta-tagline {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 52px;
}
.cta-dark .hero-actions { position: relative; z-index: 1; }

/* =====================
   FAQ
   ===================== */
.faq-item {
  border-bottom: 1px solid var(--cream-dark);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 28px 1.25rem;
  background-color: transparent !important;
  border: none;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--charcoal) !important;
  cursor: pointer;
  gap: 24px;
  transition: background-color var(--t);
}
.faq-question:hover {
  background-color: rgba(62,62,62,0.05) !important;
  color: var(--charcoal) !important;
}
.faq-item.open .faq-question {
  background-color: rgba(62,62,62,0.04) !important;
  color: var(--charcoal) !important;
}
.faq-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  border: 1px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t);
  color: var(--charcoal-lt);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  padding-bottom: 1px;
}
.faq-icon svg { transition: transform var(--t); }
.faq-item.open .faq-icon { border-color: var(--gold); color: var(--gold); }
.faq-item.open .faq-icon svg { transform: rotate(45deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s var(--ease);
}
.faq-answer-inner {
  padding: 6px 1.25rem 28px;
  font-size: 0.9375rem;
  color: var(--charcoal-mid);
  line-height: 1.8;
}

/* =====================
   Forms (Elementor overrides + custom)
   ===================== */
.elementor-form .elementor-field-group,
.ineffe-form .form-group {
  margin-bottom: 20px;
}
.elementor-form .elementor-field,
.ineffe-form input,
.ineffe-form textarea,
.ineffe-form select {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--charcoal);
  font-size: 0.9375rem;
  transition: border-color var(--t);
  appearance: none;
}
.elementor-form .elementor-field:focus,
.ineffe-form input:focus,
.ineffe-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.elementor-form .elementor-button,
.ineffe-form .form-submit {
  background: var(--charcoal) !important;
  color: var(--cream-light) !important;
  border-radius: 100px !important;
  padding: 15px 40px !important;
  font-size: 0.875rem !important;
  letter-spacing: 0.05em !important;
  transition: all var(--t) !important;
  border: none !important;
}
.elementor-form .elementor-button:hover,
.ineffe-form .form-submit:hover {
  background: var(--black) !important;
  transform: translateY(-2px);
}

/* Multi-step progress */
.step-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 48px;
}
.step-progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cream-dark);
  transition: all var(--t);
}
.step-progress-dot.active  { background: var(--gold); transform: scale(1.4); }
.step-progress-dot.done    { background: var(--green); }
.step-progress-line {
  flex: 1;
  height: 1px;
  background: var(--cream-dark);
}

/* =====================
   Account / Portal
   ===================== */
.portal-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 24px;
}
.portal-card h3 { font-size: 1.375rem; margin-bottom: 6px; }
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.status-active   { background: rgba(0,102,78,0.1);  color: var(--green); }
.status-paused   { background: rgba(189,165,93,0.15); color: var(--gold-dark); }
.status-cancelled{ background: rgba(62,62,62,0.08);  color: var(--charcoal-lt); }
.portal-actions  { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }

/* =====================
   Footer
   ===================== */
.ineffe-footer {
  background: var(--charcoal);
  padding: 96px 0 48px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 0.85fr;
  gap: 40px;
  margin-bottom: 64px;
}
.footer-brand .footer-logo { margin-bottom: 20px; display: block; }
.footer-logo img { height: 52px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-brand-text {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(238,237,231,0.85);
  display: block;
}
.footer-desc {
  font-size: 0.8125rem;
  color: rgba(238,237,231,0.45);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 240px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(238,237,231,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(238,237,231,0.5);
  font-size: 0.875rem;
  transition: all var(--t);
  text-decoration: none;
}
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(238,237,231,0.9);
  margin-bottom: 22px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 13px; margin: 0; }
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(238,237,231,0.5);
  transition: color var(--t);
  white-space: nowrap;
}
.footer-col ul a:hover { color: rgba(238,237,231,0.9); }
.footer-col ul a.footer-link-gold { color: var(--gold) !important; }
.footer-col ul a.footer-link-gold:hover { color: var(--gold-light) !important; }
.footer-bottom {
  border-top: 1px solid rgba(238,237,231,0.07);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy  { font-size: 0.8125rem; color: rgba(238,237,231,0.3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.8125rem; color: rgba(238,237,231,0.35); transition: color var(--t); }
.footer-legal a:hover { color: rgba(238,237,231,0.7); }

/* =====================
   Scroll animations
   ===================== */
[data-fade] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-fade].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-fade][data-delay="1"] { transition-delay: 0.1s; }
[data-fade][data-delay="2"] { transition-delay: 0.2s; }
[data-fade][data-delay="3"] { transition-delay: 0.3s; }
[data-fade][data-delay="4"] { transition-delay: 0.4s; }
[data-fade][data-delay="5"] { transition-delay: 0.5s; }

/* Restore hover transitions for elements that carry data-fade directly */
[data-fade].btn {
  transition:
    opacity 0.9s var(--ease),
    transform var(--t) var(--ease),
    background var(--t) var(--ease),
    color var(--t) var(--ease),
    border-color var(--t) var(--ease),
    box-shadow var(--t) var(--ease);
}
/* Specificity 0,3,0 — beats [data-fade].is-visible (0,2,0) so hover lift works */
[data-fade].btn:hover { transform: translateY(-2px); }
[data-fade].pricing-card {
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease),
    box-shadow var(--t),
    border-color var(--t);
}
[data-fade].material-card {
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease),
    border-color var(--t),
    box-shadow var(--t);
}

/* =====================
   WooCommerce overrides
   ===================== */
.woocommerce-page .woocommerce {
  font-family: var(--font-sans);
}
.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: var(--charcoal) !important;
  color: var(--cream-light) !important;
  border-radius: 100px !important;
  padding: 14px 32px !important;
  font-size: 0.875rem !important;
  font-family: var(--font-sans) !important;
  letter-spacing: 0.04em !important;
  border: none !important;
  transition: all var(--t) !important;
}
.woocommerce .button:hover { background: var(--black) !important; }
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info {
  border-top-color: var(--green) !important;
}
.woocommerce .woocommerce-message::before { color: var(--green) !important; }

/* =====================
   GeneratePress overrides
   ===================== */
.site-header     { display: none !important; }
.site-footer     { display: none !important; }
.navigation-wrap { display: none !important; }
.page-hero-section { padding-top: 0 !important; }
.inside-article { padding: 0; }
.entry-content  { margin: 0; }
article.page    { margin: 0; }

/* =====================
   Utilities
   ===================== */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.divider {
  height: 1px;
  background: var(--cream-dark);
}

/* =====================
   Responsive
   ===================== */
@media (max-width: 1100px) {
  :root { --section-y: 88px; --pad-x: 28px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .material-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 820px) {
  :root { --section-y: 64px; --pad-x: 20px; }
  .grid-3, .steps-wrap, .pricing-panel.active, .testimonial-grid,
  .value-strip { grid-template-columns: 1fr; }
  .steps-wrap::before { display: none; }
  .value-strip .value-item { border-right: none; border-bottom: 1px solid var(--cream-dark); }
  .value-strip .value-item:last-child { border-bottom: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-panel.active { grid-template-columns: 1fr; max-width: 420px; }
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; margin-left: auto; }
  .hero-actions { flex-direction: column; align-items: center; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-dark { padding: 80px var(--pad-x); }
}

@media (max-width: 480px) {
  :root { --section-y: 48px; }
  .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .material-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card { padding: 36px 28px; }
}

/* =============================================================
   HOMEPAGE — Cinematic Hero
   ============================================================= */

.ineffe-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ineffe-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 115%; /* extra height for parallax travel */
  object-fit: cover;
  transform-origin: center top;
  will-change: transform;
}

.ineffe-hero__bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ineffe-hero__overlay {
  position: absolute;
  inset: 0;
  /* opacity set dynamically by widget inline style */
  background: linear-gradient(to bottom, rgba(230,222,204,0.45) 0%, rgba(230,222,204,0.80) 100%);
}

.ineffe-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 var(--pad-x);
}

.ineffe-hero__logo {
  width: 72px;
  height: auto;
  margin: 0 auto 2rem;
  display: block;
}

.ineffe-hero__eyebrow {
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-family: var(--font-sans);
  margin-bottom: 1.25rem;
}

.ineffe-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.ineffe-hero__sub {
  color: var(--charcoal-mid);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 520px;
  margin: 0 auto 2.75rem;
  line-height: 1.6;
}

.ineffe-hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.ineffe-hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--charcoal-lt);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ineffe-hero__scroll-pip {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPip 1.8s ease-in-out infinite;
}

@keyframes scrollPip {
  0%, 100% { opacity: 0.25; transform: scaleY(0.4) translateY(-6px); }
  50%       { opacity: 1;    transform: scaleY(1)   translateY(0);    }
}

/* =============================================================
   HOMEPAGE — Quality Marquee Strip
   ============================================================= */

.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(189,165,93,0.2);
  border-bottom: 1px solid rgba(189,165,93,0.2);
  padding: 0.875rem 0;
  background: var(--cream-light);
}

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  white-space: nowrap;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  font-family: var(--font-sans);
  padding: 0 2.5rem;
}

.marquee-item::after {
  content: "·";
  margin-left: 2.5rem;
  color: var(--gold);
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================================
   HOMEPAGE — Split Section (image + text 50/50)
   ============================================================= */

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

.split-section--reverse > :first-child { order: 2; }
.split-section--reverse > :last-child  { order: 1; }

.split-section__image {
  overflow: hidden;
}

.split-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-section__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  background: var(--cream);
}

/* =============================================================
   HOMEPAGE — Box Reveal (full-bleed image with text overlay)
   ============================================================= */

.box-reveal {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.box-reveal__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box-reveal__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20,15,10,0.80) 0%,
    rgba(20,15,10,0.35) 60%,
    rgba(20,15,10,0.05) 100%
  );
}

.box-reveal__content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding: var(--section-y) clamp(32px, 6vw, 100px);
}

.box-reveal__content .display-xl,
.box-reveal__content h2 {
  color: var(--cream-light);
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.box-reveal__content .text-lead,
.box-reveal__content p {
  color: rgba(238,237,231,0.8);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* =============================================================
   HOMEPAGE — Quiz CTA Section
   ============================================================= */

.quiz-cta {
  background: var(--cream);
  text-align: center;
  padding: calc(var(--section-y) * 1.6) var(--pad-x);
}

.quiz-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.08;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.quiz-cta__sub {
  color: var(--charcoal-mid);
  max-width: 480px;
  margin: 0 auto 2.75rem;
  font-size: 1.05rem;
  line-height: 1.65;
}

/* =============================================================
   HOMEPAGE — Gift Strip (green CTA block)
   ============================================================= */

.gift-strip {
  background: var(--green);
  padding: var(--section-y) clamp(var(--pad-x), 8vw, 100px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.gift-strip__eyebrow {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.gift-strip__title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  font-weight: 300;
  color: var(--cream-light);
  line-height: 1.12;
  margin-bottom: 1rem;
}

.gift-strip__body {
  color: rgba(238,237,231,0.75);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.gift-strip__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.gift-strip .btn-outline-light {
  animation: creamPulse 3s ease-in-out infinite;
}
.gift-strip .btn-outline-light:hover {
  box-shadow: 0 0 36px rgba(238,237,231,0.45), 0 6px 20px rgba(238,237,231,0.2);
  animation-play-state: paused;
}

.gift-strip__image {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

/* counter: no transition so number jumps are instant */
[data-counter] { font-variant-numeric: tabular-nums; }

/* =============================================================
   TRY-OR-GIFT-A-BOX PAGE
   ============================================================= */

.section-dark-green {
  background: var(--green);
}

.label-light {
  color: var(--gold-light);
}

.tryorgift-hero {
  padding: clamp(120px, 18vw, 180px) var(--pad-x) clamp(80px, 12vw, 120px);
  text-align: center;
}

.tryorgift-hero .display-xl,
.tryorgift-hero .text-lead {
  color: var(--cream-light);
}

.tryorgift-hero .text-lead {
  color: rgba(238,237,231,0.8);
}

.tryorgift-hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* Stronger gold hover glow inside the dark hero */
.tryorgift-hero .btn-gold:hover {
  box-shadow: 0 0 40px rgba(189,165,93,0.55), 0 8px 24px rgba(189,165,93,0.35);
}

/* Outline-light gets a white ambient glow to match */
.tryorgift-hero .tryorgift-btn-ghost {
  box-shadow: 0 0 24px rgba(255,255,255,0.15), 0 4px 16px rgba(255,255,255,0.08);
}
/* Override btn-outline-light:hover — keep ghost look, lift to match gold button */
.tryorgift-hero .tryorgift-btn-ghost:hover {
  background: rgba(255,255,255,0.08) !important;
  color: var(--cream-light) !important;
  border-color: rgba(238,237,231,0.65) !important;
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(255,255,255,0.3), 0 8px 24px rgba(255,255,255,0.15);
}

@media (max-width: 520px) {
  .tryorgift-hero-actions { flex-direction: column; }
  .tryorgift-hero-actions .btn { width: 100%; text-align: center; }
}

/* =============================================================
   HOMEPAGE responsive overrides
   ============================================================= */

@media (max-width: 900px) {
  .split-section { grid-template-columns: 1fr; }
  .split-section--reverse > :first-child { order: 0; }
  .split-section--reverse > :last-child  { order: 0; }
  .split-section__image { min-height: 360px; }
  .split-section__body  { padding: 56px var(--pad-x); }

  .gift-strip { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .gift-strip__image { max-width: 480px; margin: 0 auto; }
}

@media (max-width: 600px) {
  .ineffe-hero__title { font-size: clamp(2.5rem, 10vw, 3.5rem); }
  .ineffe-hero__ctas  { flex-direction: column; align-items: center; }
  .box-reveal         { min-height: 60vh; }
  .quiz-cta__title    { font-size: clamp(2.25rem, 9vw, 3rem); }
}

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

/* Social icons — light background version of footer socials */
.contact-social { display: flex; gap: 12px; flex-wrap: wrap; }
.contact-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal-lt);
  transition: all var(--t);
  text-decoration: none;
}
.contact-social a:hover { border-color: var(--gold); color: var(--gold); }

/* Return form — labels + file input */
.return-form label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.file-input-hidden {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.file-field-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.file-input-wrap {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.file-input-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  transition: border-color var(--t), color var(--t);
  margin-bottom: 0;
  white-space: nowrap;
  background: var(--white);
}
.file-input-btn:hover { border-color: var(--gold); color: var(--gold); }
.file-input-name {
  font-size: 0.875rem;
  color: var(--charcoal-lt);
  font-family: var(--font-sans);
}
.file-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.file-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px 5px 12px;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--white);
}
.file-tag-name {
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.file-tag-remove {
  background: none;
  border: none;
  padding: 0 2px;
  cursor: pointer;
  color: var(--charcoal-lt);
  font-size: 1rem;
  line-height: 1;
  transition: color var(--t);
  flex-shrink: 0;
}
.file-tag-remove:hover { color: var(--charcoal); }
.file-size-warning {
  margin-top: 8px;
  font-size: 0.8125rem;
  font-family: var(--font-sans);
  color: #b94a3a;
}
