/* ================================================================
   FRENCH CLIFF — REDESIGN v3.0
   Brand palette: Brown × Cream × White × Charcoal
   This file extends fc-enhancements.css — load after it.
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ----------------------------------------------------------------
   CSS VARIABLES — Brand Palette + Spacing Scale
   ---------------------------------------------------------------- */
:root {
  /* Brand colours */
  --color-bg:      #FAF6F1;
  --color-primary: #5A3E2B;
  --color-accent:  #C8956D;
  --color-ink:     #1F1A17;
  --color-muted:   #8B7D6F;
  --color-white:   #FFFFFF;
  --color-surface: #F2EBE3;

  /* Typography */
  --font-serif: 'DM Serif Display', 'Crimson Text', Georgia, serif;
  --font-sans:  'DM Sans', 'Inter', system-ui, sans-serif;

  /* Spacing scale (px) */
  --sp-1:   8px;
  --sp-2:  16px;
  --sp-3:  24px;
  --sp-4:  48px;
  --sp-5:  96px;
  --sp-6: 144px;

  /* Easings */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Override existing gold vars to brand accent */
  --gold:       #C8956D;
  --gold-light: #DDB08B;
  --gold-dark:  #A57449;
  --warm:       #FAF6F1;

  /* Override legacy grey text vars — force dark brown throughout */
  --text:       #1F1A17;
  --text-light: #3D2B1F;
}

/* ----------------------------------------------------------------
   GLOBAL RESETS & TYPOGRAPHY OVERRIDES
   ---------------------------------------------------------------- */
body {
  background: var(--color-bg) !important;
  color: var(--color-ink) !important;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif) !important;
  color: var(--color-ink) !important;
}

p, .text, .sec-title, .sub-title, li {
  color: var(--color-ink) !important;
}

/* Logo: remove white JPEG background by blending dark pixels only */
.logo img, .nav-logo img {
  mix-blend-mode: multiply;
  background: transparent;
}

/* ----------------------------------------------------------------
   HEADER — cream background, brown accents
   ---------------------------------------------------------------- */
.header-upper {
  background: var(--color-bg) !important;
}
.header-top {
  background: var(--color-primary) !important;
}
.header-top .contact-info a,
.header-top .social-icon a {
  color: rgba(250,246,241,0.85) !important;
}
.header-top .social-icon a:hover { color: var(--color-accent) !important; }

/* ----------------------------------------------------------------
   HERO — SPLIT TWO-COLUMN
   ---------------------------------------------------------------- */
.fc-split-hero {
  display: flex;
  min-height: max(92vh, 580px);
  overflow: hidden;
  position: relative;
}

/* Text column */
.fc-split-hero__text {
  width: 40%;
  display: flex;
  align-items: center;
  background: var(--color-bg);
  padding: var(--sp-5) clamp(32px, 5vw, 64px);
  position: relative;
  z-index: 2;
}

.fc-hero-inner {
  max-width: 440px;
}

.fc-hero-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--sp-3);
}

.fc-hero-headlines {
  position: relative;
  min-height: clamp(120px, 18vw, 220px);
  margin-bottom: var(--sp-3);
}

.fc-headline-slide {
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth);
  pointer-events: none;
}
.fc-headline-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.fc-headline-slide h1 {
  font-family: var(--font-serif) !important;
  font-size: clamp(2rem, 3.5vw, 3.2rem) !important;
  line-height: 1.18 !important;
  color: var(--color-ink) !important;
  font-weight: 400 !important;
  letter-spacing: -0.01em !important;
}

.fc-hero-tagline {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: var(--sp-4);
}

.fc-hero-btn {
  display: inline-block;
  padding: 16px 32px;
  background: var(--color-accent);
  color: var(--color-bg) !important;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none !important;
  border-radius: 2px;
  transition: transform 0.25s var(--ease-smooth), box-shadow 0.25s var(--ease-smooth), background 0.25s;
  white-space: nowrap;
}
.fc-hero-btn:hover {
  transform: translateY(-2px);
  background: var(--color-primary);
  box-shadow: 0 8px 28px rgba(90,62,43,0.28);
  color: var(--color-bg) !important;
}

.fc-hero-slide-dots {
  display: flex;
  gap: 10px;
  margin-top: var(--sp-4);
  align-items: center;
}
.fc-hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-muted);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.fc-hero-dot.active {
  background: var(--color-accent);
  transform: scale(1.5);
}

/* Image column */
.fc-split-hero__slides {
  width: 60%;
  position: relative;
  overflow: hidden;
  background: var(--color-surface);
}

.fc-slide-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s var(--ease-smooth);
}
.fc-slide-img.active { opacity: 1; }

.fc-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  animation: none;
}

