/*
Theme Name:   Raconteur
Description:  Hello Elementor Child Theme for the Raconteur Email Archive Portal
Author:       Kim Go
Template:     hello-elementor
Version:      1.0.1
Text Domain:  raconteur
*/

/* ============================================================
   DESIGN TOKENS — The Editorial Curator
   ============================================================ */

:root {

  /* --- Color Palette --- */

  /* Primary — Archive Red */
  --color-primary:                  #b71419;
  --color-primary-container:        #db322e;
  --color-on-primary:               #ffffff;
  --color-on-primary-container:     #fffbff;
  --color-primary-fixed:            #ffdad6;
  --color-primary-fixed-dim:        #ffb4ab;
  --color-on-primary-fixed:         #410002;
  --color-on-primary-fixed-variant: #93000c;
  --color-inverse-primary:          #ffb4ab;
  --color-surface-tint:             #bb171b;

  /* Secondary — Neutral */
  --color-secondary:                #5f5e5e;
  --color-secondary-container:      #e4e2e1;
  --color-on-secondary:             #ffffff;
  --color-on-secondary-container:   #656464;
  --color-secondary-fixed:          #e4e2e1;
  --color-secondary-fixed-dim:      #c8c6c6;
  --color-on-secondary-fixed:       #1b1c1c;
  --color-on-secondary-fixed-variant: #474747;

  /* Tertiary — Neutral Gray */
  --color-tertiary:                 #5c5c5c;
  --color-tertiary-container:       #757474;
  --color-on-tertiary:              #ffffff;
  --color-on-tertiary-container:    #fefcfb;
  --color-tertiary-fixed:           #e4e2e2;
  --color-tertiary-fixed-dim:       #c8c6c6;
  --color-on-tertiary-fixed:        #1b1c1c;
  --color-on-tertiary-fixed-variant: #474747;

  /* Error */
  --color-error:                    #ba1a1a;
  --color-error-container:          #ffdad6;
  --color-on-error:                 #ffffff;
  --color-on-error-container:       #93000a;

  /* Surface Hierarchy (stacked cardstock layers) */
  --color-background:               #f9f9fa;
  --color-surface:                  #f9f9fa;
  --color-surface-bright:           #f9f9fa;
  --color-surface-dim:              #dadadb;
  --color-surface-container-lowest: #ffffff;
  --color-surface-container-low:    #f3f3f4;
  --color-surface-container:        #eeeeef;
  --color-surface-container-high:   #e8e8e9;
  --color-surface-container-highest: #e2e2e3;

  /* On-Surface / Text */
  --color-on-surface:               #1a1c1d;
  --color-on-surface-variant:       #5b403d;
  --color-on-background:            #1a1c1d;
  --color-surface-variant:          #e2e2e3;
  --color-inverse-surface:          #2f3132;
  --color-inverse-on-surface:       #f0f1f2;

  /* Borders */
  --color-outline:                  #906f6c;
  --color-outline-variant:          #e4beb9;  /* Ghost border base */

  /* --- Typography --- */

  --font-headline: 'Plus Jakarta Sans', sans-serif;  /* Display, H1-H3 */
  --font-body:     'Inter', sans-serif;              /* Body, labels, UI */

  /* Type Scale */
  --text-display-lg:   clamp(2.5rem, 5vw, 4rem);     /* Hero */
  --text-display-md:   clamp(2rem, 3.5vw, 3rem);
  --text-title-lg:     1.75rem;
  --text-title-md:     1.375rem;
  --text-title-sm:     1.125rem;
  --text-body-lg:      1.0625rem;
  --text-body-md:      0.9375rem;
  --text-body-sm:      0.8125rem;
  --text-label-md:     0.75rem;
  --text-label-sm:     0.6875rem;

  /* Type Weight */
  --weight-black:      900;
  --weight-extrabold:  800;
  --weight-bold:       700;
  --weight-semibold:   600;
  --weight-medium:     500;
  --weight-regular:    400;

  /* Letter spacing */
  --tracking-headline: -0.02em;   /* -2% tighter for headline/display */
  --tracking-label:     0.04em;   /* slightly wider for labels */

  /* --- Spacing Scale --- */

  --space-1:   0.25rem;   /* 4px */
  --space-2:   0.5rem;    /* 8px */
  --space-3:   0.75rem;   /* 12px */
  --space-4:   1rem;      /* 16px */
  --space-5:   1.25rem;   /* 20px */
  --space-6:   1.5rem;    /* 24px */
  --space-8:   2rem;      /* 32px */
  --space-10:  2.5rem;    /* 40px */
  --space-12:  3rem;      /* 48px */
  --space-16:  4rem;      /* 64px */
  --space-20:  5rem;      /* 80px */

  /* --- Border Radius --- */

  --radius-sm:   0.25rem;    /* 4px -- default small */
  --radius-md:   0.5rem;     /* 8px -- lg */
  --radius-lg:   0.75rem;    /* 12px -- xl, cards */
  --radius-full: 9999px;     /* pills, chips, tags */

  /* --- Elevation -- Ambient Shadows only --- */

  --shadow-ambient-sm: 0 4px 24px 0 rgba(26, 28, 29, 0.04);
  --shadow-ambient-md: 0 8px 48px 0 rgba(26, 28, 29, 0.06);
  --shadow-ambient-lg: 0 12px 64px 0 rgba(26, 28, 29, 0.08);

  /* --- Glassmorphism (nav / overlays) --- */

  --glass-bg: rgba(249, 249, 250, 0.80);
  --glass-blur: 24px;

  /* --- Transitions --- */

  --transition-base: 200ms ease;
  --transition-smooth: 300ms cubic-bezier(0.4, 0, 0.2, 1);

  /* --- Layout --- */

  --container-max: 1280px;
  --nav-height: 64px;
  --filter-bar-height: 60px;
}

