/* DrinkExperts Custom CSS */

:root {
  /* Split the hero background so the right half (where the watermark lives) is deep black ( #1A1A1A ), making the large "D" watermark look much sleeker. */
  /* Logo & Brand Colors - Updated for the new Red & Black Logo */
  --brand-primary: #C1272D;    /* Main Logo Red */
  --brand-secondary: #1A1A1A;  /* Logo Black */
  --brand-dim: rgba(193, 39, 45, 0.08);

  /* Light Theme Colors (Warm & Vibrant) */
  --bg-main: #FFFFFF;          /* Main background */
  --bg-soft: #FAF9F7;          /* Very soft warm white */
  --bg-mist: #F7F5F2;          /* Slightly deeper warm gray */
  --text-main: #1A0A00;        /* Main text color (Dark) */
  --text-muted: #3D3D3A;       /* Muted text color */
  --text-light: #5F5E5A;       /* Subtle text color */
  --border-light: #F5C4B3;     /* Light border color */
  
  /* Legacy names kept for compatibility, updated for new brand colors */
  --gold: var(--brand-primary);
  --gold-light: #E0353B;       /* A lighter red for hover states */
  --gold-dim: var(--brand-dim);
  --black: var(--bg-main);
  --white: var(--text-main);
  --ink: var(--bg-soft);
  --smoke: var(--bg-soft);
  --mist: var(--bg-mist);
  --cream: #FFFFFF;
}

/* ============================================================
   ELEMENTOR KIT OVERRIDES
   The Elementor kit CSS (post-6.css) was corrupted with gold
   colors and broken line-heights. These !important overrides
   restore the correct DrinkExperts brand identity.
   ============================================================ */
.elementor-kit-6 {
  --e-global-color-primary: #C1272D !important;
  --e-global-color-secondary: #1A1A1A !important;
  --e-global-color-text: #1A0A00 !important;
  --e-global-color-accent: #FAF9F7 !important;
  --e-global-color-8af433c: rgba(193, 39, 45, 0.1) !important;
  background-color: #FFFFFF !important;
  color: #1A0A00 !important;
  line-height: 1.9 !important;
}
.elementor-kit-6 h1 {
  color: #1A0A00 !important;
  line-height: 1 !important;
}
.elementor-kit-6 h2 {
  color: #1A0A00 !important;
  line-height: 1.1 !important;
}
.elementor-kit-6 h3 {
  color: #1A0A00 !important;
  line-height: 1.2 !important;
}
.elementor-kit-6 h4 {
  color: #1A0A00 !important;
}

/* Global Styling Overrides */
body, .elementor-page { background-color: var(--bg-main) !important; color: var(--text-main); font-family: 'Montserrat', sans-serif; font-weight: 300; margin: 0 !important; padding: 0 !important; overflow-x: hidden; min-height: 100vh; border: none !important; font-size: 16px; }
html { overflow-x: hidden; margin: 0 !important; padding: 0 !important; background-color: var(--bg-main) !important; border: none !important; }
h1, h2, h3, h4, h5, h6, .elementor-heading-title { font-family: 'Cormorant Garamond', serif !important; color: var(--text-main) !important; }
p, span, div, button, .elementor-text-editor { font-family: 'Montserrat', sans-serif; }
a { font-family: 'Montserrat', sans-serif; color: var(--brand-primary); text-decoration: none; transition: color 0.2s ease; }
a:hover { text-decoration: underline; }