.fc-slide-img.active img {
  animation: fc-ken-burns-in 8s var(--ease-smooth) forwards;
}
.fc-slide-img.out img {
  animation: fc-ken-burns-out 8s var(--ease-smooth) forwards;
}

@keyframes fc-ken-burns-in {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
@keyframes fc-ken-burns-out {
  from { transform: scale(1.08); }
  to   { transform: scale(1.04); }
}

/* Slide dots on image column (bottom-right) */
.fc-slide-nav {
  position: absolute;
  bottom: var(--sp-3);
  right: var(--sp-3);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.fc-slide-nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.fc-slide-nav-dot.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: scale(1.4);
}

/* Mobile hero */
@media (max-width: 768px) {
  .fc-split-hero {
    flex-direction: column;
    min-height: auto;
  }
  .fc-split-hero__text {
    width: 100%;
    order: 2;
    padding: var(--sp-4) var(--sp-3);
  }
  .fc-split-hero__slides {
    width: 100%;
    height: 60vh;
    min-height: 320px;
    order: 1;
    position: relative;
  }
  .fc-slide-img { position: absolute; }
  .fc-headline-slide h1 { font-size: clamp(1.8rem, 7vw, 2.4rem) !important; }
  .fc-hero-headlines { min-height: clamp(100px, 22vw, 160px); }
}

/* ----------------------------------------------------------------
   BRAND TICKER — cream bg
   ---------------------------------------------------------------- */
.fc-ticker {
  background: var(--color-primary) !important;
  border-color: rgba(200,149,109,0.3) !important;
}
.fc-ticker-inner {
  color: rgba(250,246,241,0.75) !important;
}
.fc-ticker-inner span::before { color: var(--color-accent) !important; }

/* ----------------------------------------------------------------
   WELCOME SECTION — cream bg, dark text throughout
   ---------------------------------------------------------------- */
.welcome-section {
  background: var(--color-bg) !important;
}
/* Override Bootstrap text-white inside welcome sections */
.welcome-section h2,
.welcome-section h3,
.welcome-section p,
.welcome-section div,
.welcome-section li,
.welcome-section .text-white,
.welcome-section .sub-title,
.welcome-section .sec-title {
  color: var(--color-ink) !important;
}
/* Experience year badge — sits on dark brown bg, needs white text */
.experience-year {
  background: var(--color-primary) !important;
}
.experience-year,
.experience-year h3 {
  color: #ffffff !important;
}

/* ----------------------------------------------------------------
   CATALOGUE PAGE — Card Grid
   ---------------------------------------------------------------- */
.fc-cat-page { background: var(--color-bg); }

.fc-cat-page-hero {
  background: var(--color-primary);
  color: var(--color-bg);
  padding: var(--sp-5) 0 var(--sp-4);
  text-align: center;
}
.fc-cat-page-hero h1 {
  font-family: var(--font-serif) !important;
  font-size: clamp(2.2rem, 5vw, 4rem) !important;
  color: var(--color-bg) !important;
  line-height: 1.15 !important;
  font-weight: 400 !important;
}
.fc-cat-page-hero p {
  color: rgba(250,246,241,0.78);
  font-size: 1.05rem;
  max-width: 580px;
  margin: var(--sp-2) auto var(--sp-4);
  line-height: 1.8;
}
.fc-cat-stat-row {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 6vw, 72px);
  flex-wrap: wrap;
}
.fc-cat-stat-row .stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-accent);
}
.fc-cat-stat-row .stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,246,241,0.65);
  margin-top: 4px;
}

/* Filter bar */
.fc-filter-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--color-surface);
  display: flex;
  justify-content: center;
  gap: var(--sp-1);
  flex-wrap: wrap;
}
.fc-pill {
  padding: 8px 22px;
  border-radius: 100px;
  border: 1.5px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.fc-pill:hover,
.fc-pill.active {
  background: var(--color-accent);
  color: var(--color-bg);
  border-color: var(--color-accent);
  box-shadow: 0 4px 14px rgba(200,149,109,0.3);
}

/* Card grid */
.fc-catalogue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: var(--sp-4) 0;
}
@media (max-width: 991px) {
  .fc-catalogue-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 575px) {
  .fc-catalogue-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* Card */
.fc-prod-card {
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  opacity: 1;
  transform: translateY(0);
  transition: box-shadow 0.4s var(--ease-smooth), transform 0.3s var(--ease-smooth);
  scroll-margin-top: 80px;
  animation: fcFadeUp 0.5s var(--ease-smooth) both;
}
.fc-prod-card.fc-card-visible {
  opacity: 1;
  transform: translateY(0);
}
.fc-prod-card:hover {
  box-shadow: 0 16px 48px rgba(90,62,43,0.12);
}
.fc-prod-card[data-hidden="1"] { display: none; }

.fc-prod-card__img-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
  background: var(--color-surface);
  flex-shrink: 0;
}
.fc-prod-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s var(--ease-smooth);
  display: block;
}
.fc-prod-card:hover .fc-prod-card__img-wrap img {
  transform: scale(1.05);
}

