/* =========================================================
   Fruitisimo Group — Brand Stylesheet
   Live What You Love
   ========================================================= */

/* --- Custom Properties --- */
:root {
  --orange: #FF6B00;
  --orange-light: #FF8C35;
  --orange-pale: #FFF0E6;
  --orange-dark: #D95A00;
  --dark: #1A1208;
  --charcoal: #2C2416;
  --text: #3A3020;
  --text-muted: #7A7060;
  --border: #E8E0D5;
  --bg-light: #FDFAF7;
  --bg-cream: #F8F3EC;
  --white: #FFFFFF;

  --font-display: 'Space Grotesk', 'Trebuchet MS', system-ui, sans-serif;
  --font-body: 'Manrope', 'Segoe UI', system-ui, sans-serif;

  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(26, 18, 8, 0.08);
  --shadow-lg: 0 16px 48px rgba(26, 18, 8, 0.14);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --max-w: 1200px;
  --nav-h: 72px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.1;
  color: var(--dark);
  font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }

p { font-size: 1.0625rem; line-height: 1.75; }

.text-orange { color: var(--orange); }
.text-muted { color: var(--text-muted); }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }
.section--sm { padding: 64px 0; }
.section--lg { padding: 140px 0; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.35);
}
.btn--primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.45);
}

.btn--outline {
  border: 2px solid var(--orange);
  color: var(--orange);
}
.btn--outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--ghost {
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
}
.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.btn--dark {
  background: var(--dark);
  color: var(--white);
}
.btn--dark:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(26,18,8,0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: var(--transition);
  flex-shrink: 0;
}

.nav__logo:hover { opacity: 0.85; }

.nav__logo-img {
  height: 41px;
  width: auto;
  display: block;
  /* On dark nav: logo is orange, shows fine on dark bg */
  /* On light nav (scrolled): shows perfectly on white */
  transition: var(--transition);
}

.nav__logo-group {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding-left: 8px;
  border-left: 1px solid rgba(255,255,255,0.2);
  line-height: 1;
  align-self: center;
  padding-top: 2px;
  transition: var(--transition);
}

.nav.scrolled .nav__logo-group {
  color: var(--text-muted);
  border-left-color: var(--border);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  text-decoration: none;
}

.nav__link:hover,
.nav__link.active {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}

.nav.scrolled .nav__link {
  color: var(--text-muted);
}
.nav.scrolled .nav__link:hover,
.nav.scrolled .nav__link.active {
  color: var(--dark);
  background: var(--bg-cream);
}

.nav__cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 100px;
  font-weight: 600;
}
.nav__cta:hover {
  background: var(--orange-dark) !important;
  background-color: var(--orange-dark) !important;
}

.nav.scrolled .nav__cta {
  color: var(--white) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav.scrolled .nav__toggle span { background: var(--dark); }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A1208 0%, #2C1810 40%, #3D2010 70%, #2C1810 100%);
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(255,107,0,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255,140,53,0.10) 0%, transparent 60%);
}

.hero__visual {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 52%;
  max-width: 680px;
  opacity: 0.12;
  pointer-events: none;
}

.hero__visual-circles {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: 44%;
  aspect-ratio: 1;
  pointer-events: none;
}

.hero__circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,107,0,0.2);
}

.hero__circle:nth-child(1) { inset: 0; }
.hero__circle:nth-child(2) { inset: 8%; opacity: 0.6; }
.hero__circle:nth-child(3) { inset: 16%; opacity: 0.4; background: radial-gradient(circle at 40% 40%, rgba(255,107,0,0.08), transparent); }

.hero__fruit-accent {
  position: absolute;
  width: 520px;
  height: 520px;
  right: 8%;
  top: 50%;
  transform: translateY(-52%);
  background: radial-gradient(circle at 38% 38%, rgba(255,107,0,0.22) 0%, rgba(255,140,53,0.08) 45%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
  width: 100%;
}

.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero__text { /* left column */ }

.hero__video-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__product-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
  line-height: 0; /* remove gap under inline img */
}

.hero__video-col video,
.hero__product-img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  display: block;
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__video-col { display: none; }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.3);
  color: var(--orange-light);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__title {
  color: var(--white);
  font-weight: 700;
  max-width: 680px;
  margin-bottom: 12px;
}

.hero__title .accent { color: var(--orange); }

.hero__tagline {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}

