/* ============================================================
   SOUTHEAST STONEWORKS — GLOBAL CSS v3
   Based on approved preview design. Uses position:sticky for
   header to work correctly inside Elementor Theme Builder.
   ============================================================ */

/* ============================================================
   CSS CUSTOM PROPERTIES — Brand Tokens
   ============================================================ */
:root {
  --ses-charcoal:       #1C2120;
  --ses-charcoal-deep:  #111413;
  --ses-charcoal-mid:   #0e1110;
  --ses-gold:           #B8A750;
  --ses-gold-light:     #D4C06A;
  --ses-gold-dark:      #8A7A38;
  --ses-gold-subtle:    rgba(184,167,80,0.10);
  --ses-cream:          #F5F0E8;
  --ses-cream-dim:      rgba(245,240,232,0.78);
  --ses-cream-muted:    rgba(245,240,232,0.52);
  --ses-cream-faint:    rgba(245,240,232,0.28);
  --ses-taupe:          #C8B89A;
  --ses-taupe-light:    #E8DFD0;
  --ses-beige:          #F0E8D8;
  --ses-gold-border:    rgba(184,167,80,0.22);
  --ses-gold-border-lo: rgba(184,167,80,0.08);
  --ses-stone-nav:    url('https://southeaststoneworks.com/wp-content/uploads/2026/05/stone-texture-nav.webp');
  --ses-stone-accent: url('https://southeaststoneworks.com/wp-content/uploads/2026/05/stone-texture-accent.webp');
  --ses-nav-h:    72px;
  --ses-util-h:   36px;
  --ses-max-w:    1400px;
  --ses-font-serif:  'Playfair Display', Georgia, serif;
  --ses-font-sans:   'Inter', system-ui, -apple-system, sans-serif;
  --ses-font-accent: 'Cormorant Garamond', Georgia, serif;
  --ses-ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --ses-ease-out:   cubic-bezier(0.0, 0, 0.2, 1);
  --ses-ease-in:    cubic-bezier(0.4, 0, 1, 1);
  --ses-spring:     cubic-bezier(0.34, 1.56, 0.64, 1);
  --ses-safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* ============================================================
   ELEMENTOR THEME BUILDER WRAPPER RESETS
   Critical: makes the Elementor location wrappers transparent
   so our sticky header and footer work correctly.
   ============================================================ */
.elementor-location-header {
  padding: 0 !important;
  margin: 0 !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  overflow: visible !important;
  height: 0 !important; /* Fixed header takes itself out of flow — wrapper must be zero height */
  min-height: 0 !important;
  display: block !important;
}
.elementor-location-footer {
  padding: 0 !important;
  margin: 0 !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  overflow: visible !important;
  height: auto !important;
}
/* Offset body content below the fixed header */
body.elementor-template-full-width {
  padding-top: var(--ses-nav-h) !important;
}
.elementor-location-header .elementor-section-wrap,
.elementor-location-header .e-con,
.elementor-location-header .elementor-container,
.elementor-location-footer .elementor-section-wrap,
.elementor-location-footer .e-con,
.elementor-location-footer .elementor-container {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
  width: 100% !important;
}
.elementor-location-header .elementor-widget-html,
.elementor-location-footer .elementor-widget-html {
  padding: 0 !important;
  margin: 0 !important;
}
.elementor-location-header .elementor-widget-container,
.elementor-location-footer .elementor-widget-container {
  padding: 0 !important;
  margin: 0 !important;
}

/* Nuclear override — kill WordPress/Hello Elementor #cc3366 default link hover everywhere */
a:hover, a:focus,
.ses-site-header a:hover, .ses-site-header a:focus,
.ses-mobile-drawer a:hover, .ses-mobile-drawer a:focus,
.ses-nav-primary a:hover, .ses-nav-primary a:focus,
.ses-nav-link:hover, .ses-nav-link:focus,
.elementor-location-header a:hover, .elementor-location-header a:focus {
  color: var(--ses-gold) !important;
  text-decoration: none !important;
}
/* Override Hello Elementor / WordPress default link colors */
.ses-site-header a,
.ses-site-header a:visited,
.ses-mobile-drawer a,
.ses-mobile-drawer a:visited {
  color: inherit !important;
  text-decoration: none !important;
}

/* ============================================================
   PAGE LOAD ANIMATION
   ============================================================ */
body.ses-loaded .ses-site-header {
  animation: sesHeaderEnter 0.7s var(--ses-ease-out) both;
}
@keyframes sesHeaderEnter {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.ses-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ses-ease-out), transform 0.7s var(--ses-ease-out);
}
.ses-reveal.ses-visible { opacity: 1; transform: translateY(0); }
.ses-reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.7s var(--ses-ease-out), transform 0.7s var(--ses-ease-out); }
.ses-reveal-left.ses-visible { opacity: 1; transform: translateX(0); }
.ses-reveal-right { opacity: 0; transform: translateX(32px); transition: opacity 0.7s var(--ses-ease-out), transform 0.7s var(--ses-ease-out); }
.ses-reveal-right.ses-visible { opacity: 1; transform: translateX(0); }
.ses-reveal-scale { opacity: 0; transform: scale(0.94); transition: opacity 0.65s var(--ses-ease-out), transform 0.65s var(--ses-ease-out); }
.ses-reveal-scale.ses-visible { opacity: 1; transform: scale(1); }
.ses-stagger > *:nth-child(1) { transition-delay: 0ms; }
.ses-stagger > *:nth-child(2) { transition-delay: 80ms; }
.ses-stagger > *:nth-child(3) { transition-delay: 160ms; }
.ses-stagger > *:nth-child(4) { transition-delay: 240ms; }
.ses-stagger > *:nth-child(5) { transition-delay: 320ms; }
.ses-stagger > *:nth-child(6) { transition-delay: 400ms; }