/* Hover overlay with "View Details" pill */
.fc-prod-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(90,62,43,0.15);
  opacity: 0;
  transition: opacity 0.4s var(--ease-smooth);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: var(--sp-3);
}
.fc-prod-card:hover .fc-prod-card__overlay { opacity: 1; }

.fc-view-pill {
  background: var(--color-bg);
  color: var(--color-primary);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  transform: translateY(12px);
  transition: transform 0.3s var(--ease-smooth);
  text-decoration: none !important;
  display: inline-block;
}
.fc-prod-card:hover .fc-view-pill {
  transform: translateY(0);
}

/* Card body */
.fc-prod-card__body {
  padding: var(--sp-2) var(--sp-2) var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fc-prod-card__name {
  font-family: var(--font-serif) !important;
  font-size: 1.05rem !important;
  color: var(--color-ink) !important;
  font-weight: 400 !important;
  line-height: 1.3;
  margin: 0 !important;
}
.fc-prod-card__tag {
  font-size: 0.78rem;
  color: var(--color-muted);
  font-family: var(--font-sans);
  line-height: 1.5;
}
.fc-prod-card__enquire {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent) !important;
  text-decoration: none !important;
  transition: color 0.2s, gap 0.2s;
}
.fc-prod-card__enquire:hover {
  color: var(--color-primary) !important;
  gap: 10px;
}
.fc-prod-card__enquire i { font-size: 0.9rem; }

/* Disable hover on touch */
@media (hover: none) {
  .fc-prod-card:hover .fc-prod-card__img-wrap img { transform: scale(1) !important; }
  .fc-prod-card:hover .fc-prod-card__overlay { opacity: 0 !important; }
}

/* ----------------------------------------------------------------
   ABOUT PAGE
   ---------------------------------------------------------------- */

/* Section 1 — Hero */
.fc-about-hero {
  display: flex;
  min-height: 70vh;
  overflow: hidden;
}
.fc-about-hero__text {
  width: 50%;
  display: flex;
  align-items: center;
  background: var(--color-bg);
  padding: var(--sp-5) clamp(32px, 5vw, 80px);
}
.fc-about-hero__text-inner { max-width: 500px; }
.fc-about-hero__text h1 {
  font-family: var(--font-serif) !important;
  font-size: clamp(2.2rem, 4vw, 3.6rem) !important;
  color: var(--color-ink) !important;
  line-height: 1.2 !important;
  font-weight: 400 !important;
  margin-bottom: var(--sp-2) !important;
}
.fc-about-hero__text .fc-sub-label {
  font-family: var(--font-serif) !important;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--color-muted);
  line-height: 1.6;
}
.fc-about-hero__img {
  width: 50%;
  overflow: hidden;
  position: relative;
  background: var(--color-surface);
}
.fc-about-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 768px) {
  .fc-about-hero { flex-direction: column; min-height: auto; }
  .fc-about-hero__text { width: 100%; order: 2; padding: var(--sp-4) var(--sp-3); }
  .fc-about-hero__img { width: 100%; height: 55vw; min-height: 280px; order: 1; }
}

/* Section 2 — Story */
.fc-story-section {
  background: var(--color-white);
  padding: var(--sp-5) 0;
}
.fc-story-section .fc-sec-label {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: var(--sp-2);
}
.fc-story-section h2 {
  font-family: var(--font-serif) !important;
  font-size: clamp(1.8rem, 3vw, 2.6rem) !important;
  color: var(--color-ink) !important;
  font-weight: 400 !important;
  margin-bottom: var(--sp-3) !important;
  line-height: 1.25 !important;
}
.fc-story-section p {
  color: var(--color-muted);
  line-height: 1.85;
  font-size: 1rem;
  margin-bottom: var(--sp-2);
}
.fc-story-section p strong { color: var(--color-ink); font-weight: 600; }
.fc-story-section .fc-story-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--color-surface);
}
.fc-story-section .fc-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Section 3 — Manufacturing × Digital */
.fc-mfg-section {
  background: var(--color-bg);
  padding: var(--sp-5) 0;
  text-align: center;
}
.fc-mfg-section .fc-inner { max-width: 720px; margin: 0 auto; padding: 0 var(--sp-2); }
.fc-mfg-section h2 {
  font-family: var(--font-serif) !important;
  font-size: clamp(1.8rem, 3vw, 2.6rem) !important;
  color: var(--color-ink) !important;
  font-weight: 400 !important;
  margin-bottom: var(--sp-3) !important;
}
.fc-mfg-section p {
  color: var(--color-muted);
  line-height: 1.9;
  font-size: 1.02rem;
  margin-bottom: var(--sp-2);
}