.hero__desc {
  max-width: 560px;
  color: rgba(255,255,255,0.7);
  font-size: 1.0625rem;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero__stat-value span { color: var(--orange); }

.hero__stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,107,0,0.6), transparent);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0% { opacity: 1; transform: scaleY(1) translateY(0); }
  100% { opacity: 0; transform: scaleY(0.5) translateY(20px); }
}

/* --- Section Labels --- */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

/* --- Brand Story --- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story__lead {
  font-size: 1.1875rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 24px;
}

.story__quote {
  position: relative;
  padding: 28px 32px;
  background: var(--bg-cream);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 32px 0;
}

.story__quote p {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.65;
}

.story__quote cite {
  display: block;
  margin-top: 12px;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: normal;
  font-weight: 600;
}

/* --- Timeline --- */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), var(--orange-pale));
}

.timeline__item {
  position: relative;
  padding-bottom: 28px;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--orange-pale);
}

.timeline__year {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange);
  text-transform: uppercase;
}

.timeline__text {
  font-size: 0.9375rem;
  color: var(--text);
  margin-top: 2px;
}

/* --- What Makes Us Different --- */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.diff-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.diff-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.diff-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.diff-card:hover::before { transform: scaleX(1); }

.diff-card__icon {
  width: 56px;
  height: 56px;
  background: var(--orange-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.diff-card:hover .diff-card__icon {
  background: var(--orange);
  transform: scale(1.05);
}

.diff-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  font-family: var(--font-display);
}

.diff-card__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- LWYL Section --- */
.lwyl {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.lwyl__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(255,107,0,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 0% 30%, rgba(255,107,0,0.06) 0%, transparent 60%);
}

.lwyl__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lwyl__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.lwyl__title {
  color: var(--white);
  margin-bottom: 24px;
}

.lwyl__title .accent { color: var(--orange); }

.lwyl__text {
  color: rgba(255,255,255,0.65);
  font-size: 1.0625rem;
  line-height: 1.85;
  margin-bottom: 36px;
}

.lwyl__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.lwyl__pill {
  background: rgba(255,107,0,0.12);
  border: 1px solid rgba(255,107,0,0.25);
  color: var(--orange-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
}

.lwyl__claims {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lwyl__claim {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.lwyl__claim-mark {
  width: 36px;
  height: 36px;
  background: rgba(255,107,0,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.lwyl__claim-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  line-height: 1.5;
}

/* --- Franchise Overview --- */
.franchise-bg {
  background: var(--bg-cream);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 56px 0;
  box-shadow: var(--shadow);
}

.stat-box {
  background: var(--white);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

.stat-box:hover {
  background: var(--orange);
}

.stat-box:hover .stat-box__value,
.stat-box:hover .stat-box__unit,
.stat-box:hover .stat-box__label { color: var(--white); }

.stat-box__value {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  transition: var(--transition);
}

.stat-box__unit {
  font-size: 1.5rem;
  color: var(--orange);
  font-weight: 700;
  transition: var(--transition);
}

.stat-box__label {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 6px;
  transition: var(--transition);
}

.franchise-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.franchise-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.franchise-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--orange);
}

.franchise-card__num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.franchise-card__title {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  font-family: var(--font-display);
}

.franchise-card__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Markets --- */
.markets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 56px;
}

.markets-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
}

.markets-panel:hover {
  box-shadow: var(--shadow);
}

.markets-panel__badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.markets-panel__badge--active {
  background: rgba(34,197,94,0.1);
  color: #16a34a;
}

.markets-panel__badge--target {
  background: var(--orange-pale);
  color: var(--orange);
}

.markets-panel__title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  font-family: var(--font-display);
}

.country-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.country-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.country-item:last-child { border-bottom: none; }

.country-item__flag {
  font-size: 1.25rem;
}

.country-item__name { font-weight: 500; }
.country-item__detail { color: var(--text-muted); font-size: 0.875rem; margin-left: auto; }

/* --- Awards --- */
.awards-section { background: var(--bg-cream); }

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.award-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}

.award-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--orange);
  transform: translateY(-3px);
}

.award-card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.award-card__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.award-card__sub {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* --- Press / Testimonials --- */
.press-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.press-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.press-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--orange);
}