.raconteur-hero__subtitle,
.na-hero p {
  white-space: nowrap;
}
/* ============================================================
   BASE RESET & BODY
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body-md);
  font-weight: var(--weight-regular);
  color: var(--color-on-surface);
  background-color: var(--color-surface);
  line-height: 1.6;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6,
.elementor-heading-title {
  font-family: var(--font-headline);
  font-weight: var(--weight-extrabold);
  letter-spacing: var(--tracking-headline);
  color: var(--color-on-surface);
  line-height: 1.15;
}

h1, .h1 { font-size: var(--text-display-lg); font-weight: var(--weight-black); }
h2, .h2 { font-size: var(--text-display-md); font-weight: var(--weight-black); }
h3, .h3 { font-size: var(--text-title-lg); }
h4, .h4 { font-size: var(--text-title-md); }
h5, .h5 { font-size: var(--text-title-sm); }
h6, .h6 { font-size: var(--text-body-lg); }

p {
  font-family: var(--font-body);
  color: var(--color-secondary);
  line-height: 1.7;
  max-width: 68ch;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover { color: var(--color-primary-container); }

/* Label utility */
.label-md {
  font-family: var(--font-body);
  font-size: var(--text-label-md);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-label);
  color: var(--color-on-surface-variant);
  text-transform: uppercase;
}

/* ============================================================
   LAYOUT -- Container
   ============================================================ */

.raconteur-container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-8);
}

@media (max-width: 768px) {
  .raconteur-container { padding-inline: var(--space-4); }
}

/* ============================================================
   NAVIGATION -- Glassmorphism sticky nav
   ============================================================
   IMPORTANT: Only .elementor-location-header gets position:fixed.
   The nav element inside it must remain static within its column.
   ============================================================ */

.site-header,
header.elementor-location-header,
.elementor-location-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid rgba(228, 190, 185, 0.20); /* ghost border */
}

/* Offset page content below fixed nav */
.elementor-location-single .elementor-section-wrap > .elementor-section:first-child,
.page-content,
main {
  padding-top: var(--nav-height);
}

/* Nav links */
.elementor-nav-menu a,
.elementor-nav-menu--main a {
  font-family: var(--font-headline);
  font-weight: var(--weight-bold);
  font-size: var(--text-body-md);
  letter-spacing: var(--tracking-headline);
  color: var(--color-secondary);
  transition: color var(--transition-base);
}

.elementor-nav-menu a:hover,
.elementor-nav-menu--main a:hover {
  color: var(--color-on-surface);
}

.elementor-nav-menu a.elementor-item-active,
.elementor-nav-menu--main a.elementor-item-active {
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 2px;
}

/* Site logo / wordmark */
.site-logo,
.elementor-site-title {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: var(--weight-black);
  letter-spacing: var(--tracking-headline);
  color: var(--color-on-surface);
}

/* ============================================================
   BUTTONS
   ============================================================ */

/* Primary -- pill shape with gradient */
.elementor-button,
.wp-block-button__link,
input[type="submit"],
.raconteur-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  font-weight: var(--weight-bold);
  line-height: 1;
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: transform var(--transition-base), background var(--transition-base);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-container) 100%);
  color: var(--color-on-primary);
  text-decoration: none;
}