/* Section 4 — What we stand for */
.fc-standsfor-section {
  background: var(--color-white);
  padding: var(--sp-5) 0;
}
.fc-standsfor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-4);
}
@media (max-width: 768px) {
  .fc-standsfor-grid { grid-template-columns: 1fr; gap: var(--sp-3); }
}
.fc-stand-card {
  padding: var(--sp-3) 0;
  border-top: 2px solid var(--color-accent);
}
.fc-stand-card .fc-stand-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-2);
  color: var(--color-primary);
}
.fc-stand-card .fc-stand-icon svg {
  width: 28px; height: 28px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 1.5;
}
.fc-stand-card h4 {
  font-family: var(--font-serif) !important;
  font-size: 1.2rem !important;
  color: var(--color-ink) !important;
  font-weight: 400 !important;
  margin-bottom: var(--sp-1) !important;
  line-height: 1.3 !important;
}
.fc-stand-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.75;
}

/* Section 5 — Progress bars */
.fc-progress-section {
  background: var(--color-bg);
  padding: var(--sp-5) 0;
}
.fc-progress-section .fc-sec-center {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 var(--sp-2);
}
.fc-progress-item { margin-bottom: var(--sp-3); }
.fc-progress-item h5 {
  font-family: var(--font-sans) !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--color-ink) !important;
  margin-bottom: var(--sp-1) !important;
  display: flex !important;
  align-items: center !important;
  gap: var(--sp-1) !important;
}
.fc-progress-track {
  height: 3px;
  background: var(--color-surface);
  border-radius: 0;
  overflow: hidden;
}
.fc-progress-fill {
  height: 100%;
  background: var(--color-accent);
  width: 0%;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.fc-progress-label {
  font-size: 0.72rem;
  color: var(--color-muted);
  margin-top: 4px;
  text-align: right;
  font-family: var(--font-sans);
}

/* Section 6 — B2B Trust */
.fc-b2b-section {
  background: var(--color-primary);
  padding: var(--sp-5) 0;
  text-align: center;
}
.fc-b2b-section .fc-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--sp-3);
}
.fc-b2b-section h2 {
  font-family: var(--font-serif) !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  color: var(--color-bg) !important;
  font-weight: 400 !important;
  margin-bottom: var(--sp-2) !important;
}
.fc-b2b-section p {
  color: rgba(250,246,241,0.9) !important;
  line-height: 1.85;
  font-size: 1rem;
  max-width: 680px;
  margin: 0 auto var(--sp-4);
}
.fc-b2b-ctas {
  display: flex;
  gap: var(--sp-2);
  justify-content: center;
  flex-wrap: wrap;
}
.fc-btn-cream {
  display: inline-block;
  padding: 14px 32px;
  background: var(--color-bg);
  color: var(--color-primary) !important;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none !important;
  border-radius: 2px;
  transition: transform 0.25s, background 0.25s, box-shadow 0.25s;
}
.fc-btn-cream:hover {
  transform: translateY(-2px);
  background: var(--color-accent);
  color: var(--color-bg) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.fc-btn-outline-cream {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--color-bg) !important;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none !important;
  border-radius: 2px;
  border: 1.5px solid rgba(250,246,241,0.5);
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
.fc-btn-outline-cream:hover {
  transform: translateY(-2px);
  border-color: var(--color-accent);
  background: rgba(200,149,109,0.15);
  color: var(--color-bg) !important;
}

/* Section 7 — Final CTA */
.fc-final-cta {
  background: var(--color-bg);
  padding: var(--sp-5) 0;
  text-align: center;
}
.fc-final-cta h2 {
  font-family: var(--font-serif) !important;
  font-size: clamp(2.2rem, 5vw, 4rem) !important;
  color: var(--color-ink) !important;
  font-weight: 400 !important;
  margin-bottom: var(--sp-4) !important;
}

/* ----------------------------------------------------------------
   SHARED SECTION UTILITIES
   ---------------------------------------------------------------- */
.fc-sec-label {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: var(--sp-1);
}
.fc-sec-title {
  font-family: var(--font-serif) !important;
  font-size: clamp(2rem, 4vw, 3.2rem) !important;
  color: var(--color-ink) !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  margin-bottom: var(--sp-3) !important;
}
.fc-body-text {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--color-muted);
}

/* ----------------------------------------------------------------
   SCROLL REVEAL (catalogue cards + about sections)
   ---------------------------------------------------------------- */