/* ============================================================
   SECTION DIVIDERS
   ============================================================ */
.ses-divider-down { position: relative; }
.ses-divider-down::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 40%);
  z-index: 2;
}
.ses-gold-rule {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--ses-gold-dark), var(--ses-gold), var(--ses-gold-dark));
  margin: 0 auto 24px;
}

/* ============================================================
   UTILITY BAR
   ============================================================ */
.ses-util-bar {
  height: var(--ses-util-h);
  background: var(--ses-charcoal-mid);
  border-bottom: 1px solid var(--ses-gold-border-lo);
  position: relative;
  z-index: 1000;
}
.ses-util-bar__inner {
  max-width: var(--ses-max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ses-util-bar__left-text {
  font-size: 10.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ses-cream-faint);
  font-family: var(--ses-font-sans);
}
.ses-util-bar__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.ses-util-bar__phone {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ses-gold) !important;
  text-decoration: none !important;
  font-family: var(--ses-font-sans);
  transition: color 0.2s;
}
.ses-util-bar__phone:hover { color: var(--ses-gold-light) !important; }
.ses-util-bar__right a:not(.ses-util-bar__phone) {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ses-cream-muted) !important;
  text-decoration: none !important;
  font-family: var(--ses-font-sans);
  transition: color 0.2s;
}
.ses-util-bar__right a:not(.ses-util-bar__phone):hover { color: var(--ses-cream) !important; }

/* ============================================================
   SITE HEADER — fixed positioning for reliable cross-browser sticky
   ============================================================ */
.ses-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9000;
  height: var(--ses-nav-h);
  background-image: var(--ses-stone-nav);
  background-size: cover;
  background-position: center;
  transition: transform 0.32s var(--ses-ease), box-shadow 0.32s var(--ses-ease), background-color 0.32s;
}
.ses-site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,13,12,0.88);
  transition: background 0.32s;
  z-index: 0;
}
.ses-site-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ses-gold-border), transparent);
  z-index: 1;
}
.ses-site-header.ses-scrolled::before { background: rgba(8,11,10,0.97); }
.ses-site-header.ses-scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.6); }
.ses-site-header.ses-hidden { transform: translateY(calc(-1 * var(--ses-nav-h))); }

.ses-nav-inner {
  position: relative;
  z-index: 1;
  max-width: var(--ses-max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.ses-nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none !important;
  flex-shrink: 0;
}
.ses-nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.3s, opacity 0.3s;
}
.ses-nav-logo:hover img { opacity: 0.85; }

/* Primary nav */
.ses-nav-primary {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0 0 0 auto;
  gap: 4px;
  flex: 1;
  justify-content: flex-end;
}
.ses-nav-item { position: relative; list-style: none; }
.ses-nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ses-cream-dim) !important;
  text-decoration: none !important;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ses-font-sans);
  transition: color 0.2s;
  white-space: nowrap;
  height: var(--ses-nav-h);
  position: relative;
}
/* Gold underline on hover — matches footer hover style */
.ses-nav-link::after {
  content: '';
  position: absolute;
  bottom: 16px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--ses-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ses-ease);
}
.ses-nav-link:hover::after,
.ses-nav-item.ses-open .ses-nav-link::after { transform: scaleX(1); }
.ses-nav-link:hover,
.ses-nav-item.ses-open .ses-nav-link { color: var(--ses-gold) !important; background: none !important; }
/* Kill Elementor/WP default button:hover background */
.ses-nav-primary button:hover,
.ses-nav-primary button:focus,
.ses-nav-primary button:active {
  background: none !important;
  background-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
}
.ses-nav-link svg { transition: transform 0.25s var(--ses-ease); }
.ses-nav-item.ses-open .ses-nav-link svg { transform: rotate(180deg); }