/* Navigation */
nav.custom-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 20px 60px; display: flex; align-items: center; justify-content: space-between; background: linear-gradient(to bottom, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.9) 100%) !important; backdrop-filter: blur(12px) !important; transition: all 0.3s; border-bottom: 1px solid transparent; }
nav.custom-nav.scrolled { padding: 15px 60px; background: #FFFFFF !important; border-bottom: 1px solid rgba(0,0,0,0.05); box-shadow: 0 1px 4px rgba(0,0,0,0.08); }

.custom-nav .logo { display: flex; align-items: center; height: 60px; min-width: 150px; text-decoration: none; position: relative; }
.custom-nav .logo img { height: 90px; width: auto; min-width: 90px; object-fit: contain; transform: scale(1.6); display: block; transition: transform 0.3s; transform-origin: center left; content: url("/de/wp-content/uploads/2026/05/logo.png"); }
.custom-nav .logo span { display: none; }

.custom-nav .nav-links { display: flex; align-items: center; gap: 40px; }
.custom-nav .nav-links a { text-decoration: none; color: #1A0A00; font-size: 14px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; transition: color 0.3s; }
.custom-nav .nav-links a:hover,
.custom-nav .nav-links a.active { color: var(--brand-primary); }
.custom-nav .nav-links a.active { border-bottom: 2px solid var(--brand-primary); padding-bottom: 2px; }

.custom-nav .nav-cta { font-size: 14px; letter-spacing: 0.15em; text-transform: uppercase; background: transparent; border: 1px solid var(--brand-primary); color: var(--brand-primary); padding: 12px 28px; cursor: pointer; transition: all 0.3s; font-family: "Montserrat", sans-serif; font-weight: 600; }
.custom-nav .nav-cta:hover { background: var(--brand-primary); color: #FFFFFF; }

.custom-nav .mobile-cta { display: none; }
.custom-nav .menu-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; padding: 10px; z-index: 100010; position: relative; }
.custom-nav .menu-toggle span { display: block; width: 24px; height: 2px; background-color: var(--text-main); transition: all 0.3s ease; }

/* Mobile Navigation */
@media (max-width: 992px) {
  nav.custom-nav { padding: 15px 30px; }
  nav.custom-nav.scrolled { padding: 15px 30px; }
  .custom-nav .menu-toggle { display: flex; }
  .custom-nav .desktop-cta { display: none; }
  
  /* Mobile menu overlay — hidden by default */
  .custom-nav .nav-links {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100vh;
    background: var(--bg-main);
    display: flex !important; flex-direction: column; justify-content: center; align-items: center; gap: 30px;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateY(-10px);
    z-index: 100000;
    overflow-y: auto;
  }
  /* Support all three toggle class variants */
  .custom-nav .nav-links.active,
  .custom-nav .nav-links.nav-open {
    opacity: 1; visibility: visible; transform: translateY(0);
  }
  
  .custom-nav .nav-links a { font-size: 16px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; }
  .custom-nav .mobile-cta { display: block; margin-top: 20px; }
  
  /* ── Hamburger → X close button ── */
  /* When menu is open, fix the toggle to top-right as a prominent close button */
  .custom-nav .menu-toggle.active,
  .custom-nav .menu-toggle.is-active {
    position: fixed !important;
    top: 18px;
    right: 20px;
    z-index: 100020 !important;
    background: #C1272D !important;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(193, 39, 45, 0.4);
    transition: background 0.3s, transform 0.3s;
  }
  .custom-nav .menu-toggle.active:hover,
  .custom-nav .menu-toggle.is-active:hover {
    background: var(--brand-secondary) !important;
    transform: rotate(90deg);
  }

  /* X icon: white lines on red circle */
  .custom-nav .menu-toggle.active span,
  .custom-nav .menu-toggle.is-active span {
    background-color: #FFFFFF !important;
    position: absolute;
  }
  .custom-nav .menu-toggle.active span:nth-child(1),
  .custom-nav .menu-toggle.is-active span:nth-child(1) {
    transform: rotate(45deg);
  }
  .custom-nav .menu-toggle.active span:nth-child(2),
  .custom-nav .menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }
  .custom-nav .menu-toggle.active span:nth-child(3),
  .custom-nav .menu-toggle.is-active span:nth-child(3) {
    transform: rotate(-45deg);
  }
}

/* ============================================================
   MOBILE MENU CLOSE BUTTON — Hello Elementor Theme Nav
   Ensures the hamburger/X toggle is always visible when the
   mobile dropdown menu is open.
   ============================================================ */

/* Make the toggle holder always visible and well-positioned */
.site-header .site-navigation-toggle-holder {
  z-index: 10001;
  position: relative;
}

/* Style the toggle button */
.site-header .site-navigation-toggle {
  background: transparent !important;
  border: none !important;
  padding: 10px !important;
  cursor: pointer;
  position: relative;
  z-index: 10002;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* When the menu IS open (elementor-active), make the toggle a prominent close button */
.site-header .site-navigation-toggle-holder.elementor-active .site-navigation-toggle {
  position: fixed !important;
  top: 16px;
  right: 20px;
  z-index: 100001 !important;
  background: var(--brand-primary) !important;
  border-radius: 50% !important;
  width: 48px !important;
  height: 48px !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: background 0.3s, transform 0.3s;
}
.site-header .site-navigation-toggle-holder.elementor-active .site-navigation-toggle:hover {
  background: var(--brand-secondary) !important;
  transform: rotate(90deg);
}

/* Make the X icon white on the red button */
.site-header .site-navigation-toggle-holder.elementor-active .site-navigation-toggle-icon,
.site-header .site-navigation-toggle-holder.elementor-active .site-navigation-toggle-icon::before,
.site-header .site-navigation-toggle-holder.elementor-active .site-navigation-toggle-icon::after {
  color: #FFFFFF !important;
}

/* Make the dropdown menu a proper full-screen overlay */
.site-header .site-navigation-toggle-holder.elementor-active + .site-navigation-dropdown {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100vh !important;
  max-height: 100vh !important;
  z-index: 100000 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: var(--bg-main, #FFFFFF) !important;
  overflow-y: auto;
  margin: 0 !important;
  transform: scaleY(1) !important;
}

/* Style the dropdown menu links for the overlay */
.site-header .site-navigation-toggle-holder.elementor-active + .site-navigation-dropdown ul.menu {
  position: static !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px;
  width: auto !important;
  background: transparent !important;
  padding: 80px 20px 40px !important;
}

.site-header .site-navigation-toggle-holder.elementor-active + .site-navigation-dropdown ul.menu li {
  display: block !important;
  text-align: center;
  width: auto !important;
}

.site-header .site-navigation-toggle-holder.elementor-active + .site-navigation-dropdown ul.menu li a {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--text-main, #1A0A00) !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 16px 30px !important;
  transition: color 0.3s;
}

.site-header .site-navigation-toggle-holder.elementor-active + .site-navigation-dropdown ul.menu li a:hover {
  color: var(--brand-primary) !important;
}

.site-header .site-navigation-toggle-holder.elementor-active + .site-navigation-dropdown ul.menu li.current-menu-item a {
  color: var(--brand-primary) !important;
  background: transparent !important;
}

/* ============================================================
   MOBILE MENU CLOSE BUTTON — Elementor Nav Menu Widget
   For pages using Elementor's Nav Menu widget instead of
   the theme's built-in navigation.
   ============================================================ */
.elementor-menu-toggle {
  z-index: 10002 !important;
}

/* When Elementor nav menu is open */
.elementor-nav-menu--toggle .elementor-menu-toggle.elementor-active {
  position: fixed !important;
  top: 16px;
  right: 20px;
  z-index: 100001 !important;
  background: var(--brand-primary) !important;
  border-radius: 50% !important;
  width: 48px !important;
  height: 48px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.elementor-nav-menu--toggle .elementor-menu-toggle.elementor-active i,
.elementor-nav-menu--toggle .elementor-menu-toggle.elementor-active svg {
  color: #FFFFFF !important;
  fill: #FFFFFF !important;
}

/* Sections */
.de-section { padding: 120px 60px; display: flex !important; flex-direction: column !important; overflow: hidden; }
.de-section > .e-con-inner { display: flex !important; flex-direction: column !important; width: 100%; min-width: 0; }
.about-text, .about-visual, .audience-left, .audience-right, .contact-info, .contact-form { display: flex !important; flex-direction: column !important; min-width: 0; }
.section-label { font-size: 14px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--brand-primary); margin-bottom: 20px; display: flex; align-items: center; gap: 14px; font-weight: 700; }
.section-label::before { content: ''; display: block; width: 30px; height: 1px; background: var(--brand-primary); }
.section-heading, .section-heading .elementor-heading-title { font-size: clamp(40px, 4.5vw, 72px) !important; font-weight: 300 !important; line-height: 1.2em !important; color: var(--text-main) !important; z-index: 2; position: relative; }
.section-heading em { font-style: italic; color: var(--brand-primary); }

/* Hero Section */
.de-hero { 
  min-height: 100vh; position: relative; overflow: hidden; 
  background: transparent; /* Allow Elementor background image to show through */
  display: flex !important; flex-direction: column !important; justify-content: flex-end !important;
  padding: 120px 60px 100px !important;
}
.de-hero > .e-con-inner { display: flex !important; flex-direction: column !important; justify-content: flex-end !important; width: 100%; flex-grow: 1; z-index: 1; position: static; }
.de-hero .elementor-widget, .de-hero .elementor-widget-container { position: static; }
.hero-bg-noise { position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E"); opacity: 0.1; pointer-events: none; z-index: 0; }
.hero-line { position: absolute; left: 60px; top: 20%; bottom: 20%; width: 1px; background: linear-gradient(to bottom, transparent, var(--brand-primary), transparent); opacity: 0.3; z-index: 1; }
.hero-watermark { position: absolute; right: -40px; top: 50%; transform: translateY(-50%); font-family: 'Cormorant Garamond', serif; font-size: 28vw; font-weight: 300; color: rgba(255,255,255,0.03); line-height: 1; pointer-events: none; letter-spacing: -0.02em; white-space: nowrap; z-index: 1; }
.hero-tag { font-size: 14px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--brand-primary); margin-bottom: 28px; display: flex; align-items: center; gap: 14px; font-weight: 700; z-index: 1; position: relative; }
.hero-tag::before { content: ''; display: block; width: 40px; height: 1px; background: var(--brand-primary); }
.hero-title, .hero-title .elementor-heading-title { font-size: clamp(56px, 7vw, 112px) !important; font-weight: 300 !important; line-height: 1.0 !important; letter-spacing: -0.01em !important; max-width: 820px; margin-bottom: 2rem !important; color: #FFFFFF !important; z-index: 1; position: relative; text-wrap: balance; }
.hero-title::before {
  content: ''; position: absolute; left: -5%; top: 20%; width: 110%; height: 60%;
  background: var(--brand-primary); opacity: 0.05; transform: skewX(-15deg); z-index: -1;
}
.hero-title em { font-style: italic; color: var(--brand-primary); }
.hero-subtitle, .hero-subtitle .elementor-text-editor { font-size: 16px !important; letter-spacing: 0.1em; line-height: 1.9 !important; color: rgba(255,255,255,0.85) !important; max-width: 480px; margin-bottom: 60px !important; z-index: 1; position: relative; padding: 0; border-radius: 0; background: transparent; }
.hero-actions { display: flex; align-items: center; gap: 40px; z-index: 1; position: relative; }
.btn-primary { background: var(--brand-primary); color: #FFFFFF; border: none; padding: 12px 28px; border-radius: 2px; font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-block; }
.btn-primary:hover { background: var(--brand-secondary); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #FFFFFF; border: 1.5px solid #FFFFFF; border-radius: 2px; padding: 12px 28px; font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; transition: color 0.3s; text-decoration: none; display: inline-block; }
.btn-ghost:hover { color: var(--brand-primary); border-color: var(--brand-primary); }
.scroll-hint { position: absolute; right: 60px; bottom: 60px; display: flex; flex-direction: column; align-items: center; gap: 12px; opacity: 0.4; z-index: 1; }
.scroll-hint span { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; writing-mode: vertical-rl; color: var(--text-main); }
.scroll-arrow { width: 1px; height: 60px; background: linear-gradient(to bottom, transparent, var(--brand-primary)); animation: scrollDrop 2s ease-in-out infinite; }

/* Marquee */
.marquee-wrap { overflow: hidden; background: #FFFFFF; border-top: 1px solid #F5C4B3; border-bottom: 1px solid #F5C4B3; padding: 18px 0 !important; white-space: nowrap; }
.marquee-track { display: inline-flex; gap: 0; animation: marquee 30s linear infinite; }
.marquee-item { font-size: 14px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: #1A0A00; padding: 0 50px; display: flex; align-items: center; gap: 50px; }
.marquee-dot { width: 6px; height: 6px; background: var(--brand-primary); border-radius: 50%; }

/* About */
.about { background: #FAF9F7; }
.about .section-heading { color: #1A0A00 !important; }
.about-grid { display: grid !important; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 80px; width: 100%; }
.about-text p { font-size: 16px; line-height: 2; color: #3D3D3A; margin-bottom: 24px; }
.about-text p strong { color: var(--brand-primary); font-weight: 600; }
.about-visual { position: relative; display: flex; justify-content: center; }
.about-visual-box { width: 340px; height: 480px; position: relative; background: #FFFFFF; }
.about-inner { position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 0; z-index: 2; }
.about-stat { text-align: center; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 20px; transition: transform 0.3s; position: relative; z-index: 3; background: #FFFFFF; height: 100%; width: 100%; }
.about-stat:nth-child(1), .about-stat:nth-child(4) { background: #FFFFFF; border: 1px solid rgba(0,0,0,0.05); }
.about-stat:nth-child(2), .about-stat:nth-child(3) { background: var(--brand-primary); }
.about-stat:hover { transform: scale(1.05); z-index: 4; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.about-stat:nth-child(1) .num, .about-stat:nth-child(4) .num { color: var(--brand-primary); }
.about-stat:nth-child(1) .lbl, .about-stat:nth-child(4) .lbl { color: #1A0A00; }
.about-stat .num { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300; color: #FFFFFF; line-height: 1; margin-bottom: 5px; }
.about-stat .lbl { font-size: 14px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-top: 5px; font-family: 'Montserrat', sans-serif; font-weight: 600; line-height: 1.4; word-break: break-word; }
.divider-gold { display: none; }

/* Purpose */
.purpose { background: #FFFFFF; }
.purpose .section-heading { color: #1A0A00 !important; }
.purpose-grid { display: grid !important; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 80px; width: 100%; }
.purpose-card { padding: 24px 32px; min-height: 100%; border-left: 3px solid var(--brand-primary) !important; background: #FFFFFF !important; }
.purpose-kicker { display: inline-flex; margin-bottom: 22px; font-size: 14px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--brand-primary); opacity: 0.8; }
.purpose-card h3 { font-family: 'Cormorant Garamond', serif !important; font-size: 17px; line-height: 1.3em !important; font-weight: 500; color: #1A0A00; margin: 0 0 18px; }
.purpose-card p { font-size: 16px; line-height: 1.85; color: #3D3D3A; margin: 0; }

/* SPARK */
.spark { background: #FAF9F7; border-top: 4px solid var(--brand-primary); }
.spark .section-heading { color: #1A0A00 !important; }
.spark-intro { max-width: 700px; font-size: 16px !important; line-height: 2 !important; color: #3D3D3A !important; margin: 30px 0 80px !important; }
.spark-grid { display: grid !important; grid-template-columns: repeat(5, 1fr); gap: 2px; width: 100%; }
.spark-card { background: #FFFFFF; padding: 24px; position: relative; overflow: hidden; transition: background 0.4s; cursor: default; }
.spark-card:hover { background: #FCEBEB; }
.spark-letter { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 700; color: var(--brand-primary); line-height: 1; margin-bottom: 20px; opacity: 1; }
.spark-word { font-size: 14px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #1A0A00; margin-bottom: 16px; font-family: 'Montserrat', sans-serif; }
.spark-desc { font-size: 14px; line-height: 1.8; color: #2C2C2A; font-family: 'Montserrat', sans-serif; }

/* Services */
.services { background: #FFFFFF; }
.services-intro { max-width: 760px; font-size: 16px !important; line-height: 2 !important; color: var(--text-muted) !important; margin: 30px 0 0 !important; }
.services-grid { display: grid !important; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 80px; width: 100%; }
.services-grid > .elementor-widget-html,
.services-grid > .e-con-inner > .elementor-widget-html { display: flex; }
.services-grid .elementor-widget-container { height: 100%; width: 100%; }
.service-item { padding: 0; background: transparent !important; border: none !important; position: relative; overflow: hidden; transition: all 0.2s ease; display: flex; flex-direction: column; min-height: 100%; height: 100%; }
.service-item:hover { transform: translateY(-4px); }
.service-item:hover .service-title { color: var(--brand-primary) !important; }
.service-num { font-family: 'Cormorant Garamond', serif; font-size: 48px; color: var(--brand-primary); font-weight: 300; margin-bottom: 20px; display: block; line-height: 1; }
.service-title { font-family: 'Cormorant Garamond', serif !important; font-size: 20px; font-weight: 500; margin-bottom: 20px; line-height: 1.3em !important; color: #1A0A00 !important; overflow-wrap: anywhere; transition: color 0.2s ease; }
.service-body { font-size: 14px; line-height: 1.9; color: #5F5E5A !important; font-family: 'Montserrat', sans-serif; }
.service-arrow { margin-top: auto; padding-top: 40px; display: inline-block; font-size: 14px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--brand-primary); opacity: 0; transition: opacity 0.2s ease; font-family: 'Montserrat', sans-serif; }
.service-item:hover .service-arrow { opacity: 1; }

/* Portfolio */
.portfolio-section { background: #FFFFFF; border-top: 1px solid rgba(0,0,0,0.05); }
.commercial-section { background: #FAF9F7; }
.portfolio-section .section-heading, .commercial-section .section-heading { font-size: 24px !important; font-weight: 500 !important; color: #1A0A00 !important; }
.portfolio-intro { max-width: 760px; font-size: 16px !important; line-height: 2 !important; color: var(--text-muted) !important; margin: 30px 0 70px !important; }
.portfolio-shell { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.8fr); gap: 36px; align-items: start; width: 100%; }
.portfolio-accordion { display: flex; flex-direction: column; gap: 14px; }
.portfolio-item { border-bottom: 0.5px solid #F5C4B3; background: #FFFFFF; overflow: hidden; transition: all 0.3s; }
.portfolio-trigger { width: 100%; background: transparent; border: none; color: var(--text-main); display: grid; grid-template-columns: 52px 1fr 32px; gap: 18px; align-items: center; padding: 22px 24px; text-align: left; cursor: pointer; }
.portfolio-index { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--brand-primary); opacity: 0.75; line-height: 1; }
.portfolio-title { font-family: 'Cormorant Garamond', serif; font-size: 15px; line-height: 1.5; font-weight: 400; transition: color 0.2s ease; }
.portfolio-toggle { font-size: 24px; color: var(--brand-primary); justify-self: end; transition: transform 0.25s ease, color 0.2s ease; }
.portfolio-trigger:hover .portfolio-toggle { color: var(--brand-primary); }
.portfolio-item.is-open { background: #FCEBEB; border-left: none; }
.portfolio-item.is-open .portfolio-title { color: var(--brand-primary); font-weight: 500; }
.portfolio-item.is-open .portfolio-toggle { transform: rotate(45deg); }
.portfolio-panel { max-height: 0; overflow: hidden; transition: max-height 0.28s ease; }
.portfolio-panel-inner,
.portfolio-panel > * { margin-left: 0; }
.portfolio-points { list-style: none; padding: 0 24px 0 94px; margin: 0; display: grid; gap: 10px; }
.portfolio-points li { position: relative; padding-left: 18px; font-size: 15px; line-height: 1.85; color: var(--text-muted); }
.portfolio-points li::before { content: ''; position: absolute; left: 0; top: 11px; width: 6px; height: 6px; border-radius: 50%; background: var(--brand-primary); }
.portfolio-impact { padding: 18px 24px 26px 94px; margin: 0; font-size: 15px; line-height: 1.8; color: var(--text-main); }
.portfolio-impact strong { color: var(--brand-primary); font-weight: 600; }
.portfolio-summary { position: sticky; top: 30px; background: #FAF9F7; border: none; border-top: 4px solid var(--brand-primary); padding: 2rem; border-radius: 4px; overflow: hidden; min-height: 100px; }
.summary-kicker { display: inline-flex; margin-bottom: 18px; font-size: 14px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700; color: var(--brand-primary); }
.portfolio-summary h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; line-height: 1.3em !important; font-weight: 400; margin: 0 0 18px; color: #1A0A00; }
.portfolio-summary p { font-size: 15px; line-height: 1.9; color: #3D3D3A; margin: 0; }

/* Audience */
.audience { background: #FFFFFF; }
.audience .section-heading { color: #1A0A00 !important; }
.audience-split { display: grid !important; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 80px; align-items: start; width: 100%; }
.audience-left p { font-size: 16px; line-height: 2; color: #3D3D3A; margin-bottom: 40px; font-family: 'Montserrat', sans-serif; }
.audience-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag { font-size: 14px; letter-spacing: 0.15em; text-transform: uppercase; border: none; background: var(--brand-primary); color: #FFFFFF; padding: 12px 24px; transition: all 0.3s; cursor: default; font-family: 'Montserrat', sans-serif; border-radius: 4px; font-weight: 600; }
.tag:hover { background: var(--brand-secondary); }
.audience-right { display: flex; flex-direction: column; gap: 16px; }
.audience-item { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; padding: 0; background: transparent; border: none; }
.audience-item:first-child { border-top: none; }
.ai-num { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; color: var(--brand-primary); line-height: 1; display: block; width: auto; height: auto; background: transparent; border-radius: 0; }
.ai-content h4 { font-size: 16px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; font-family: 'Montserrat', sans-serif; color: #1A0A00; }
.ai-content p { font-size: 14px; line-height: 1.8; color: #5F5E5A; margin: 0; font-family: 'Montserrat', sans-serif; }

/* Manifesto */
.manifesto { background: var(--brand-primary); position: relative; overflow: hidden; display: flex !important; justify-content: center; align-items: center; }
.manifesto::before { content: 'SPARK'; position: absolute; font-family: 'Cormorant Garamond', serif; font-size: 30vw; font-weight: 300; color: rgba(255,255,255,0.15); line-height: 1; top: 50%; left: 50%; transform: translate(-50%, -50%); white-space: nowrap; pointer-events: none; }
.manifesto-inner { max-width: 860px; margin: 0 auto; text-align: center; position: relative; width: 100%; z-index: 1; }
.manifesto-inner::before { content: '“'; font-size: 200px; color: rgba(255,255,255,0.15); position: absolute; top: -60px; left: -40px; font-family: 'Cormorant Garamond', serif; line-height: 1; z-index: -1; }
.manifesto-inner::after { content: '”'; font-size: 200px; color: rgba(255,255,255,0.15); position: absolute; bottom: -100px; right: -40px; font-family: 'Cormorant Garamond', serif; line-height: 1; z-index: -1; }
.manifesto-quote { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 4vw, 64px); font-weight: 300; line-height: 1.25; color: #FFFFFF; margin-top: 30px; position: relative; z-index: 2; }
.manifesto-quote em { font-style: italic; }

/* Contact & Fluent Forms Integration */
.contact { background: #FFFFFF; }
.contact .section-heading { color: #1A0A00 !important; }
.contact-grid { display: grid !important; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 80px; width: 100%; }
.contact-info { background: #FAF9F7; padding: 50px; border-radius: 4px; border: 1px solid rgba(0,0,0,0.05); color: #1A0A00; }
.contact-info p { font-size: 16px; line-height: 2; color: #3D3D3A; margin-bottom: 40px; }
.contact-detail { display: flex; flex-direction: column; gap: 20px; }
.contact-row { display: flex; align-items: flex-start; gap: 20px; }
.contact-row .label { font-size: 14px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--brand-primary); min-width: 70px; padding-top: 2px; font-weight: 700; font-family: 'Montserrat', sans-serif; }
.contact-row .val { font-size: 16px; color: #1A0A00; font-family: 'Montserrat', sans-serif; }
.contact-form { display: flex; flex-direction: column; width: 100%; }

/* Fluent Form Light Warm Theme Overrides */
.fluentform { margin-top: 0 !important; width: 100% !important; }
.fluentform .ff-el-group { margin-bottom: 24px !important; }
.fluentform .ff-el-input--label label { font-size: 14px !important; letter-spacing: 0.15em !important; text-transform: uppercase !important; color: var(--text-light) !important; font-family: 'Montserrat', sans-serif !important; margin-bottom: 12px !important; font-weight: 700 !important; display: block !important; }
.fluentform .ff-el-form-control { background: #FFFFFF !important; border: 1px solid rgba(0,0,0,0.1) !important; border-bottom: 2px solid rgba(0,0,0,0.1) !important; color: var(--text-main) !important; padding: 16px 18px !important; font-family: 'Montserrat', sans-serif !important; font-size: 16px !important; font-weight: 300 !important; border-radius: 0 !important; transition: all 0.3s !important; box-shadow: none !important; width: 100% !important; }
.fluentform .ff-el-form-control:focus { border-color: rgba(0,0,0,0.1) !important; border-bottom: 2px solid var(--brand-primary) !important; outline: none !important; background: var(--bg-soft) !important; box-shadow: 0 5px 15px rgba(193,39,45,0.1) !important; }
.fluentform .ff-el-form-control::placeholder { color: #CCCCCC !important; }
.fluentform select.ff-el-form-control { appearance: none !important; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C1272D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important; background-repeat: no-repeat !important; background-position: right 18px center !important; background-size: 14px !important; padding-right: 40px !important; }
.fluentform select.ff-el-form-control option { background: #FFFFFF !important; color: var(--text-main) !important; }
.fluentform .ff-btn-submit { background: var(--brand-primary) !important; color: #FFFFFF !important; border: none !important; padding: 16px 28px !important; font-family: 'Montserrat', sans-serif !important; font-size: 14px !important; font-weight: 700 !important; letter-spacing: 0.15em !important; text-transform: uppercase !important; cursor: pointer !important; transition: all 0.3s !important; text-decoration: none !important; width: 100% !important; border-radius: 2px !important; margin-top: 10px !important; }
.fluentform .ff-btn-submit:hover { background: var(--brand-secondary) !important; transform: translateY(-2px); }
.fluentform .ff-el-is-error .ff-el-form-control { border-color: #ff4d4d !important; }
.fluentform .text-danger { font-size: 14px !important; color: #ff4d4d !important; margin-top: 8px !important; font-family: 'Montserrat', sans-serif !important; }
.fluentform .ff-errors-in-stack { margin: 0 0 20px 0 !important; padding: 15px !important; background: rgba(255,77,77,0.05) !important; border-left: 3px solid #ff4d4d !important; color: #ff4d4d !important; font-family: 'Montserrat', sans-serif !important; font-size: 14px !important; }
.fluentform .ff-message-success { margin: 0 0 20px 0 !important; padding: 20px !important; background: rgba(193,39,45,0.05) !important; border-left: 3px solid var(--brand-primary) !important; color: var(--brand-primary) !important; font-family: 'Montserrat', sans-serif !important; font-size: 14px !important; }

/* Footer — Red brand variant */
footer.custom-footer { background: var(--brand-primary); border-top: 1px solid rgba(255,255,255,0.15); padding: 50px 60px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
footer.custom-footer .logo { display: flex; align-items: center; flex-shrink: 0; }
footer.custom-footer .logo img { height: 60px; width: auto; min-width: 60px; object-fit: contain; transform: scale(1.6); display: block; transform-origin: center left; content: url("/de/wp-content/uploads/2026/05/logo.png"); filter: brightness(0) invert(1); }
footer.custom-footer .logo span { display: none; }
.footer-copy { font-size: 14px; letter-spacing: 0.15em; color: rgba(255, 255, 255, 0.85); }
.footer-links { display: flex; flex-wrap: wrap; gap: 30px; }
.footer-links a { font-size: 14px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255, 255, 255, 0.85); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: #FFFFFF; text-decoration: underline; }
footer.custom-footer h1, footer.custom-footer h2, footer.custom-footer h3, footer.custom-footer h4, footer.custom-footer h5, footer.custom-footer h6, footer.custom-footer .elementor-heading-title { color: #FFFFFF !important; font-size: 13px !important; letter-spacing: 0.08em !important; text-transform: uppercase !important; }
footer.custom-footer p, footer.custom-footer span, footer.custom-footer div { font-size: 14px; color: rgba(255,255,255,0.85); }

/* Animations */
@keyframes scrollDrop { 0%, 100% { transform: scaleY(0.3); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE — Flexbox-first approach for all breakpoints
   ============================================================ */

/* Global overflow protection */
*, *::before, *::after { box-sizing: border-box; }
.de-section, .e-con, .e-con-inner, .elementor-widget-container { max-width: 100%; overflow-wrap: break-word; word-wrap: break-word; }

/* —— Tablet / medium screens —— */
@media (max-width: 1024px) {
  nav.custom-nav { padding-left: 30px !important; padding-right: 30px !important; }
  .de-section { padding-left: 30px !important; padding-right: 30px !important; }

  /* Convert grids to single-column flex stacks */
  .about-grid, .contact-grid, .audience-split, .portfolio-shell {
    display: flex !important;
    flex-direction: column !important;
    gap: 50px !important;
  }
  .about-grid > *, .contact-grid > *, .audience-split > *, .portfolio-shell > * {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    flex-shrink: 1 !important;
  }

  .purpose-grid { grid-template-columns: 1fr !important; }
  .spark-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .services-grid { grid-template-columns: 1fr 1fr !important; }
  .hero-line { display: none !important; }
  .portfolio-summary { position: relative; top: auto; }

  /* Audience section — ensure tags and items don't overflow */
  .audience-tags { display: flex; flex-wrap: wrap; gap: 8px; }
  .tag { flex-shrink: 0; font-size: 12px; padding: 10px 18px; }
  .audience-item { flex-direction: column; gap: 10px; }
  .ai-num { font-size: 36px; }
  .ai-content h4 { font-size: 14px; }
  .ai-content p { font-size: 13px; }

  /* Contact section — stack form and info */
  .contact-info { padding: 40px 30px; }

  /* Footer — flex-wrap for tablet */
  footer.custom-footer { padding: 40px 30px; flex-wrap: wrap; gap: 20px; }
}

/* —— Small tablets / large phones —— */
@media (max-width: 768px) {
  .de-section { padding: 80px 24px !important; }

  /* SPARK grid to 2 columns */
  .spark-grid { grid-template-columns: 1fr 1fr !important; }
  .spark-card { padding: 20px; }
  .spark-letter { font-size: 36px; }

  /* Services single column */
  .services-grid { grid-template-columns: 1fr !important; }

  /* Portfolio / commercial section — full-width stack */
  .portfolio-shell {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
  }
  .portfolio-shell > * {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
  .portfolio-trigger { grid-template-columns: 42px 1fr 26px; gap: 14px; padding: 18px 20px; }
  .portfolio-title { font-size: 18px; }
  .portfolio-points { padding: 0 20px 0 56px; }
  .portfolio-impact { padding: 18px 20px 22px 56px; }
  .portfolio-summary { padding: 28px 24px; }
  .portfolio-summary h3 { font-size: 26px; line-height: 1.3em !important; }

  /* Audience / advocacy — flex column */
  .audience-split {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
  }
  .audience-split > * {
    width: 100% !important;
    max-width: 100% !important;
  }
  .audience-left p { font-size: 15px; margin-bottom: 30px; }
  .audience-item { margin-bottom: 24px; }

  /* About visual box scale down */
  .about-visual-box { width: 280px; height: 400px; margin: 0 auto; }

  /* Contact grid — full stack */
  .contact-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
  }
  .contact-grid > * { width: 100% !important; }
  .contact-info { padding: 36px 24px; }

  /* Footer stack */
  footer.custom-footer { flex-direction: column; gap: 20px; text-align: center; padding: 40px 24px; align-items: center; }
  .footer-links { justify-content: center; }
}

/* —— Mobile phones —— */
@media (max-width: 640px) {
  nav.custom-nav { padding: 20px !important; }
  /* Nav links are handled by the overlay visibility system above — not display:none */

  .de-hero { min-height: auto; padding: 140px 20px 72px !important; justify-content: flex-start !important; }
  .de-section { padding: 60px 16px !important; }

  .hero-title, .hero-title .elementor-heading-title { font-size: clamp(36px, 10vw, 56px) !important; line-height: 1.0 !important; margin-bottom: 20px !important; }
  .hero-subtitle, .hero-subtitle .elementor-text-editor { font-size: 14px !important; line-height: 1.75 !important; margin-bottom: 36px !important; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 14px; width: 100%; }
  .hero-actions a { text-align: center; width: 100%; }
  .scroll-hint { display: none !important; }

  /* Section headings scale */
  .section-heading, .section-heading .elementor-heading-title { font-size: clamp(28px, 7vw, 48px) !important; }

  /* SPARK grid — single column on smallest screens */
  .spark-grid { grid-template-columns: 1fr !important; }
  .spark-intro { font-size: 14px !important; margin: 20px 0 40px !important; }

  /* Services */
  .services-grid { grid-template-columns: 1fr !important; }
  .service-item { padding: 0 0 30px 0; min-height: 0; }
  .service-title { font-size: 22px; line-height: 1.3em !important; }
  .service-num { font-size: 36px; margin-bottom: 14px; }

  /* Purpose cards */
  .purpose-grid { grid-template-columns: 1fr !important; }
  .purpose-card { padding: 24px 20px; }
  .purpose-card h3 { font-size: 22px; line-height: 1.3em !important; }

  /* Portfolio / commercial — full width */
  .portfolio-trigger { grid-template-columns: 36px 1fr 22px; gap: 10px; padding: 16px 14px; }
  .portfolio-title { font-size: 16px; }
  .portfolio-index { font-size: 20px; }
  .portfolio-points { padding: 0 14px 0 14px; }
  .portfolio-points li { font-size: 14px; padding-left: 14px; }
  .portfolio-impact { padding: 14px 14px 18px 14px; font-size: 14px; }
  .portfolio-summary { padding: 20px 16px; }
  .portfolio-summary h3 { font-size: 24px; line-height: 1.3em !important; }

  /* Audience / advocacy */
  .audience-tags { gap: 6px; }
  .tag { font-size: 11px; padding: 8px 14px; letter-spacing: 0.1em; }
  .ai-num { font-size: 32px; }
  .ai-content h4 { font-size: 13px; letter-spacing: 0.1em; }
  .ai-content p { font-size: 13px; line-height: 1.7; }

  /* About visual */
  .about-grid { gap: 40px !important; }
  .about-visual-box { width: 240px; height: 340px; }
  .about-stat .num { font-size: 40px; }
  .about-stat .lbl { font-size: 11px; letter-spacing: 0.1em; }
  .about-text p { font-size: 15px; line-height: 1.8; }

  /* Contact */
  .contact-info { padding: 30px 20px; }
  .contact-row { flex-direction: column; gap: 4px; }
  .contact-row .label { min-width: auto; }
  .form-row { grid-template-columns: 1fr !important; }

  /* Manifesto */
  .manifesto { padding: 60px 16px !important; }
  .manifesto-quote { font-size: clamp(24px, 6vw, 40px); }
  .manifesto-inner::before, .manifesto-inner::after { font-size: 120px; }
  .manifesto::before { font-size: 20vw; }

  /* Footer */
  footer.custom-footer { flex-direction: column; gap: 16px; text-align: center; padding: 30px 16px; align-items: center; }
  .footer-copy { font-size: 12px; text-align: center; }
  .footer-links { justify-content: center; gap: 20px; }
  .footer-links a { font-size: 12px; }
}

@media (max-width: 1024px) {
  .oc-fork-h, .oc-fork-v-row { width: 95% !important; }
  .oc-sales-layout { flex-direction: column; gap: 15px; }
  .oc-sales-list { padding-left: 0; border-left: none; border-top: 1px solid rgba(201,168,76,0.3); padding-top: 15px; }
}
@media (max-width: 768px) {
  .oc-fork-v-row { flex-direction: column; align-items: center; }
  .oc-prong { width: 100%; align-items: center; margin-bottom: 30px; }
  .oc-line-v-stretch, .oc-fork-h { display: none; }
  .oc-line-v { height: 20px; }
  .oc-dept-card { width: 100%; margin: 0 0 15px 0; }
}

/* Org Chart - Enhanced Look & Feel */
.structure { background: #FAF9F7 !important; border-bottom: 1px solid rgba(0,0,0,0.05); padding: 100px 0; position: relative; z-index: 1; }
.oc-wrapper { display: flex; flex-direction: column; align-items: center; width: 100%; max-width: 1200px; margin: 40px auto 0; perspective: 1000px; color: #1A0A00; }

/* Connector Lines with subtle glow */
.oc-line-v { width: 1px; background: linear-gradient(to bottom, var(--brand-primary), transparent); height: 40px; margin: 0 auto; box-shadow: 0 0 8px rgba(193, 39, 45, 0.4); }
.oc-line-v-stretch { width: 1px; background: var(--brand-primary); flex-grow: 1; margin: 0 auto; }
.oc-fork-h { height: 1px; background: linear-gradient(to right, transparent, var(--brand-primary), transparent); margin: 0 auto; box-shadow: 0 0 5px rgba(193, 39, 45, 0.3); }

.oc-fork-v-row { display: flex; justify-content: space-between; margin: 0 auto; width: 100%; }
.oc-prong { display: flex; flex-direction: column; align-items: center; flex: 1; }

/* Main Executive Cards */
.oc-card.main-card { 
  background: #FFFFFF; 
  border: 1px solid var(--brand-primary); 
  padding: 24px; 
  text-align: center; 
  position: relative; 
  min-width: 280px; 
  max-width: 320px; 
  margin: 0 auto; 
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  z-index: 2;
}

.oc-card.main-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 45px rgba(193, 39, 45, 0.15);
  border-color: var(--brand-primary);
}

.oc-card.main-card::after { 
  content: ""; position: absolute; top: 5px; left: 5px; right: 5px; bottom: 5px; 
  border: 1px solid rgba(193, 39, 45, 0.2); pointer-events: none; 
  transition: all 0.4s;
}

.oc-card.main-card:hover::after {
  border-color: rgba(193, 39, 45, 0.4);
}

.oc-role { 
  font-size: 14px; 
  letter-spacing: 0.15em; 
  text-transform: uppercase; 
  color: var(--text-light); 
  margin-bottom: 10px; 
  font-weight: 600; 
  font-family: 'Montserrat', sans-serif; 
  line-height: 1.6 !important; 
}

.oc-name { 
  font-family: "Cormorant Garamond", serif; 
  font-size: 26px; 
  color: var(--brand-primary); 
  font-weight: 500; 
  line-height: 1.2 !important; 
  margin-top: 4px; 
  letter-spacing: 0.02em;
}

/* Department Titles */
.oc-branch-title { 
  display: flex; align-items: center; justify-content: center; gap: 12px; 
  font-size: 15px; font-weight: 700; letter-spacing: 0.15em; 
  text-transform: uppercase; color: #1A0A00; 
  margin-bottom: 25px; font-family: 'Montserrat', sans-serif; 
  text-align: center; 
}

.oc-branch-title i { color: var(--brand-primary); font-size: 16px; }

/* Sales & Advocacy Layouts */
.oc-sales-layout { 
  display: flex; align-items: flex-start; justify-content: center; gap: 20px; 
  width: 100%; max-width: 550px; margin: 0 auto; 
}

.oc-card.side-card { 
  background: #FFFFFF; 
  border: 1px solid rgba(193, 39, 45, 0.3); 
  padding: 24px; 
  text-align: center; 
  min-width: 200px; 
  max-width: 240px; 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  transition: all 0.3s;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.oc-card.side-card .oc-name { font-size: 20px; }

.oc-card.side-card:hover {
  border-color: var(--brand-primary);
  background: #FCEBEB;
}

.oc-sales-list { 
  display: flex; flex-direction: column; justify-content: center; gap: 10px; 
  padding-left: 20px; border-left: 1px solid rgba(193, 39, 45, 0.2); 
  min-width: 200px; max-width: 240px; 
}

.oc-card.small-card { 
  background: rgba(0,0,0,0.03); 
  border: 1px solid rgba(0,0,0,0.1); 
  padding: 16px 18px; 
  text-align: center; 
  font-size: 14px; 
  color: #3D3D3A; 
  letter-spacing: 0.08em; 
  font-family: 'Montserrat', sans-serif; 
  line-height: 1.4 !important; 
  transition: all 0.3s;
}

.oc-card.small-card:hover {
  background: #FFFFFF;
  color: #1A0A00;
  border-color: rgba(193, 39, 45, 0.4);
}

/* Advocacy Grid */
.oc-advocacy-layout { 
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; 
  width: 100%; max-width: 550px; margin: 0 auto; 
}

/* Department Bottom Grid */
.oc-dept-card { 
  background: #FFFFFF; 
  border: 1px solid rgba(0,0,0,0.08); 
  border-top: 3px solid var(--brand-primary); 
  padding: 24px; 
  text-align: center; 
  flex: 1;
  margin: 0 5px; 
  display: flex; 
  flex-direction: column; 
  transition: all 0.4s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  min-width: 0; /* Allow shrinking */
  min-height: 320px;
}

.oc-dept-card:hover {
  transform: translateY(-8px);
  background: #FCEBEB;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border-top-color: var(--brand-primary);
}

.oc-dept-title { 
  display: flex; flex-direction: column; align-items: center; gap: 12px; 
  font-size: 14px; font-weight: 800; letter-spacing: 0.1em; 
  text-transform: uppercase; color: #1A0A00; 
  margin-bottom: 15px; font-family: 'Montserrat', sans-serif; 
  min-height: 90px;
  justify-content: center;
  line-height: 1.4;
}

.oc-dept-title i {
  background: rgba(193, 39, 45, 0.15);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--brand-primary);
  font-size: 16px;
  transition: all 0.3s;
  margin-bottom: 5px;
}

.oc-dept-card:hover .oc-dept-title i {
  background: var(--brand-primary);
  color: #FFFFFF;
  transform: rotateY(360deg);
}

.oc-dept-divider { 
  height: 1px; background: linear-gradient(to right, transparent, rgba(0,0,0,0.15), transparent); 
  width: 80%; margin: 0 auto 15px; 
}

.oc-dept-list { list-style: none; padding: 0; margin: 0; }
.oc-dept-list li { 
  font-size: 14px; 
  color: #5F5E5A; 
  margin-bottom: 10px; 
  line-height: 1.5 !important; 
  font-family: 'Montserrat', sans-serif; 
  transition: color 0.3s;
}

.oc-dept-card:hover .oc-dept-list li {
  color: #1A0A00;
}

.oc-dept-list li:last-child { margin-bottom: 0; }

@media (max-width: 1100px) {
  .oc-fork-v-row { flex-wrap: wrap; justify-content: center; gap: 30px; }
  .oc-dept-card { flex: 0 0 calc(33.33% - 20px); margin-bottom: 20px; }
}

@media (max-width: 768px) {
  .oc-dept-card { flex: 0 0 calc(50% - 20px); }
  .oc-sales-layout, .oc-advocacy-layout { flex-direction: column; align-items: center; }
  .oc-sales-list { border-left: none; border-top: 1px solid rgba(178, 31, 36, 0.2); padding-left: 0; padding-top: 15px; }
}

@media (max-width: 480px) {
  .oc-dept-card { flex: 0 0 100%; }
}