.fc-fade-up {
  animation: fcFadeUp 0.7s var(--ease-smooth) both;
}
.fc-fade-up.fc-visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes fcFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ----------------------------------------------------------------
   FOOTER — updated for brand palette
   ---------------------------------------------------------------- */
.main-footer {
  background: var(--color-ink) !important;
  background-image: none !important;
}
.footer-bottom { background: #0f0d0b !important; }

/* ----------------------------------------------------------------
   WHATSAPP — ensure correct pulse
   ---------------------------------------------------------------- */
.fc-whatsapp-btn {
  bottom: 20px !important;
  right: 20px !important;
  min-width: 56px;
  min-height: 56px;
}

/* ----------------------------------------------------------------
   PAGE TITLE BANNER
   ---------------------------------------------------------------- */
.page-title .bg {
  background-color: var(--color-primary) !important;
}

/* ----------------------------------------------------------------
   CONTACT PAGE
   ---------------------------------------------------------------- */
.fc-contact-section {
  background: var(--color-bg);
  padding: var(--sp-5) 0;
}
.fc-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-4);
  align-items: start;
}
@media (max-width: 768px) {
  .fc-contact-grid { grid-template-columns: 1fr; }
}
.fc-contact-info h2 {
  font-family: var(--font-serif) !important;
  font-size: clamp(1.8rem, 3vw, 2.6rem) !important;
  color: var(--color-ink) !important;
  font-weight: 400 !important;
  margin-bottom: var(--sp-3) !important;
}
.fc-contact-item {
  display: flex;
  gap: var(--sp-2);
  align-items: flex-start;
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--color-surface);
}
.fc-contact-item:last-child { border-bottom: none; }
.fc-contact-item .fc-contact-icon {
  width: 44px;
  height: 44px;
  background: var(--color-surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
  font-size: 1rem;
}
.fc-contact-item .fc-contact-detail .fc-contact-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 4px;
}
.fc-contact-item .fc-contact-detail a,
.fc-contact-item .fc-contact-detail p {
  color: var(--color-ink);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s;
  margin: 0;
  line-height: 1.5;
}
.fc-contact-item .fc-contact-detail a:hover { color: var(--color-accent); }

/* Contact form */
.fc-contact-form-wrap {
  background: var(--color-white);
  padding: var(--sp-4);
  border-top: 3px solid var(--color-accent);
}
.fc-contact-form-wrap h3 {
  font-family: var(--font-serif) !important;
  font-size: 1.6rem !important;
  color: var(--color-ink) !important;
  font-weight: 400 !important;
  margin-bottom: var(--sp-3) !important;
}
.fc-form-row { margin-bottom: var(--sp-3); }
.fc-form-row label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 8px;
  font-family: var(--font-sans);
}
.fc-form-row input,
.fc-form-row textarea,
.fc-form-row select {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1.5px solid var(--color-surface);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-ink);
  outline: none;
  transition: border-color 0.3s;
  resize: vertical;
}
.fc-form-row input:focus,
.fc-form-row textarea:focus,
.fc-form-row select:focus {
  border-bottom-color: var(--color-accent);
}
.fc-form-submit {
  display: inline-block;
  padding: 14px 40px;
  background: var(--color-primary);
  color: var(--color-bg) !important;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: transform 0.25s, background 0.25s, box-shadow 0.25s;
}
.fc-form-submit:hover {
  transform: translateY(-2px);
  background: var(--color-accent);
  box-shadow: 0 8px 24px rgba(200,149,109,0.3);
}

/* ----------------------------------------------------------------
   MOBILE GLOBAL
   ---------------------------------------------------------------- */
@media (max-width: 768px) {
  .main-footer .column { margin-bottom: var(--sp-3) !important; }
  .fc-filter-bar { padding: var(--sp-2) var(--sp-2); }
  .fc-catalogue-grid { padding: var(--sp-3) 0; }
  .fc-b2b-ctas { flex-direction: column; align-items: center; }
  .fc-btn-cream, .fc-btn-outline-cream { width: 100%; max-width: 320px; text-align: center; }
}

/* ----------------------------------------------------------------
   SMOOTH SCROLL
   ---------------------------------------------------------------- */
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 80px; }

/* ----------------------------------------------------------------
   ANIMATED UNDERLINE LINKS
   ---------------------------------------------------------------- */
.fc-underline-link {
  position: relative;
  text-decoration: none !important;
  color: var(--color-accent) !important;
}
.fc-underline-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.2s var(--ease-smooth);
}
.fc-underline-link:hover::after { width: 100%; }

/* ----------------------------------------------------------------
   BUTTONS — solid dark brown, white text (all site-wide CTAs)
   ---------------------------------------------------------------- */