/* Desktop CTA */
.ses-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  background: var(--ses-gold);
  color: var(--ses-charcoal) !important;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none !important;
  font-family: var(--ses-font-sans);
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s var(--ses-spring), box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.ses-nav-cta::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s var(--ses-ease);
}
.ses-nav-cta:hover::after { left: 150%; }
.ses-nav-cta:hover { background: var(--ses-gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(184,167,80,0.35); }

/* Hamburger — always far right of navbar */
.ses-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: rgba(245,240,232,0.04);
  border: 1px solid var(--ses-gold-border);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
  margin-left: auto;
  order: 99;
}
.ses-hamburger:hover { background: rgba(184,167,80,0.08); border-color: var(--ses-gold); }
.ses-hamburger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--ses-cream);
  transition: transform 0.3s var(--ses-ease), opacity 0.3s, width 0.3s;
  transform-origin: center;
}
.ses-hamburger.ses-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ses-hamburger.ses-open span:nth-child(2) { opacity: 0; width: 0; }
.ses-hamburger.ses-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Language switcher */
.ses-lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ses-cream-muted);
  cursor: pointer;
  background: none;
  border: 1px solid var(--ses-gold-border);
  padding: 5px 10px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  font-family: var(--ses-font-sans);
  margin-left: 10px;
}
.ses-lang-switch:hover { color: var(--ses-gold); border-color: var(--ses-gold); background: rgba(184,167,80,0.05); }

/* ============================================================
   MEGA MENU
   ============================================================ */
.ses-mega-menu {
  position: absolute;
  top: calc(var(--ses-nav-h) + 1px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 680px;
  background-image: var(--ses-stone-nav);
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s var(--ses-ease), visibility 0.28s, transform 0.28s var(--ses-ease);
  pointer-events: none;
  z-index: 9999;
  border-top: 2px solid var(--ses-gold);
  box-shadow: 0 24px 72px rgba(0,0,0,0.75);
}
.ses-mega-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,13,12,0.93);
  z-index: 0;
}
.ses-nav-item.ses-open .ses-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
.ses-mega-inner {
  position: relative;
  z-index: 1;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.ses-mega-menu--wide { min-width: 920px; }
.ses-mega-menu--wide .ses-mega-inner { grid-template-columns: 1fr 1fr 280px; }
.ses-mega-col {
  padding: 32px 28px;
  border-right: 1px solid rgba(184,167,80,0.1);
}
.ses-mega-col:last-child { border-right: none; }
.ses-mega-col__title {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ses-gold);
  padding: 0 0 8px;
  border-bottom: 1px solid var(--ses-gold-border);
  margin-bottom: 10px;
  font-family: var(--ses-font-sans);
}
.ses-mega-col__links { list-style: none; padding: 0; margin: 0; }
.ses-mega-col__links li { list-style: none; }
.ses-mega-col__links a {
  display: block;
  padding: 8px 10px;
  font-size: 12.5px;
  color: var(--ses-cream-dim) !important;
  text-decoration: none !important;
  border-left: 2px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s, padding-left 0.2s;
  font-family: var(--ses-font-sans);
  letter-spacing: 0.02em;
}
.ses-mega-col__links a:hover {
  color: var(--ses-gold) !important;
  background: rgba(184,167,80,0.07);
  border-left-color: var(--ses-gold);
  padding-left: 14px;
}
.ses-mega-img-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
.ses-mega-img-panel__inner {
  flex: 1;
  background-size: cover;
  background-position: center;
  min-height: 240px;
  display: flex;
  align-items: flex-end;
  padding: 20px 16px 16px;
  position: relative;
  transition: transform 0.4s var(--ses-ease);
}
.ses-mega-img-panel:hover .ses-mega-img-panel__inner { transform: scale(1.03); }
.ses-mega-img-panel__inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,13,12,0.8), transparent);
}
.ses-mega-img-panel__caption {
  position: relative;
  z-index: 1;
  font-family: var(--ses-font-accent);
  font-style: italic;
  font-size: 13px;
  color: var(--ses-cream-dim);
  letter-spacing: 0.04em;
}

/* ============================================================
   STANDARD DROPDOWN
   ============================================================ */
.ses-dropdown {
  position: absolute;
  top: calc(var(--ses-nav-h) + 1px);
  left: 0;
  min-width: 220px;
  background-image: var(--ses-stone-nav);
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s var(--ses-ease), visibility 0.25s, transform 0.25s var(--ses-ease);
  pointer-events: none;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  z-index: 9999;
  border-top: 2px solid var(--ses-gold);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}