.press-card__source {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.press-card__quote {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.65;
  margin-bottom: 16px;
}

.press-card__meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* --- Partner Profile --- */
.partner-section { background: var(--dark); }

.partner__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.partner__title { color: var(--white); margin-bottom: 20px; }
.partner__text { color: rgba(255,255,255,0.65); margin-bottom: 32px; line-height: 1.85; }

.partner__highlight {
  background: rgba(255,107,0,0.12);
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 32px;
}

.partner__highlight p {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--orange-light);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.partner-traits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.partner-trait {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: var(--transition);
}

.partner-trait:hover {
  background: rgba(255,107,0,0.1);
  border-color: rgba(255,107,0,0.2);
}

.partner-trait__icon { font-size: 1.25rem; margin-bottom: 6px; }
.partner-trait__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--orange);
  position: relative;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 100% at 100% 50%, rgba(255,255,255,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 30% 70% at 0% 50%, rgba(0,0,0,0.06) 0%, transparent 60%);
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.cta-banner__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}

.cta-banner__title {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner__sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.125rem;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

/* --- Footer --- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer__brand p {
  font-size: 0.9375rem;
  line-height: 1.75;
  margin: 16px 0 20px;
  color: rgba(255,255,255,0.5);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: var(--transition);
}

.footer__logo:hover { opacity: 0.8; }

.footer__logo-img {
  height: 28px;
  width: auto;
  display: block;
  /* Invert to white for dark footer background */
  filter: brightness(0) invert(1);
}

.footer__logo-group {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding-left: 8px;
  border-left: 1px solid rgba(255,255,255,0.15);
  align-self: center;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.footer__social {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  text-decoration: none;
}

.footer__social:hover {
  background: var(--orange);
  color: var(--white);
}

.footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__link {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  text-decoration: none;
}

.footer__link:hover { color: var(--orange); }

.footer__offices {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__office {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.45);
}

.footer__office strong {
  color: rgba(255,255,255,0.75);
  display: block;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.3);
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.3);
  transition: var(--transition);
  text-decoration: none;
}

.footer__legal-link:hover { color: rgba(255,255,255,0.6); }

/* --- Scroll Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up--delay-1 { transition-delay: 0.1s; }
.fade-up--delay-2 { transition-delay: 0.2s; }
.fade-up--delay-3 { transition-delay: 0.3s; }
.fade-up--delay-4 { transition-delay: 0.4s; }

/* --- Utility --- */
.text-center { text-align: center; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }

/* --- Mobile Menu --- */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  flex-direction: column;
}

.nav__mobile.open { display: flex; }

.nav__mobile-bg {
  position: absolute;
  inset: 0;
  background: rgba(26,18,8,0.95);
  backdrop-filter: blur(12px);
}

.nav__mobile-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 100px 32px 48px;
}

.nav__mobile-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.nav__mobile-link {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
  text-decoration: none;
  font-family: var(--font-display);
}

.nav__mobile-link:hover { color: var(--orange); }

.nav__mobile-cta { margin-top: 32px; }

/* --- Values Strip --- */
/* --- Ingredient Bar --- */
.ingred-bar {
  background: #F7F2EA;
  border-top: 1px solid rgba(180, 150, 110, 0.18);
  border-bottom: 1px solid rgba(180, 150, 110, 0.18);
  padding: 0;
}

.ingred-bar__list {
  display: flex;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ingred-bar__sep {
  width: 1px;
  background: rgba(180, 150, 110, 0.22);
  flex-shrink: 0;
  margin: 20px 0;
}

.ingred-bar__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 28px 24px;
  text-align: center;
  transition: background var(--transition);
}

.ingred-bar__item:hover {
  background: rgba(255, 107, 0, 0.04);
}

.ingred-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.ingred-bar__label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}

.ingred-bar__sub {
  font-family: var(--font-body);
  font-size: 0.775rem;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .ingred-bar__list {
    flex-wrap: wrap;
  }
  .ingred-bar__item {
    flex: 0 0 50%;
    padding: 20px 16px;
  }
  .ingred-bar__sep:nth-child(4) {
    display: none;
  }
  .ingred-bar__sep:nth-child(2) {
    display: none;
  }
  .ingred-bar__sep {
    width: 100%;
    height: 1px;
    margin: 0 20px;
  }
}