/* Solid dark-brown fill for all page-level CTAs */
.btn-style-one,
.link-btn a {
  background-color: var(--color-primary) !important;
  color: #fff !important;
  border: 2px solid var(--color-primary) !important;
  padding: 16px 44px !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.14em !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease !important;
  border-radius: 0 !important;
  display: inline-block !important;
}
.btn-style-one::before { display: none !important; }
.btn-style-one:hover,
.link-btn a:hover {
  background-color: var(--color-accent) !important;
  border-color: var(--color-accent) !important;
  color: #fff !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 28px rgba(90,62,43,0.22) !important;
}

/* cta-block-one_btn has hardcoded white border — override explicitly */
.cta-block-one_btn,
.cta-block-one_btn:before {
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  color: #fff !important;
}
.cta-block-one_btn:hover {
  background-color: var(--color-accent) !important;
  border-color: var(--color-accent) !important;
  color: #fff !important;
}

/* btn-style-two (header "Contact Us") — keep as outlined ghost */
.btn-style-two {
  background: transparent !important;
  color: var(--color-primary) !important;
  border: 2px solid var(--color-primary) !important;
  padding: 12px 32px !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.14em !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  transition: background 0.3s ease, color 0.3s ease !important;
  border-radius: 0 !important;
}
.btn-style-two:hover {
  background-color: var(--color-primary) !important;
  color: #fff !important;
}

/* ----------------------------------------------------------------
   ANIMATION ENHANCEMENTS
   ---------------------------------------------------------------- */

/* Ticker tape scroll */
.fc-ticker {
  overflow: hidden;
  background: var(--color-primary);
  padding: 12px 0;
  white-space: nowrap;
}
.fc-ticker-inner {
  display: inline-flex;
  gap: 48px;
  animation: fc-ticker-scroll 30s linear infinite;
}
.fc-ticker-inner span {
  color: rgba(250,246,241,0.75);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: var(--font-sans);
}
@keyframes fc-ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Image hover — subtle scale on all product/about images */
.image-one img,
.image-two img,
.fc-about-hero__img img,
.fc-story__image img {
  transition: transform 0.55s var(--ease-smooth);
}
.image-one:hover img,
.image-two:hover img { transform: scale(1.04); }

/* Nav links — animated underline */
.main-menu .navigation > li > a {
  position: relative;
}
.main-menu .navigation > li > a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.25s var(--ease-smooth);
}
.main-menu .navigation > li:hover > a::after,
.main-menu .navigation > li.current > a::after { width: 100%; }

/* Service/feature cards — lift on hover */
.service-block-one,
.service-block-two {
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
}
.service-block-two_title { color: var(--color-ink) !important; }
.service-block-two_text  { color: var(--color-muted) !important; }
.service-block-two_icon  { color: var(--color-primary) !important; }
.service-block-two_icon span,
.service-block-two_icon i { color: var(--color-primary) !important; }
.bottom-area { background: var(--color-surface) !important; }

/* services-two-section — force cream bg, dark text */
.services-two-section {
  background: var(--color-bg) !important;
  background-image: none !important;
}
.services-two-section h2,
.services-two-section h3,
.services-two-section h4,
.services-two-section p,
.services-two-section .sub-title,
.services-two-section .sec-title,
.services-two-section .text {
  color: var(--color-ink) !important;
}
.services-two-section .sub-title { color: var(--color-muted) !important; }
.service-block-one:hover,
.service-block-two:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(90,62,43,0.12);
}

/* Scroll progress bar */
#fc-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--color-accent);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* ── PAGE TITLE / HERO BANNER ─── dark bg overlays need white text */
.page-title,
.page-title .bread-crumb li,
.page-title .bread-crumb li a,
.page-title .title h1,
.page-title h1,
.page-title h2,
.page-title p {
  color: #ffffff !important;
}

/* ── CATALOGUE — hide tshirts / sweatshirts filter if they slip through */
[data-filter="tshirts"], [data-filter="sweatshirts"],
[data-category="tshirts"], [data-category="sweatshirts"] {
  display: none !important;
}