.ses-dropdown::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,13,12,0.91);
  pointer-events: none;
  z-index: 0;
}
.ses-nav-item.ses-open .ses-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}
.ses-dropdown li { list-style: none; position: relative; z-index: 1; }
.ses-dropdown li a {
  display: block;
  padding: 11px 22px;
  font-size: 13px;
  color: var(--ses-cream-dim) !important;
  text-decoration: none !important;
  letter-spacing: 0.04em;
  transition: color 0.2s, background 0.2s, padding-left 0.2s;
  border-left: 2px solid transparent;
  font-family: var(--ses-font-sans);
  position: relative;
  z-index: 1;
}
.ses-dropdown li a:hover {
  color: var(--ses-gold) !important;
  background: rgba(184,167,80,0.08);
  padding-left: 28px;
  border-left-color: var(--ses-gold);
}

/* ============================================================
   MOBILE OVERLAY
   ============================================================ */
.ses-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0);
  z-index: 1800;
  pointer-events: none;
  transition: background 0.35s var(--ses-ease);
}
.ses-mobile-overlay.ses-open {
  background: rgba(0,0,0,0.78);
  pointer-events: all;
}

/* ============================================================
   MOBILE DRAWER — Full-screen app-style panel (slides from top)
   ============================================================ */
.ses-mobile-drawer {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100%; height: 100dvh;
  z-index: 1900;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.42s var(--ses-ease);
  overflow: hidden;
}
/* Stone texture background layer — real image with warm overlay */
.ses-drawer-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://southeaststoneworks.com/wp-content/uploads/2026/05/section-stone-craft.webp');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
  transform: scale(1.04);
}
/* Edge vignette for depth */
.ses-drawer-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 50%, rgba(4,4,3,0.60) 100%);
  z-index: 1;
  pointer-events: none;
}
/* Warm semi-transparent overlay — lets stone texture breathe */
.ses-drawer-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(184,167,80,0.07) 0%, transparent 60%),
    linear-gradient(180deg,
      rgba(12,11,9,0.80) 0%,
      rgba(14,12,10,0.72) 45%,
      rgba(10,9,8,0.78) 100%
    );
}
/* Content sits above the bg */
.ses-drawer-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
.ses-mobile-drawer.ses-open { transform: translateY(0); }

.ses-drawer-header {
  position: relative; z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 72px;
  border-bottom: 1px solid rgba(184,167,80,0.16);
  flex-shrink: 0;
  background: rgba(10,9,7,0.28);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
}
.ses-drawer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
}
.ses-drawer-logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  object-fit: contain;
}
.ses-drawer-logo__name {
  font-family: var(--ses-font-serif);
  font-size: 13px;
  font-weight: 700;
  color: var(--ses-cream);
  letter-spacing: 0.03em;
  line-height: 1.2;
}
.ses-drawer-logo__sub {
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ses-gold);
  font-weight: 500;
  font-family: var(--ses-font-sans);
}
.ses-drawer-close {
  width: 36px; height: 36px;
  background: rgba(245,240,232,0.06);
  border: 1px solid var(--ses-gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ses-cream);
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.2s var(--ses-spring);
  -webkit-tap-highlight-color: transparent;
}
.ses-drawer-close:hover {
  background: rgba(184,167,80,0.12);
  border-color: var(--ses-gold);
  transform: rotate(90deg);
}

.ses-drawer-scroll {
  position: relative;
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
  padding: 0 8px;
}
.ses-drawer-scroll::-webkit-scrollbar { width: 3px; }
.ses-drawer-scroll::-webkit-scrollbar-track { background: transparent; }
.ses-drawer-scroll::-webkit-scrollbar-thumb { background: var(--ses-gold-border); border-radius: 2px; }

.ses-mobile-nav { list-style: none; padding: 8px 0; margin: 0; }
.ses-mobile-nav > li { list-style: none; }

.ses-mob-acc-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 18px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ses-cream);
  background: none;
  border: none;
  border-bottom: 1px solid rgba(184,167,80,0.08);
  cursor: pointer;
  font-family: var(--ses-font-sans);
  text-align: left;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.2s, background 0.2s;
  min-height: 52px;
}
.ses-mob-acc-btn:hover,
.ses-mob-acc-btn.ses-active {
  color: var(--ses-gold);
  background: rgba(184,167,80,0.06);
  border-left: 3px solid var(--ses-gold);
  padding-left: 15px;
}
.ses-acc-icon {
  width: 28px; height: 28px;
  background: rgba(245,240,232,0.05);
  border: 1px solid var(--ses-gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.28s var(--ses-ease);
  font-size: 16px;
  color: var(--ses-gold);
  line-height: 1;
  font-weight: 300;
}
.ses-mob-acc-btn.ses-active .ses-acc-icon {
  background: rgba(184,167,80,0.14);
  border-color: var(--ses-gold);
  transform: rotate(45deg);
}

.ses-mob-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.90) !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(184,167,80,0.09);
  border-left: 3px solid transparent;
  font-family: var(--ses-font-sans);
  transition: color 0.22s, background 0.22s, border-left-color 0.22s, padding-left 0.22s;
  -webkit-tap-highlight-color: transparent;
  min-height: 56px;
}
.ses-mob-nav-link:hover,
.ses-mob-nav-link:active {
  color: var(--ses-gold) !important;
  background: rgba(184,167,80,0.06);
  border-left-color: var(--ses-gold);
  padding-left: 24px;
}