@media (max-width: 480px) {
  .ingred-bar__item {
    flex: 0 0 100%;
  }
  .ingred-bar__sep {
    display: none;
  }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .story-grid,
  .lwyl__inner,
  .partner__inner { grid-template-columns: 1fr; gap: 48px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: 1fr 1fr; }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .franchise-cards { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav__links { display: none; }
  .nav__toggle { display: flex; }

  .section { padding: 72px 0; }
  .section--lg { padding: 90px 0; }

  .diff-grid { grid-template-columns: 1fr; }
  .franchise-cards { grid-template-columns: 1fr; }
  .markets-grid { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr; }
  .partner-traits { grid-template-columns: 1fr 1fr; }
  .awards-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .hero__stats { gap: 28px; }
  .hero__stat-value { font-size: 2rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .partner-traits { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; gap: 20px; }
  .btn-group { flex-direction: column; align-items: flex-start; }
}

/* --- Page-specific: About --- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.brand-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.brand-value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  text-align: center;
}

.brand-value-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.brand-value-card__icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.brand-value-card__title {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.brand-value-card__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Page-specific: Franchising --- */
.franchise-hero {
  background: var(--dark);
  padding: 160px 0 80px;
}

.investment-table {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 48px;
}

.investment-table table {
  width: 100%;
  border-collapse: collapse;
}

.investment-table th {
  background: var(--bg-cream);
  padding: 14px 20px;
  text-align: left;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border);
}

.investment-table td {
  padding: 14px 20px;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.investment-table tr:last-child td { border-bottom: none; }
.investment-table tr:hover td { background: var(--bg-light); }

.investment-table td:last-child {
  font-weight: 600;
  color: var(--dark);
}

/* --- Page-specific: Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-control::placeholder { color: var(--text-muted); }

.offices-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.office-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: var(--transition);
}

.office-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
}

.office-card__country {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}

.office-card__address {
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.5;
}

.office-card__web {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* --- Page Header (inner pages) --- */
.page-header {
  background: var(--dark);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-header__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(255,107,0,0.12) 0%, transparent 60%);
}

.page-header__inner { position: relative; z-index: 1; }

.page-header__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.page-header__title { color: var(--white); margin-bottom: 20px; }

.page-header__sub {
  color: rgba(255,255,255,0.6);
  font-size: 1.125rem;
  max-width: 560px;
  line-height: 1.75;
}

/* =========================================================
   Language Switcher
   ========================================================= */

.lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
}

/* Globe trigger button */
.lang-switcher__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
  background: transparent;
}

.lang-switcher__btn:hover,
.lang-switcher__btn[aria-expanded="true"] {
  color: var(--dark);
  background: var(--bg-cream);
}

.lang-switcher__btn svg {
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.lang-switcher__btn:hover svg,
.lang-switcher__btn[aria-expanded="true"] svg {
  opacity: 1;
}

.lang-switcher__current {
  text-transform: uppercase;
  font-size: 0.75rem;
}

/* Dropdown panel */
.lang-switcher__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 6px;
  display: none;
  flex-direction: column;
  gap: 1px;
  z-index: 200;
}

.lang-switcher__dropdown.is-open {
  display: flex;
  animation: dropdown-in 0.18s ease both;
}

@keyframes dropdown-in {
  from { opacity: 0; transform: translateY(-6px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Individual language items */
.lang-switcher__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  width: 100%;
  text-align: left;
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
}

.lang-switcher__item:hover {
  background: var(--orange-pale);
  color: var(--orange-dark);
}

.lang-switcher__item.is-active {
  background: var(--orange-pale);
  color: var(--orange);
  font-weight: 700;
}

.lang-switcher__item.is-active::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  margin-left: auto;
  flex-shrink: 0;
}

/* Flag / code pill */
.lang-switcher__code {
  display: inline-block;
  min-width: 28px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

.lang-switcher__item.is-active .lang-switcher__code {
  color: var(--orange);
}

/* Scrolled nav: keep switcher visible */
.nav.scrolled .lang-switcher__btn {
  color: var(--text-muted);
}

/* On hero (white nav): keep readable */
.nav:not(.scrolled) .lang-switcher__btn {
  color: rgba(255,255,255,0.75);
}

.nav:not(.scrolled) .lang-switcher__btn:hover,
.nav:not(.scrolled) .lang-switcher__btn[aria-expanded="true"] {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}

/* Mobile: language switcher inside mobile menu */
.nav__mobile .lang-switcher {
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 0 0;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

.nav__mobile .lang-switcher__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 12px 0 0;
}

.nav__mobile .lang-switcher__pill {
  padding: 6px 14px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}

.nav__mobile .lang-switcher__pill:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.nav__mobile .lang-switcher__pill.is-active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