/* ── PAGE TITLE — force white (higher specificity override) */
body .page-title .title h1,
body .page-title .content-box h1,
body .page-title .content-wrapper h1,
body section.page-title h1 {
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
body .page-title .bread-crumb li,
body .page-title .bread-crumb li a {
  color: #ffffff !important;
}


/* ================================================================
   FASHION BANNER  — compact, fits one viewport, no scrolling
   ================================================================ */
.fc-fb {
  position: relative;
  height: 600px;           /* fixed height — one screen, no scroll */
  overflow: hidden;
}

/* Individual slide */
.fc-fb__slide {
  display: none;
  position: absolute;
  inset: 0;
  /* grid background */
  background-color: #f0e8de;
  background-image:
    linear-gradient(rgba(0,0,0,.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.065) 1px, transparent 1px);
  background-size: 40px 40px;
  overflow: hidden;
}
.fc-fb__slide--active { display: block; }

/* Slide-in animation */
.fc-fb__slide--in {
  animation: fbIn .5s cubic-bezier(.22,.61,.36,1) both;
}
@keyframes fbIn {
  from { opacity: 0; transform: translateX(36px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Top badge labels ── */
.fc-fb__tag {
  position: absolute;
  top: 20px;
  z-index: 10;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  padding: 7px 15px;
  font-family: var(--font-sans);
  font-size: .72rem;
  color: var(--color-ink);
  line-height: 1.5;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0,0,0,.09);
  display: flex;
  flex-direction: column;
}
.fc-fb__tag--l { left: 28px; }
.fc-fb__tag--r {
  right: 28px;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .05em;
}
.fc-fb__tag strong { font-size: 1rem; font-weight: 700; }
.fc-fb__tag span   { opacity: .75; }
.fc-fb__tag--r:hover { color: var(--color-accent); }

/* ── Five-pill image row ── */
.fc-fb__row {
  position: absolute;
  bottom: 72px;          /* leave space for brand wordmark */
  left: 0; right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  padding: 0 16px;
  z-index: 3;
}

.fc-fb__pill {
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 999px;   /* perfect pill */
}
.fc-fb__pill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .5s ease;
}
.fc-fb__pill:hover img { transform: scale(1.05); }

/* Size variants — heights chosen so all pills sit within the 600px banner */
.fc-fb__pill--s { width: 150px; height: 280px; margin-bottom: 20px; }
.fc-fb__pill--m { width: 185px; height: 340px; }
.fc-fb__pill--l { width: 220px; height: 400px; }

/* ── Brand wordmark ── */
.fc-fb__brand {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  text-align: center;
  font-family: 'DM Serif Display', 'Crimson Text', serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 400;
  color: var(--color-ink);
  letter-spacing: -.01em;
  line-height: 1;
  padding-bottom: 14px;
  z-index: 2;
  pointer-events: none;
  /* sits in front of images slightly */
}

/* ── Sparkles ── */
.fc-fb__spk {
  position: absolute;
  color: var(--color-ink);
  pointer-events: none;
  z-index: 5;
  animation: fbSpk 2.6s ease-in-out infinite;
}
.fc-fb__spk--a { font-size: 1.6rem; bottom: 22%; left: 48%;   animation-delay: 0s;   }
.fc-fb__spk--b { font-size: .85rem; bottom: 17%; left: 50.5%; animation-delay: .5s;  }
.fc-fb__spk--c { font-size: 1.1rem; bottom: 25%; left: 52%;   animation-delay: 1s;   }
@keyframes fbSpk {
  0%,100% { opacity: .5; transform: scale(1) rotate(0deg);   }
  50%      { opacity: 1;  transform: scale(1.5) rotate(22deg); }
}

/* ── Prev / Next arrows ── */
.fc-fb__arr {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 20;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--color-ink);
  box-shadow: 0 2px 14px rgba(0,0,0,.12);
  transition: background .2s, transform .2s;
}
.fc-fb__arr:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.fc-fb__arr--p { left: 18px; }
.fc-fb__arr--n { right: 18px; }

/* ── Dot nav (inside banner, bottom-center) ── */
.fc-fb__dots {
  position: absolute;
  bottom: 10px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
  z-index: 20;
}
.fc-fb__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(90,62,43,.28);
  border: none; cursor: pointer; padding: 0;
  transition: background .25s, transform .25s;
}
.fc-fb__dot--on { background: var(--color-primary); transform: scale(1.4); }

/* ── Responsive ── */
@media (max-width: 860px) {
  .fc-fb { height: 420px; }
  .fc-fb__pill--s { width: 100px; height: 190px; margin-bottom: 14px; }
  .fc-fb__pill--m { width: 125px; height: 240px; }
  .fc-fb__pill--l { width: 150px; height: 285px; }
  .fc-fb__brand   { font-size: clamp(2.2rem, 9vw, 4rem); padding-bottom: 10px; }
  .fc-fb__row     { bottom: 55px; gap: 8px; }
}
@media (max-width: 520px) {
  .fc-fb { height: 320px; }
  .fc-fb__pill--s { width: 65px;  height: 125px; margin-bottom: 10px; }
  .fc-fb__pill--m { width: 82px;  height: 158px; }
  .fc-fb__pill--l { width: 98px;  height: 190px; border-radius: 60px; }
  .fc-fb__brand   { font-size: clamp(1.7rem, 11vw, 2.8rem); padding-bottom: 8px; }
  .fc-fb__row     { bottom: 42px; gap: 5px; padding: 0 6px; }
  .fc-fb__tag--l  { left: 10px; }
  .fc-fb__tag--r  { right: 10px; }
  .fc-fb__spk     { display: none; }
}