.ses-mob-sub-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s var(--ses-ease);
  background: rgba(6,5,4,0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184,167,80,0.07);
}
.ses-mob-sub-panel.ses-open { max-height: 900px; }

.ses-mob-sub-label {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ses-gold);
  padding: 14px 18px 6px;
  font-family: var(--ses-font-sans);
  opacity: 0.9;
}
.ses-mob-sub-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px 13px 26px;
  font-size: 13.5px;
  color: var(--ses-cream-muted) !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(184,167,80,0.05);
  font-family: var(--ses-font-sans);
  transition: color 0.2s, background 0.2s, padding-left 0.2s;
  -webkit-tap-highlight-color: transparent;
  min-height: 48px;
}
.ses-mob-sub-panel a::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--ses-gold-dark);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.2s;
}
.ses-mob-sub-panel a:hover {
  color: var(--ses-gold) !important;
  background: rgba(184,167,80,0.05);
  padding-left: 30px;
}
.ses-mob-sub-panel a:hover::before { background: var(--ses-gold); }

.ses-drawer-bottom {
  position: relative;
  flex-shrink: 0;
  padding: 14px 24px;
  padding-bottom: calc(14px + var(--ses-safe-bottom));
  border-top: 1px solid rgba(184,167,80,0.18);
  background: rgba(10,9,7,0.68);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  display: flex;
  flex-direction: column;
  gap: 9px;
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
}
.ses-drawer-contact-strip { display: flex; gap: 8px; }
.ses-drawer-contact-strip a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 11px 6px;
  background: rgba(245,240,232,0.04);
  border: 1px solid var(--ses-gold-border);
  color: var(--ses-cream-muted) !important;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-decoration: none !important;
  font-family: var(--ses-font-sans);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  -webkit-tap-highlight-color: transparent;
  min-height: 44px;
}
.ses-drawer-contact-strip a:hover { background: rgba(184,167,80,0.10); color: var(--ses-gold) !important; border-color: var(--ses-gold); }
.ses-drawer-cta-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 20px;
  background: var(--ses-gold);
  color: var(--ses-charcoal) !important;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none !important;
  font-family: var(--ses-font-sans);
  transition: background 0.2s, transform 0.2s var(--ses-spring);
  -webkit-tap-highlight-color: transparent;
  position: relative;
  overflow: hidden;
  min-height: 50px;
}
.ses-drawer-cta-primary:hover { background: var(--ses-gold-light); transform: scale(1.01); }
.ses-drawer-cta-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: transparent;
  border: 1px solid var(--ses-gold-border);
  color: var(--ses-cream-dim) !important;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none !important;
  font-family: var(--ses-font-sans);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  -webkit-tap-highlight-color: transparent;
  min-height: 44px;
}
.ses-drawer-cta-secondary:hover { border-color: var(--ses-gold); color: var(--ses-gold) !important; background: rgba(184,167,80,0.05); }

/* ============================================================
   FOOTER
   ============================================================ */