.elementor-button:hover,
.wp-block-button__link:hover,
input[type="submit"]:hover,
.raconteur-btn-primary:hover {
  background: linear-gradient(135deg, var(--color-primary-container) 0%, var(--color-primary) 100%);
  transform: translateY(-1px);
  box-shadow: var(--shadow-ambient-md);
}

.elementor-button:active,
.raconteur-btn-primary:active {
  transform: scale(0.97);
}

/* Secondary -- ghost / outlined */
.raconteur-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  font-weight: var(--weight-bold);
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(228, 190, 185, 0.40);
  background: transparent;
  color: var(--color-on-surface);
  cursor: pointer;
  transition: background var(--transition-base), border-color var(--transition-base);
}

.raconteur-btn-secondary:hover {
  background: var(--color-surface-container-low);
  border-color: var(--color-outline);
}

/* Tertiary -- text only */
.raconteur-btn-tertiary {
  background: none;
  border: none;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  font-weight: var(--weight-semibold);
  cursor: pointer;
  padding: 0;
  transition: color var(--transition-base);
}

.raconteur-btn-tertiary:hover { color: var(--color-primary-container); }

/* ============================================================
   FORM ELEMENTS
   ============================================================ */

input[type="text"],
input[type="email"],
input[type="search"],
input[type="password"],
input[type="url"],
input[type="tel"],
textarea,
select {
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  color: var(--color-on-surface);
  background: var(--color-surface-container-low);
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  padding: 0.625rem 1rem;
  transition: background var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
  box-shadow: var(--shadow-ambient-sm);
  outline: none;
  appearance: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  background: var(--color-surface-container-lowest);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(183, 20, 25, 0.08);
}

input::placeholder,
textarea::placeholder {
  color: var(--color-secondary);
  opacity: 0.7;
}

label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-label-md);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-label);
  color: var(--color-on-surface-variant);
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

/* ============================================================
   CARDS -- "Curator" Cards
   ============================================================ */

.raconteur-card {
  background: var(--color-surface-container-lowest);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition-smooth), transform var(--transition-smooth);
  box-shadow: var(--shadow-ambient-sm);
}

.raconteur-card:hover {
  box-shadow: var(--shadow-ambient-md);
  transform: translateY(-2px);
}

.raconteur-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.raconteur-card__body {
  padding: var(--space-5) var(--space-5) var(--space-6);
}

.raconteur-card__eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-label-md);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-label);
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.raconteur-card__title {
  font-family: var(--font-headline);
  font-size: var(--text-title-sm);
  font-weight: var(--weight-extrabold);
  letter-spacing: var(--tracking-headline);
  color: var(--color-on-surface);
  line-height: 1.25;
  margin-bottom: var(--space-3);
}

.raconteur-card__meta {
  font-family: var(--font-body);
  font-size: var(--text-label-md);
  color: var(--color-secondary);
  letter-spacing: var(--tracking-label);
}

/* Featured card -- spans 2 columns in editorial grid */
.raconteur-card--featured {
  grid-column: span 2;
}

.raconteur-card--featured .raconteur-card__title {
  font-size: var(--text-title-md);
}

/* ============================================================
   EMAIL ARCHIVE GRID -- 12-col editorial
   ============================================================ */

.raconteur-email-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-6);
  padding: var(--space-8) 0;
}

.raconteur-email-grid .raconteur-card {
  grid-column: span 4; /* default: 3 cards per row */
}

.raconteur-email-grid .raconteur-card--featured {
  grid-column: span 8; /* featured: 2/3 width */
}

@media (max-width: 1024px) {
  .raconteur-email-grid .raconteur-card          { grid-column: span 6; }
  .raconteur-email-grid .raconteur-card--featured { grid-column: span 12; }
}

@media (max-width: 640px) {
  .raconteur-email-grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .raconteur-email-grid .raconteur-card,
  .raconteur-email-grid .raconteur-card--featured { grid-column: span 1; }
}

/* ============================================================
   HERO / BANNER SECTION
   ============================================================ */

.raconteur-hero {
  padding: var(--space-16) 0 var(--space-12);
}

.raconteur-hero__title {
  font-family: var(--font-headline);
  font-size: var(--text-display-lg);
  font-weight: var(--weight-black);
  letter-spacing: var(--tracking-headline);
  color: var(--color-on-surface);
  line-height: 1.05;
  margin-bottom: var(--space-4);
}