/* ================================================================
   CONTACT PAGE — Hero Statement Block
   ================================================================ */
.fc-contact-hero {
  padding: 56px 20px 40px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.fc-contact-hero p {
  font-family: 'Crimson Text', 'DM Serif Display', Georgia, serif !important;
  font-size: clamp(1.45rem, 2.8vw, 2.1rem) !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
  color: var(--color-ink) !important;
  margin-bottom: 28px !important;
}
.fc-contact-hero strong {
  font-weight: 700;
  color: var(--color-ink);
}
/* Golden/amber accent line — matches the screenshot colour */
.fc-contact-hero__accent {
  color: #B8842A;
  font-style: normal;
}
/* Inline "Contact Us" button */
.fc-contact-hero__btn {
  display: inline-block;
  background: var(--color-primary);   /* same dark brown as the screenshot */
  color: #fff !important;
  font-family: 'Crimson Text', serif;
  font-size: inherit;
  font-weight: 600;
  padding: 4px 20px 6px;
  border-radius: 4px;
  text-decoration: none;
  transition: background .2s, transform .15s;
  vertical-align: middle;
  line-height: 1.5;
}
.fc-contact-hero__btn:hover {
  background: var(--color-accent);
  color: #fff !important;
  transform: translateY(-1px);
}

/* ================================================================
   BRAND REEL SECTION  — cinematic dark opener
   ================================================================ */
.fc-reel-section {
  padding: 0;
  background: var(--color-bg);   /* cream/off-white — matches rest of site */
  position: relative;
  overflow: hidden;
}

.fc-reel-section .auto-container {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
}

.fc-reel-inner {
  display: flex;
  align-items: center;
  gap: 72px;
}

/* LEFT — text column */
.fc-reel-text {
  flex: 1 1 0;
  min-width: 0;
}

.fc-reel-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.fc-reel-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5rem);
  line-height: 1.05;
  color: var(--color-ink);
  margin-bottom: 24px;
}

.fc-reel-body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-muted);
  max-width: 440px;
  margin-bottom: 40px;
}

a.fc-reel-cta,
a.fc-reel-cta:link,
a.fc-reel-cta:visited {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 14px 36px !important;
  background: var(--color-primary) !important;
  color: #fff !important;
  font-family: var(--font-body) !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border: 2px solid var(--color-primary) !important;
  border-radius: 2px !important;
  transition: background 0.25s, border-color 0.25s, transform 0.2s !important;
}

a.fc-reel-cta::after {
  content: '→';
  font-size: 1rem;
  transition: transform 0.2s;
}

a.fc-reel-cta:hover {
  background: transparent !important;
  color: var(--color-primary) !important;
  transform: translateY(-2px);
}

a.fc-reel-cta:hover::after {
  transform: translateX(4px);
}

/* RIGHT — video column */
.fc-reel-video-wrap {
  flex: 0 0 auto;
  width: min(310px, 32vw);
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
  background: #000;
  position: relative;
}

.fc-reel-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
}

/* ── Mobile ── */
@media (max-width: 900px) {
  .fc-reel-section .auto-container { padding-top: 56px; padding-bottom: 56px; }
  .fc-reel-inner {
    flex-direction: column-reverse;   /* video on top on mobile = visual-first */
    gap: 36px;
    text-align: center;
  }
  .fc-reel-body {
    max-width: 100%;
  }
  .fc-reel-video-wrap {
    width: min(260px, 72vw);
  }
  .fc-reel-heading { font-size: clamp(2.2rem, 8vw, 3rem); }
}

/* ================================================================
   SHOP ONLINE NAV BUTTON
   ================================================================ */
a.fc-nav-shop-btn,
a.fc-nav-shop-btn:link,
a.fc-nav-shop-btn:visited {
  display: inline-block !important;
  padding: 7px 20px !important;
  background: var(--color-primary) !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border-radius: 3px !important;
  border: 2px solid var(--color-primary) !important;
  transition: background 0.2s, color 0.2s !important;
  white-space: nowrap !important;
}
a.fc-nav-shop-btn:hover {
  background: transparent !important;
  color: var(--color-primary) !important;
}
/* Vertical alignment inside nav <li> */
.navigation > li > a.fc-nav-shop-btn {
  margin-top: 0 !important;
  line-height: 1 !important;
  vertical-align: middle !important;
}

/* ================================================================
   CONTACT FORM — QUALIFIER SELECT STYLING
   ================================================================ */
select.fc-qualifier {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A3E2B' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px !important;
  cursor: pointer;
}