.ses-site-footer {
  background-image: var(--ses-stone-nav);
  background-size: cover;
  background-position: center bottom;
  position: relative;
  font-family: var(--ses-font-sans);
}
.ses-site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8,11,10,0.92);
  z-index: 0;
}
.ses-site-footer::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ses-gold), var(--ses-gold-dark), var(--ses-gold), transparent);
  opacity: 0.5;
  z-index: 1;
}
.ses-footer__inner {
  position: relative; z-index: 1;
  max-width: var(--ses-max-w);
  margin: 0 auto;
  padding: 56px 40px 44px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.ses-footer__logo-img {
  height: 56px;
  width: auto;
  margin-bottom: 18px;
  display: block;
  filter: brightness(0) invert(1);
}
.ses-footer__brand-desc {
  font-size: 13px;
  color: var(--ses-cream-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  opacity: 0.65;
}
.ses-footer__domain {
  font-size: 10.5px;
  color: var(--ses-cream-faint);
  letter-spacing: 0.06em;
}
.ses-footer__social { display: flex; gap: 10px; margin-top: 18px; }
.ses-footer__social a {
  width: 36px; height: 36px;
  background: rgba(245,240,232,0.04);
  border: 1px solid var(--ses-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ses-cream-muted) !important;
  text-decoration: none !important;
  font-size: 12px;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s var(--ses-spring);
}
.ses-footer__social a:hover {
  background: rgba(184,167,80,0.10);
  border-color: var(--ses-gold);
  color: var(--ses-gold) !important;
  transform: translateY(-3px);
}
.ses-footer__col-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ses-gold);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ses-gold-border);
  font-family: var(--ses-font-sans);
}
.ses-footer__links { list-style: none; padding: 0; margin: 0; }
.ses-footer__links li { list-style: none; margin-bottom: 9px; }
.ses-footer__links a {
  font-size: 13px;
  color: var(--ses-cream-muted) !important;
  text-decoration: none !important;
  transition: color 0.2s, padding-left 0.2s;
  opacity: 0.65;
  line-height: 1.5;
  font-family: var(--ses-font-sans);
  display: block;
}
.ses-footer__links a:hover { color: var(--ses-gold) !important; opacity: 1; padding-left: 6px; }
.ses-footer__bottom-bar {
  position: relative; z-index: 1;
  border-top: 1px solid var(--ses-gold-border-lo);
}
.ses-footer__bottom {
  max-width: var(--ses-max-w);
  margin: 0 auto;
  padding: 22px 40px calc(22px + var(--ses-safe-bottom));
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--ses-cream-faint);
  font-family: var(--ses-font-sans);
}
.ses-footer__bottom a { color: var(--ses-cream-faint) !important; text-decoration: none !important; transition: color 0.2s; }
.ses-footer__bottom a:hover { color: var(--ses-gold) !important; }
.ses-footer__legal { display: flex; gap: 20px; }

/* ============================================================
   GLOBAL BUTTONS
   ============================================================ */
.ses-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--ses-font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none !important;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s var(--ses-spring), box-shadow 0.2s;
}
.ses-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s var(--ses-ease);
}
.ses-btn:hover::after { left: 150%; }
.ses-btn:hover { transform: translateY(-2px); }
.ses-btn--gold { background: var(--ses-gold); color: var(--ses-charcoal) !important; }
.ses-btn--gold:hover { background: var(--ses-gold-light); box-shadow: 0 8px 28px rgba(184,167,80,0.4); }
.ses-btn--outline { background: transparent; color: var(--ses-cream) !important; border: 1px solid var(--ses-gold-border); }
.ses-btn--outline:hover { border-color: var(--ses-gold); color: var(--ses-gold) !important; background: rgba(184,167,80,0.06); }

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

/* Desktop footer visible, mobile footer hidden by default */
.ses-footer__desktop-only { display: grid; }
.ses-footer__mobile-only  { display: none; }