.raconteur-hero__subtitle {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--color-secondary);
  max-width: 42ch;
  line-height: 1.6;
}

/* ============================================================
   FILTER / STICKY BAR
   ============================================================ */

.raconteur-filter-bar {
  position: sticky;
  top: var(--nav-height);
  z-index: 50;
  background: var(--color-surface-container-low);
  border-bottom: 1px solid rgba(228, 190, 185, 0.20);
  padding: var(--space-3) 0;
}

.raconteur-filter-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
}

/* ============================================================
   CHIPS / TAGS
   ============================================================ */

.raconteur-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-family: var(--font-body);
  font-size: var(--text-label-md);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-label);
  color: var(--color-on-surface);
  background: var(--color-surface-container-lowest);
  border-radius: var(--radius-full);  /* pill -- contrast with card md radius */
  padding: 0.375rem 0.875rem;
  border: 1px solid rgba(228, 190, 185, 0.30);
  cursor: pointer;
  transition: background var(--transition-base), border-color var(--transition-base);
  white-space: nowrap;
}

.raconteur-chip:hover,
.raconteur-chip--active {
  background: var(--color-primary-fixed);
  border-color: var(--color-primary);
  color: var(--color-on-primary-fixed);
}

/* ============================================================
   SECTIONS -- Tonal separation (no borders)
   ============================================================ */

/* Base canvas */
.raconteur-section {
  background: var(--color-surface);
  padding: var(--space-12) 0;
}

/* Structural section -- slightly darker */
.raconteur-section--container-low {
  background: var(--color-surface-container-low);
  padding: var(--space-12) 0;
}

/* Highlight / inset section */
.raconteur-section--container {
  background: var(--color-surface-container);
  padding: var(--space-12) 0;
}

/* Section headings */
.raconteur-section__heading {
  font-family: var(--font-headline);
  font-size: var(--text-title-lg);
  font-weight: var(--weight-extrabold);
  letter-spacing: var(--tracking-headline);
  color: var(--color-on-surface);
  margin-bottom: var(--space-6);
}

/* ============================================================
   CAROUSEL / HORIZONTAL SCROLL
   ============================================================ */

.raconteur-carousel {
  display: flex;
  gap: var(--space-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-3);
  scrollbar-width: none;
}

.raconteur-carousel::-webkit-scrollbar { display: none; }

.raconteur-carousel .raconteur-card {
  flex: 0 0 calc(33.333% - var(--space-4));
  scroll-snap-align: start;
}