@media (max-width: 1100px) {
  .ses-nav-primary { display: none; }
  .ses-nav-cta { display: none; }
  .ses-lang-switch { display: none; }
  /* Hamburger shows, pushed to far right by order:99 + margin-left:auto */
  .ses-hamburger { display: flex; }
  .ses-util-bar__left-text { display: none; }
  .ses-footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  :root { --ses-nav-h: 62px; --ses-util-h: 32px; }
  .ses-nav-inner { padding: 0 16px; }
  .ses-util-bar__inner { padding: 0 16px; }
  /* Switch to simplified mobile footer */
  .ses-footer__desktop-only { display: none !important; }
  .ses-footer__mobile-only  { display: block !important; padding: 40px 20px 32px; }
  .ses-footer__bottom { flex-direction: column; gap: 10px; text-align: center; padding: 18px 20px; }
  .ses-footer__legal { flex-wrap: wrap; justify-content: center; gap: 14px; }
}
@media (max-width: 480px) {
  :root { --ses-nav-h: 58px; }
  .ses-nav-inner { padding: 0 14px; }
  .ses-footer__mobile-only { padding: 32px 16px 24px; }
  .ses-footer__bottom { padding: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   NUCLEAR HOVER OVERRIDE — LAST RULE IN FILE
   Kills reset.css?ver=3.4.8 which sets a:hover { color: rgb(51,51,102) }
   and Hello Elementor kit which sets a:hover { color: #cc3366 }
   This rule must remain the LAST rule in this file.
   ============================================================ */
html body a:hover,
html body a:focus,
html body .ses-site-header a:hover,
html body .ses-site-header a:focus,
html body .ses-site-header button:hover,
html body .ses-nav-primary a:hover,
html body .ses-nav-primary a:focus,
html body .ses-nav-link:hover,
html body .ses-nav-link:focus,
html body .ses-util-bar a:hover,
html body .ses-util-bar a:focus,
html body .ses-mobile-drawer a:hover,
html body .ses-mobile-drawer a:focus,
html body .elementor-location-header a:hover,
html body .elementor-location-header a:focus {
  color: #B8A750 !important;
  text-decoration: none !important;
}

/* ============================================================
   MOBILE FOOTER — simplified contact block
   ============================================================ */
.ses-footer__mobile-only .ses-footer__brand-col {
  margin-bottom: 28px;
}
.ses-footer__mobile-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ses-footer__mobile-contact-strip {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ses-footer__mobile-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ses-cream-muted) !important;
  text-decoration: none !important;
  font-family: var(--ses-font-sans);
  padding: 10px 0;
  border-bottom: 1px solid var(--ses-gold-border-lo);
  transition: color 0.2s;
}
.ses-footer__mobile-contact-item:hover { color: var(--ses-gold) !important; }
.ses-footer__mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  background: var(--ses-gold);
  color: var(--ses-charcoal) !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none !important;
  font-family: var(--ses-font-sans);
  margin-top: 8px;
  transition: background 0.2s;
}
.ses-footer__mobile-cta:hover { background: var(--ses-gold-light); }

/* Footer column wrappers from shortcodes */
.ses-footer__menu-col,
.ses-footer__contact-col { /* inherits grid cell from parent */ }
.ses-footer__brand-col { /* inherits grid cell from parent */ }

/* wp_nav_menu adds <li> wrappers — strip them for footer menus */
.ses-footer__links > li { list-style: none; margin-bottom: 9px; }
.ses-footer__links > li > a {
  font-size: 13px;
  color: var(--ses-cream-muted) !important;
  text-decoration: none !important;
  transition: color 0.2s, padding-left 0.2s;
  opacity: 0.65;
  line-height: 1.5;
  font-family: var(--ses-font-sans);
  display: block;
}
.ses-footer__links > li > a:hover { color: var(--ses-gold) !important; opacity: 1; padding-left: 6px; }

/* Legal menu from wp_nav_menu */
.ses-footer__legal > li { list-style: none; display: inline; }
.ses-footer__legal > li > a {
  color: var(--ses-cream-faint) !important;
  text-decoration: none !important;
  font-size: 11px;
  transition: color 0.2s;
}
.ses-footer__legal > li > a:hover { color: var(--ses-gold) !important; }

/* Nav badge */
.ses-nav-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 6px;
  background: var(--ses-gold);
  color: var(--ses-charcoal);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-left: 4px;
  line-height: 1;
}

/* Dropdown description line */
.ses-dropdown-desc {
  display: block;
  font-size: 11px;
  color: var(--ses-cream-faint);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 2px;
  opacity: 0.7;
}


/* ============================================================
   CUSTOM FORMS — Consultation & Contact
   ============================================================ */
.ses-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ses-form__row {
  display: flex;
  gap: 12px;
}
.ses-form__row--2 > .ses-form__group {
  flex: 1;
}
.ses-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ses-form__label {
  font-family: var(--ses-font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ses-charcoal);
}
.ses-booking .ses-form__label {
  color: rgba(255,255,255,0.7);
}
.ses-form__label span {
  color: var(--ses-gold);
}
.ses-form__input,
.ses-form__select,
.ses-form__textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--ses-font-sans);
  font-size: 14px;
  color: var(--ses-charcoal);
  background: #fff;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.ses-form__input:focus,
.ses-form__select:focus,
.ses-form__textarea:focus {
  border-color: var(--ses-gold);
  box-shadow: 0 0 0 3px rgba(184,167,80,0.15);
}
.ses-form__select {
  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='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.ses-form__textarea {
  resize: vertical;
  min-height: 90px;
}
.ses-btn--full {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.ses-form__note {
  font-family: var(--ses-font-sans);
  font-size: 11px;
  color: rgba(0,0,0,0.45);
  text-align: center;
  margin: 0;
}
.ses-booking .ses-form__note {
  color: rgba(255,255,255,0.4);
}

/* Booking form card — dark background inputs */
.ses-booking .ses-form__input,
.ses-booking .ses-form__select,
.ses-booking .ses-form__textarea {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
  color: #fff;
}
.ses-booking .ses-form__input::placeholder,
.ses-booking .ses-form__textarea::placeholder {
  color: rgba(255,255,255,0.35);
}
.ses-booking .ses-form__select option {
  background: #1a1e1d;
  color: #fff;
}
.ses-booking .ses-form__input:focus,
.ses-booking .ses-form__select:focus,
.ses-booking .ses-form__textarea:focus {
  border-color: var(--ses-gold);
  background: rgba(255,255,255,0.1);
}

/* Responsive form rows */
@media (max-width: 600px) {
  .ses-form__row--2 {
    flex-direction: column;
  }
}

/* ============================================================
   TRANSLATEPRESS COMPATIBILITY
   TranslatePress scans rendered HTML from shortcodes
   automatically via its visual editor. All text is output
   via esc_html() / wp_kses_post() which preserves text nodes.
   ============================================================ */
.trp-language-switcher-container,
.trp-floatbox-languages {
  z-index: 99999 !important;
}
#trp-translation-bar {
  top: 108px !important;
}
body.trp-editor-open {
  overflow: auto !important;
}

/* ============================================================
   HEADER NAV FOCUS STATE LOCK — 2026-06-03
   Keeps header menu labels visually consistent after first click.
   Hover and open dropdown states remain gold. Persistent keyboard or
   mouse focus returns to the default cream label color instead of
   inheriting Elementor, browser, or global focus colors.
   ============================================================ */
.ses-site-header .ses-nav-primary .ses-nav-link:focus:not(:hover),
.ses-site-header .ses-nav-primary .ses-nav-link:active:not(:hover),
.ses-site-header .ses-nav-primary .ses-nav-link:visited:not(:hover) {
  color: var(--ses-cream-dim) !important;
  background: transparent !important;
  outline: none !important;
  box-shadow: none !important;
}
.ses-site-header .ses-nav-primary .ses-nav-link:focus:not(:hover)::after,
.ses-site-header .ses-nav-primary .ses-nav-link:active:not(:hover)::after {
  transform: scaleX(0) !important;
}
.ses-site-header .ses-nav-primary .ses-nav-item.ses-open > .ses-nav-link,
.ses-site-header .ses-nav-primary .ses-nav-link:hover,
.ses-site-header .ses-nav-primary .ses-nav-item.ses-open > .ses-nav-link:focus {
  color: var(--ses-gold) !important;
  background: transparent !important;
}
.ses-site-header .ses-nav-primary .ses-nav-item.ses-open > .ses-nav-link::after,
.ses-site-header .ses-nav-primary .ses-nav-link:hover::after {
  transform: scaleX(1) !important;
}

/* ============================================================
   2026-06-04 — HEADER NAV COLOR STABILIZATION
   Keeps primary navigation, dropdown, utility, and mobile drawer
   menu text white in normal and visited states while preserving
   gold hover/open treatment and the gold CTA button treatment.
   ============================================================ */
.ses-site-header .ses-nav-link,
.ses-site-header .ses-nav-link:visited,
.ses-site-header .ses-nav-link:active,
.ses-site-header .ses-nav-link:focus:not(:hover),
.ses-site-header .ses-dropdown a,
.ses-site-header .ses-dropdown a:visited,
.ses-site-header .ses-mega-menu a,
.ses-site-header .ses-mega-menu a:visited,
.ses-mobile-drawer .ses-mob-acc-btn,
.ses-mobile-drawer .ses-mob-acc-btn:visited,
.ses-mobile-drawer .ses-mobile-nav a,
.ses-mobile-drawer .ses-mobile-nav a:visited,
.ses-mobile-drawer .ses-mobile-links a,
.ses-mobile-drawer .ses-mobile-links a:visited,
.ses-util-bar__right a:not(.ses-util-bar__phone),
.ses-util-bar__right a:not(.ses-util-bar__phone):visited {
  color: var(--ses-cream) !important;
  text-decoration: none !important;
}

.ses-site-header .ses-nav-link:hover,
.ses-site-header .ses-nav-link:focus,
.ses-site-header .ses-nav-item.ses-open > .ses-nav-link,
.ses-site-header .ses-dropdown a:hover,
.ses-site-header .ses-dropdown a:focus,
.ses-site-header .ses-mega-menu a:hover,
.ses-site-header .ses-mega-menu a:focus,
.ses-mobile-drawer .ses-mob-acc-btn:hover,
.ses-mobile-drawer .ses-mob-acc-btn:focus,
.ses-mobile-drawer .ses-mob-acc-btn.ses-active,
.ses-mobile-drawer .ses-mobile-nav a:hover,
.ses-mobile-drawer .ses-mobile-nav a:focus,
.ses-mobile-drawer .ses-mobile-links a:hover,
.ses-mobile-drawer .ses-mobile-links a:focus {
  color: var(--ses-gold) !important;
}

.ses-site-header .ses-nav-cta,
.ses-site-header .ses-nav-cta:visited,
.ses-site-header .ses-nav-cta:hover,
.ses-site-header .ses-nav-cta:focus {
  color: var(--ses-charcoal) !important;
}

.ses-util-bar__phone,
.ses-util-bar__phone:visited,
.ses-util-bar__phone:hover,
.ses-util-bar__phone:focus {
  color: var(--ses-gold) !important;
}
/* ============================================================
   SES_GLOBAL_FOUNDATION_ONLY_V1_4_4
   This file intentionally owns sitewide foundation styles only.
   Page-specific presentation is conditionally loaded from dedicated
   assets/css/ses-page-*.css files to prevent cross-page conflicts.
   ============================================================ */