@media (max-width: 768px) {
  .raconteur-carousel .raconteur-card {
    flex: 0 0 80vw;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer,
footer.elementor-location-footer {
  background: var(--color-inverse-surface);
  color: var(--color-inverse-on-surface);
  padding: var(--space-12) 0 var(--space-8);
}

.site-footer a {
  color: var(--color-secondary-fixed-dim);
  transition: color var(--transition-base);
}

.site-footer a:hover {
  color: var(--color-surface-container-lowest);
}

.site-footer__brand {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: var(--weight-black);
  letter-spacing: var(--tracking-headline);
  color: var(--color-inverse-on-surface);
  margin-bottom: var(--space-4);
}

/* ============================================================
   ELEMENTOR OVERRIDES
   ============================================================ */

/* Remove default Elementor dividers / separators */
.elementor-divider {
  display: none;
}

/* Elementor section backgrounds inherit our tokens */
.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: var(--container-max);
}

/* Elementor button override */
.elementor-button.elementor-button-link {
  border-radius: var(--radius-full);
}

/* Elementor text widget */
.elementor-widget-text-editor p {
  font-family: var(--font-body);
  font-size: var(--text-body-md);
  color: var(--color-secondary);
  line-height: 1.7;
}

/* Elementor heading widget */
.elementor-widget-heading .elementor-heading-title {
  font-family: var(--font-headline);
  letter-spacing: var(--tracking-headline);
}

/* Image widget */
.elementor-widget-image img {
  border-radius: var(--radius-lg);
  display: block;
  max-width: 100%;
}

/* ============================================================
   UTILITIES
   ============================================================ */

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.u-no-scroll { overflow: hidden; }

.u-text-primary   { color: var(--color-primary); }
.u-text-secondary { color: var(--color-secondary); }
.u-text-on-surface { color: var(--color-on-surface); }

.u-bg-surface              { background-color: var(--color-surface); }
.u-bg-surface-low          { background-color: var(--color-surface-container-low); }
.u-bg-surface-card         { background-color: var(--color-surface-container-lowest); }
.u-bg-inverse              { background-color: var(--color-inverse-surface); }

.u-rounded-card { border-radius: var(--radius-lg); }
.u-rounded-chip { border-radius: var(--radius-full); }

.u-shadow-ambient-sm { box-shadow: var(--shadow-ambient-sm); }
.u-shadow-ambient-md { box-shadow: var(--shadow-ambient-md); }

/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */

@media (max-width: 1024px) {
  :root {
    --nav-height: 56px;
  }
}

@media (max-width: 768px) {
  h1, .h1 { font-size: 2.25rem; }
  h2, .h2 { font-size: 1.75rem; }
}

/* ============================================================
   HEADER + PAGE -- AUTHORITATIVE FIXES
   All header styling in one place. No conflicts.
   ============================================================ */

/* -- Page background -- clean, no pink tint -- */
html, body { background: #f9f9fa !important; }

/* Push page content below fixed header */
body { padding-top: 64px !important; }
body.admin-bar { padding-top: 96px !important; }
@media (max-width: 782px) { body.admin-bar { padding-top: 110px !important; } }

.elementor-section-wrap > .elementor-section,
.e-con, .e-con-inner {
  background-color: transparent !important;
  background-image: none !important;
}

/* -- Header: glassmorphism strip -- */
.elementor-location-header .elementor-section {
  background: rgba(249,249,250,0.92) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(228,190,185,0.22) !important;
  box-shadow: none !important;
}

.elementor-location-header.is-scrolled .elementor-section {
  box-shadow: 0 4px 24px rgba(26,28,29,0.05) !important;
}

/* -- Admin bar offset -- */
.elementor-location-header { top: 0 !important; }
body.admin-bar .elementor-location-header { top: 32px !important; }
@media (max-width: 782px) {
  body.admin-bar .elementor-location-header { top: 46px !important; }
}

/* -- Header container: centered, max-width constrained -- */
.elementor-location-header .elementor-container {
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 0 2rem !important;
  flex-wrap: nowrap !important;
  overflow: visible !important;
}

/* -- Wordmark -- */
.elementor-location-header .elementor-widget-heading .elementor-heading-title {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 1.375rem !important;
  font-weight: 900 !important;
  letter-spacing: -0.03em !important;
  color: #1a1c1d !important;
  line-height: 1 !important;
  opacity: 1 !important;
  visibility: visible !important;
  text-shadow: none !important;
}

.elementor-location-header .elementor-widget-heading .elementor-heading-title a {
  color: #1a1c1d !important;
  text-decoration: none !important;
}

/* -- Nav links -- */
.elementor-location-header .elementor-nav-menu--main a.elementor-item {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.9375rem !important;
  color: #5f5e5e !important;
  transition: color 200ms !important;
}
.elementor-location-header .elementor-nav-menu--main a.elementor-item:hover { color: #1a1c1d !important; }
.elementor-location-header .elementor-nav-menu--main a.elementor-item-active {
  color: #b71419 !important;
  border-bottom: 2px solid #b71419 !important;
}

/* -- Nav element must NOT be fixed; it lives inside its column -- */
.elementor-location-header nav.elementor-nav-menu--main,
.elementor-location-header .elementor-nav-menu--main.elementor-nav-menu__container {
  position: static !important;
  width: auto !important;
  height: auto !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  z-index: auto !important;
}

/* -- Sign In button -- force over all Elementor defaults -- */
.elementor-location-header .elementor-widget-button .elementor-button,
.elementor-location-header .elementor-button-wrapper .elementor-button,
.elementor-location-header a.elementor-button {
  background: linear-gradient(135deg, #b71419 0%, #db322e 100%) !important;
  background-color: #b71419 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 9999px !important;
  padding: 0.5rem 1.375rem !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  box-shadow: none !important;
  transition: transform 200ms ease, box-shadow 200ms ease !important;
  display: inline-flex !important;
  align-items: center !important;
}
.elementor-location-header .elementor-button:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 24px rgba(183,20,25,0.28) !important;
}

/* -- Column layout -- */
.elementor-location-header .elementor-column:first-child {
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 160px !important;
  max-width: 220px !important;
}
.elementor-location-header .elementor-column:last-child {
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 120px !important;
  max-width: 200px !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
}
.elementor-location-header .elementor-column:nth-child(2) {
  flex: 1 1 auto !important;
}

/* -- Footer -- */
.elementor-location-footer .elementor-section {
  background: #2f3132 !important;
}
