/*
Theme Name:  White Oryx
Theme URI:   https://whiteoryxkw.com
Author:      White Oryx Petroleum Infrastructure Services Co.
Description: Custom theme — header, footer, homepage, and services page styles consolidated.
Version:     3.0.0
License:     Private
Text Domain: whiteoryx
*/

/* =====================================================
   DESIGN TOKENS
===================================================== */
:root {
  --ink:        #111215;
  --carbon:     #1A1D23;
  --carbon-mid: #22272F;
  --white:      #FFFFFF;
  --chalk:      #F4F3F1;
  --rule:       #E2E0DC;
  --mid:        #7A7870;
  --soft:       #555450;
  --orange:     #C8541A;
  --orange2:    #A8420E;
  --orange-bg:  rgba(200, 84, 26, 0.08);
  --display:    'DM Serif Display', Georgia, serif;
  --body:       'DM Sans', system-ui, sans-serif;
  --caps:       'Barlow Condensed', system-ui, sans-serif;
  --nav-h:      68px;
  --band-h:     180px;
}

/* ── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: calc(var(--nav-h) + var(--band-h));
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── SHARED UTILITIES ──────────────────────────────── */
.wo-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4.5rem);
}
.wo-eyebrow {
  font-family: var(--caps);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
}
.wo-eyebrow::before {
  content: '';
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--orange);
  flex-shrink: 0;
}
.wo-eyebrow-center { justify-content: center; }

/* ── SCROLL REVEAL ─────────────────────────────────── */
.wo-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.wo-reveal.on { opacity: 1; transform: none; }
.wo-reveal-group > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.wo-reveal-group.on > *:nth-child(1) { opacity:1; transform:none; transition-delay:0s; }
.wo-reveal-group.on > *:nth-child(2) { opacity:1; transform:none; transition-delay:.1s; }
.wo-reveal-group.on > *:nth-child(3) { opacity:1; transform:none; transition-delay:.18s; }
.wo-reveal-group.on > *:nth-child(4) { opacity:1; transform:none; transition-delay:.26s; }
.wo-reveal-group.on > *:nth-child(5) { opacity:1; transform:none; transition-delay:.32s; }
.wo-reveal-group.on > *:nth-child(6) { opacity:1; transform:none; transition-delay:.38s; }
.wo-reveal-group.on > *:nth-child(7) { opacity:1; transform:none; transition-delay:.44s; }
/* Fallback: any additional children beyond 7 still become visible */
.wo-reveal-group.on > *:nth-child(n+8) { opacity:1; transform:none; transition-delay:.5s; }

/* ── BUTTONS ───────────────────────────────────────── */
.wo-btn-primary {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--caps); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  background: var(--orange); color: #fff;
  padding: 13px 26px; border-radius: 5px;
  transition: background 0.18s, transform 0.15s;
}
.wo-btn-primary:hover { background: var(--orange2); transform: translateY(-1px); }

.wo-btn-ghost {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--caps); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: rgba(243,242,239,0.75); border: 1px solid rgba(243,242,239,0.25);
  padding: 12px 22px; border-radius: 5px;
  transition: border-color 0.18s, color 0.18s;
}
.wo-btn-ghost:hover { color: #F3F2EF; border-color: rgba(243,242,239,0.55); }

.wo-btn-outline {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--caps); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--orange); border: 1.5px solid var(--orange);
  padding: 11px 24px; border-radius: 5px;
  transition: background 0.18s, color 0.18s;
}
.wo-btn-outline:hover { background: var(--orange); color: #fff; }

.wo-btn-white {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--caps); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--orange); background: #fff;
  padding: 13px 28px; border-radius: 5px;
  transition: background 0.18s, transform 0.15s;
}
.wo-btn-white:hover { background: #F3F0EE; transform: translateY(-1px); }

.wo-btn-woutline {
  display: inline-flex; align-items: center;
  font-family: var(--caps); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: #fff; border: 1.5px solid rgba(255,255,255,0.5);
  padding: 12px 24px; border-radius: 5px; margin-left: 0.8rem;
  transition: border-color 0.18s;
}
.wo-btn-woutline:hover { border-color: #fff; }

/* =====================================================
   NAV BAR (sticky, layer 1)
===================================================== */
#wo-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 600;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 clamp(1.5rem, 5vw, 4.5rem);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow 0.25s;
  gap: 2rem;
}
#wo-nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.07); }

.wo-nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  flex-shrink: 0; text-decoration: none;
}
/* Force nav logo small — targets WordPress custom-logo output */
.wo-nav-logo a,
.wo-nav-logo .custom-logo-link { display: flex; align-items: center; }
.wo-nav-logo img,
.wo-nav-logo .custom-logo { 
  height: 36px !important; 
  width: auto !important; 
  display: block;
  max-width: 140px !important;
}
.wo-nav-logo-fallback { display: flex; flex-direction: column; line-height: 1.15; }
.wo-nav-logo-fallback strong {
  font-family: var(--caps); font-size: 0.92rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink);
}
.wo-nav-logo-fallback small {
  font-family: var(--caps); font-size: 0.52rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--mid);
}

#wo-nav-menu { margin-left: auto; }
#wo-nav-menu ul { display: flex; align-items: center; gap: 0; margin: 0; padding: 0; }
#wo-nav-menu ul li a {
  font-family: var(--caps); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--mid); padding: 7px 11px; border-radius: 4px;
  display: block; transition: color 0.18s, background 0.18s;
  white-space: nowrap;
}
#wo-nav-menu ul li a:hover,
#wo-nav-menu ul li.current-menu-item > a,
#wo-nav-menu ul li.current_page_item > a { color: var(--orange); background: var(--orange-bg); }
#wo-nav-menu ul li.menu-cta > a {
  background: var(--orange); color: #fff !important;
  border-radius: 4px; padding: 8px 18px; margin-left: 0.3rem;
}
#wo-nav-menu ul li.menu-cta > a:hover { background: var(--orange2) !important; }

.wo-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 5px; background: none; border: none; margin-left: auto;
}
.wo-hamburger span {
  display: block; width: 23px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.24s, opacity 0.24s;
}
.wo-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.wo-hamburger.open span:nth-child(2) { opacity: 0; }
.wo-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.wo-mobile-drawer {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0; z-index: 590;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  padding: 1.2rem clamp(1.5rem,5vw,4.5rem) 1.8rem;
}
.wo-mobile-drawer.open { display: block; }
.wo-mobile-drawer ul li a {
  display: block; font-family: var(--caps); font-size: 1.05rem;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--mid); padding: 11px 0; border-bottom: 1px solid var(--rule);
  transition: color 0.18s;
}
.wo-mobile-drawer ul li:last-child a { border-bottom: none; }
.wo-mobile-drawer ul li a:hover,
.wo-mobile-drawer ul li.current-menu-item a { color: var(--orange); }

/* =====================================================
   HEADER BAND (large logo + name, layer 2)
===================================================== */
#wo-header-band {
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  z-index: 500; height: var(--band-h);
  overflow: hidden; background-color: var(--carbon);
  width: 100%;
}
#wo-header-band-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center 40%;
  filter: brightness(0.28) saturate(0.5);
}
#wo-header-band-vignette {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right, rgba(26,29,35,0.96) 0%, rgba(26,29,35,0.7) 40%, rgba(26,29,35,0.4) 100%),
    linear-gradient(to bottom, rgba(26,29,35,0.2) 0%, rgba(26,29,35,0.6) 100%);
}
#wo-header-band-inner {
  position: relative; z-index: 2;
  height: 100%; width: 100%;
  max-width: 1300px; margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4.5rem);
  display: flex; align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.5rem);
  box-sizing: border-box;
}
#wo-header-band-logo {
  flex-shrink: 0;
  display: flex; align-items: center;
}
/* the_custom_logo() outputs <a class="custom-logo-link"><img class="custom-logo"></a> */
#wo-header-band-logo .custom-logo-link { display: flex; align-items: center; }
#wo-header-band-logo img,
#wo-header-band-logo .custom-logo {
  height: clamp(58px, 7vw, 90px) !important; 
  width: auto !important;
  max-width: 180px !important;
  filter: brightness(0) invert(1); opacity: 0.92;
}
/* Hide fallback text completely */
#wo-header-band-logo .wo-band-logo-fallback {
  display: none;
}
.wo-band-divider {
  width: 1px; height: clamp(40px, 6vw, 70px);
  background: rgba(243,242,239,0.18); flex-shrink: 0;
}
#wo-header-band-title {
  flex: 1;
  min-width: 0; /* prevents flex overflow */
}
/* Title — compact caps style, NOT a giant display heading */
#wo-header-band-title h1 {
  font-family: var(--caps);
  font-size: clamp(0.95rem, 1.8vw, 1.35rem);
  font-weight: 600;
  line-height: 1.25;
  color: #F3F2EF;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  white-space: normal;
  overflow: hidden;
}
#wo-header-band-title h1 i {
  font-style: normal;
  color: var(--orange);
}
#wo-header-band-title p {
  font-family: var(--caps); font-size: 0.65rem;
  font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(243,242,239,0.35);
  white-space: normal;
}
#wo-header-band::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; z-index: 3;
  background: linear-gradient(90deg, var(--orange) 0%, rgba(200,84,26,0.4) 50%, transparent 100%);
}

/* =====================================================
   FOOTER
===================================================== */
#wo-footer { background: var(--carbon); padding: clamp(3rem,6vw,5rem) clamp(1.5rem,5vw,4.5rem) 2rem; }
.wo-footer-grid {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 2.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 1.8rem;
}
.wo-footer-brand-logo .custom-logo-link { display: block; }
.wo-footer-brand-logo img,
.wo-footer-brand-logo .custom-logo { 
  height: 44px !important; width: auto !important; 
  filter: brightness(0) invert(1); opacity: 0.85; 
  margin-bottom: 1rem; 
  max-width: 160px !important;
}
.wo-footer-brand-name { font-family: var(--caps); font-size: 0.92rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #F3F2EF; margin-bottom: 0.2rem; }
.wo-footer-brand-sub { font-family: var(--caps); font-size: 0.55rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(243,242,239,0.32); margin-bottom: 1rem; }
.wo-footer-brand-desc { font-size: 0.8rem; font-weight: 300; line-height: 1.78; color: rgba(243,242,239,0.42); margin-bottom: 1.3rem; }
.wo-social { display: flex; gap: 0.5rem; }
.wo-social a { width: 34px; height: 34px; background: rgba(255,255,255,0.06); border-radius: 5px; display: flex; align-items: center; justify-content: center; transition: background 0.18s; }
.wo-social a:hover { background: var(--orange); }
.wo-social svg { width: 14px; height: 14px; color: rgba(243,242,239,0.6); }
.wo-footer-col h4 { font-family: var(--caps); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #F3F2EF; margin-bottom: 1.1rem; padding-bottom: 0.6rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.wo-footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.wo-footer-col ul li a { font-size: 0.8rem; font-weight: 300; color: rgba(243,242,239,0.42); transition: color 0.18s; display: flex; align-items: center; gap: 0.4rem; }
.wo-footer-col ul li a::before { content: ''; display: block; width: 4px; height: 4px; background: var(--orange); border-radius: 50%; flex-shrink: 0; opacity: 0; transition: opacity 0.18s; }
.wo-footer-col ul li a:hover { color: rgba(243,242,239,0.85); }
.wo-footer-col ul li a:hover::before { opacity: 1; }
.wo-footer-contact-item { display: flex; gap: 0.65rem; align-items: flex-start; margin-bottom: 0.8rem; }
.wo-footer-contact-item svg { width: 13px; height: 13px; color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.wo-footer-contact-item span { font-size: 0.8rem; font-weight: 300; color: rgba(243,242,239,0.42); line-height: 1.55; }
.wo-footer-bottom { max-width: 1300px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; font-family: var(--caps); font-size: 0.66rem; font-weight: 400; letter-spacing: 0.07em; color: rgba(243,242,239,0.2); }

/* =====================================================
   HOMEPAGE — HERO
===================================================== */
.wo-hero {
  position: relative;
  min-height: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem,6vw,5rem) clamp(3rem,6vw,5rem);
  overflow: hidden; background: var(--carbon);
}
/* Desktop: still allow a tall hero, but cap it so empty space doesn't appear
   when there's no background image filling the viewport */
@media (min-width: 901px) {
  .wo-hero { min-height: min(100svh, 720px); }
}
.wo-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center 30%;
  filter: brightness(0.38) saturate(0.65);
}
.wo-hero-vignette {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(17,18,21,0.92) 0%, rgba(17,18,21,0.5) 45%, rgba(17,18,21,0.15) 100%);
}
.wo-hero-content { position: relative; z-index: 2; max-width: 820px; }
.wo-hero-tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--caps); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1.4rem;
}
.wo-hero-tag::before { content: ''; display: block; width: 22px; height: 1.5px; background: var(--orange); flex-shrink: 0; }
.wo-hero h1 { font-family: var(--display); font-size: clamp(2.6rem,5.5vw,4.4rem); font-weight: 400; line-height: 1.1; color: #F3F2EF; letter-spacing: -0.01em; margin-bottom: 1.4rem; }
.wo-hero h1 i { font-style: italic; color: rgba(243,242,239,0.7); }
.wo-hero-sub { font-size: clamp(0.95rem,1.5vw,1.05rem); font-weight: 300; color: rgba(243,242,239,0.62); line-height: 1.8; max-width: 560px; margin-bottom: 2.2rem; }
.wo-hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }
.wo-hero-stats { position: relative; z-index: 2; display: flex; gap: 0; border-top: 1px solid rgba(243,242,239,0.1); margin-top: 3.5rem; padding-top: 2rem; flex-wrap: wrap; }
.wo-hero-stat { flex: 1; min-width: 130px; padding-right: 2rem; border-right: 1px solid rgba(243,242,239,0.09); }
.wo-hero-stat:last-child { border-right: none; }
.wo-hero-stat-n { font-family: var(--display); font-size: 2rem; font-weight: 400; color: #F3F2EF; line-height: 1; margin-bottom: 0.3rem; }
.wo-hero-stat-n sup { font-size: 1rem; color: var(--orange); }
.wo-hero-stat-l { font-family: var(--caps); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(243,242,239,0.38); }

/* ── ABOUT ─────────────────────────────────────────── */
.wo-about { display: grid; grid-template-columns: 1fr 1fr; }
.wo-about-photo { position: relative; overflow: hidden; background: #2a2e38; min-height: 500px; }
.wo-about-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.55) contrast(1.08); transition: transform 0.6s ease; }
.wo-about-photo:hover img { transform: scale(1.03); }
.wo-about-photo-cap { position: absolute; bottom: 1.6rem; left: 1.6rem; font-family: var(--caps); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.6); background: rgba(0,0,0,0.38); backdrop-filter: blur(4px); padding: 5px 10px; border-radius: 3px; }
.wo-about-body { padding: clamp(3rem,7vw,6rem) clamp(2rem,5vw,4.5rem); background: var(--white); display: flex; flex-direction: column; justify-content: center; }
.wo-about-body h2 { font-family: var(--display); font-size: clamp(1.8rem,2.8vw,2.5rem); font-weight: 400; line-height: 1.2; color: var(--ink); letter-spacing: -0.01em; margin-bottom: 1.2rem; }
.wo-about-body p { font-size: 0.94rem; font-weight: 300; color: var(--soft); line-height: 1.9; margin-bottom: 1rem; }
.wo-about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; margin-top: 1.2rem; }
.wo-pillar { padding: 0.9rem 1rem; background: var(--chalk); border-radius: 5px; border-left: 3px solid var(--orange); }
.wo-pillar strong { display: block; font-family: var(--caps); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.25rem; }
.wo-pillar span { font-size: 0.8rem; font-weight: 300; color: var(--mid); line-height: 1.55; }

/* ── PHOTO STRIP (operations images) ───────────────── */
.wo-photo-strip { background: var(--ink); padding: clamp(3rem,6vw,5rem) 0; }
.wo-photo-strip-head { padding: 0 clamp(1.5rem,5vw,4.5rem) 2.5rem; max-width: 1300px; margin: 0 auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; }
.wo-photo-strip-head h2 { font-family: var(--display); font-size: clamp(1.8rem,2.8vw,2.4rem); font-weight: 400; line-height: 1.2; color: #F3F2EF; letter-spacing: -0.01em; }
.wo-photo-strip-head p { font-size: 0.88rem; font-weight: 300; color: rgba(243,242,239,0.45); max-width: 380px; line-height: 1.75; }
.wo-photo-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3px; padding: 0 clamp(1.5rem,5vw,4.5rem); max-width: 1300px; margin: 0 auto; }
.wo-photo-item { position: relative; overflow: hidden; background: var(--carbon-mid); }
.wo-photo-item:first-child { grid-row: span 2; }
.wo-photo-item img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.6) brightness(0.85); transition: transform 0.5s ease, filter 0.3s ease; display: block; }
.wo-photo-item:hover img { transform: scale(1.04); filter: saturate(0.8) brightness(0.95); }
.wo-photo-item-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 2.5rem 1.2rem 1rem; background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%); font-family: var(--caps); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.7); opacity: 0; transition: opacity 0.3s; }
.wo-photo-item:hover .wo-photo-item-label { opacity: 1; }
/* Placeholder boxes shown when images not yet added */
.wo-photo-placeholder { width: 100%; height: 100%; min-height: 200px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem; background: var(--carbon-mid); border: 1px dashed rgba(200,84,26,0.3); }
.wo-photo-placeholder svg { width: 28px; height: 28px; color: rgba(200,84,26,0.4); }
.wo-photo-placeholder span { font-family: var(--caps); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(243,242,239,0.2); text-align: center; padding: 0 1rem; }

/* ── VIDEO SECTION ─────────────────────────────────── */
.wo-video-section { background: var(--chalk); padding: clamp(4rem,8vw,6.5rem) 0; }
.wo-video-inner { max-width: 1300px; margin: 0 auto; padding: 0 clamp(1.5rem,5vw,4.5rem); display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(3rem,5vw,5rem); align-items: center; }
.wo-video-left h2 { font-family: var(--display); font-size: clamp(1.8rem,2.8vw,2.4rem); font-weight: 400; line-height: 1.2; color: var(--ink); letter-spacing: -0.01em; margin-bottom: 1rem; }
.wo-video-left p { font-size: 0.9rem; font-weight: 300; color: var(--mid); line-height: 1.85; margin-bottom: 1.5rem; }
.wo-video-right { position: relative; }
.wo-video-wrap { position: relative; width: 100%; padding-top: 56.25%; /* 16:9 */ border-radius: 6px; overflow: hidden; background: var(--carbon); box-shadow: 0 20px 60px rgba(0,0,0,0.18); }
.wo-video-wrap video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* Play button overlay shown before play */
.wo-video-poster { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: opacity 0.3s; }
.wo-video-poster img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.55) saturate(0.5); }
.wo-video-play-btn { position: relative; z-index: 1; width: 72px; height: 72px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform 0.2s, background 0.2s; box-shadow: 0 0 0 12px rgba(200,84,26,0.18); }
.wo-video-play-btn:hover { transform: scale(1.08); background: var(--orange2); }
.wo-video-play-btn svg { width: 28px; height: 28px; color: #fff; margin-left: 4px; }
.wo-video-poster.hidden { opacity: 0; pointer-events: none; }

/* ── SERVICES GRID (homepage compact) ──────────────── */
.wo-services-section { background: var(--white); padding: clamp(4rem,8vw,6.5rem) 0; }
.wo-section-head { padding-bottom: 2.8rem; }
.wo-section-head h2 { font-family: var(--display); font-size: clamp(1.9rem,3.2vw,2.8rem); font-weight: 400; line-height: 1.2; color: var(--ink); letter-spacing: -0.01em; margin-bottom: 0.5rem; }
.wo-section-head p { font-size: 0.94rem; font-weight: 300; color: var(--mid); max-width: 560px; line-height: 1.75; }
.wo-svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.wo-svc-card { background: var(--white); padding: 2rem 1.8rem 1.8rem; position: relative; overflow: hidden; transition: background 0.22s; }
.wo-svc-card:hover { background: #FDFCFB; }
.wo-svc-card::after { content: ''; position: absolute; bottom: 0; left: 1.8rem; right: 1.8rem; height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 0.32s ease; border-radius: 1px; }
.wo-svc-card:hover::after { transform: scaleX(1); }
.wo-svc-icon { width: 42px; height: 42px; background: var(--orange-bg); border-radius: 7px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.wo-svc-icon svg { width: 20px; height: 20px; color: var(--orange); }
.wo-svc-card h3 { font-family: var(--caps); font-size: 0.88rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.5rem; }
.wo-svc-card p { font-size: 0.83rem; font-weight: 300; color: var(--mid); line-height: 1.75; }
.wo-svc-footer { text-align: center; margin-top: 2.2rem; }
/* 7th card (Training & Qualification) spans full width on its own row */
.wo-svc-card-wide { grid-column: 1 / -1; }

/* ── WHY BAND (dark) ───────────────────────────────── */
.wo-why { background: var(--carbon); padding: clamp(4rem,8vw,6.5rem) clamp(1.5rem,5vw,4.5rem); position: relative; overflow: hidden; }
.wo-why-mark { position: absolute; right: -40px; top: 50%; transform: translateY(-50%); width: 360px; height: 360px; opacity: 0.04; pointer-events: none; }
.wo-why-inner { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(3rem,6vw,6rem); align-items: start; }
.wo-why .wo-eyebrow { color: var(--orange); }
.wo-why .wo-eyebrow::before { background: var(--orange); }
.wo-why-left h2 { font-family: var(--display); font-size: clamp(1.9rem,3vw,2.7rem); font-weight: 400; line-height: 1.2; color: #F3F2EF; letter-spacing: -0.01em; margin-bottom: 1rem; }
.wo-why-left p { font-size: 0.9rem; font-weight: 300; color: rgba(243,242,239,0.5); line-height: 1.85; margin-bottom: 1.8rem; }
.wo-why-left a { display: inline-flex; align-items: center; gap: 0.4rem; font-family: var(--caps); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange); border-bottom: 1px solid rgba(200,84,26,0.35); padding-bottom: 2px; transition: border-color 0.18s; }
.wo-why-left a:hover { border-color: var(--orange); }
.wo-why-points { display: flex; flex-direction: column; }
.wo-why-item { display: grid; grid-template-columns: 28px 1fr; gap: 0.9rem; align-items: start; padding: 1.1rem 0; border-top: 1px solid rgba(255,255,255,0.06); }
.wo-why-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.06); }
.wo-check { width: 24px; height: 24px; background: rgba(200,84,26,0.12); border: 1px solid rgba(200,84,26,0.28); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.wo-check svg { width: 10px; height: 10px; color: var(--orange); }
.wo-why-item-text strong { display: block; font-family: var(--caps); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; color: #F3F2EF; margin-bottom: 0.2rem; }
.wo-why-item-text span { font-size: 0.82rem; font-weight: 300; color: rgba(243,242,239,0.45); line-height: 1.65; }

/* ── TRADING ───────────────────────────────────────── */
.wo-trading { background: var(--chalk); padding: clamp(4rem,8vw,6.5rem) clamp(1.5rem,5vw,4.5rem); }
.wo-trading-inner { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.8fr; gap: clamp(3rem,5vw,5rem); align-items: center; }
.wo-trading-left h2 { font-family: var(--display); font-size: clamp(1.8rem,2.8vw,2.4rem); font-weight: 400; line-height: 1.2; color: var(--ink); letter-spacing: -0.01em; margin-bottom: 1rem; }
.wo-trading-left p { font-size: 0.9rem; font-weight: 300; color: var(--mid); line-height: 1.85; margin-bottom: 1.5rem; }
.wo-trading-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.wo-trade-card { background: var(--white); border: 1px solid var(--rule); border-radius: 6px; padding: 1.5rem 1.4rem; transition: border-color 0.22s, box-shadow 0.22s; position: relative; overflow: hidden; }
.wo-trade-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; }
.wo-trade-card:hover { border-color: #d4c8c0; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.wo-trade-card:hover::before { transform: scaleX(1); }
.wo-trade-card h4 { font-family: var(--caps); font-size: 0.84rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.5rem; }
.wo-trade-card p { font-size: 0.8rem; font-weight: 300; color: var(--mid); line-height: 1.7; }
.wo-trade-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.9rem; }
.wo-tag { font-family: var(--caps); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); border: 1px solid rgba(200,84,26,0.28); background: rgba(200,84,26,0.06); padding: 3px 8px; border-radius: 3px; }

/* ── CTA BAND ──────────────────────────────────────── */
.wo-cta-band { background: var(--orange); padding: clamp(3.5rem,7vw,5.5rem) clamp(1.5rem,5vw,4rem); text-align: center; }
.wo-cta-band h2 { font-family: var(--display); font-size: clamp(1.7rem,3vw,2.5rem); font-weight: 400; color: #fff; letter-spacing: -0.01em; margin-bottom: 0.75rem; }
.wo-cta-band p { font-size: 0.94rem; font-weight: 300; color: rgba(255,255,255,0.75); margin-bottom: 2rem; }

/* =====================================================
   SERVICES PAGE
===================================================== */
.wo-pg-hero { position: relative; background: var(--carbon); overflow: hidden; }
.wo-pg-hero-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center 35%; filter: brightness(0.3) saturate(0.6); }
.wo-pg-hero-vignette { position: absolute; inset: 0; z-index: 1; background: linear-gradient(160deg, rgba(17,18,21,0.88) 0%, rgba(17,18,21,0.55) 60%, rgba(17,18,21,0.82) 100%); }
.wo-pg-hero-inner { position: relative; z-index: 2; max-width: 1300px; margin: 0 auto; padding: clamp(3.5rem,7vw,6rem) clamp(1.5rem,5vw,4.5rem); display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; }
.wo-pg-hero-left h1 { font-family: var(--display); font-size: clamp(2.4rem,5vw,4rem); font-weight: 400; line-height: 1.1; color: #F3F2EF; letter-spacing: -0.01em; }
.wo-pg-hero-left h1 i { font-style: italic; color: rgba(243,242,239,0.65); }
.wo-pg-hero-right p { font-size: 1rem; font-weight: 300; color: rgba(243,242,239,0.55); line-height: 1.85; border-left: 2px solid rgba(200,84,26,0.4); padding-left: 1.4rem; }
.wo-pg-tabs { position: relative; z-index: 2; background: rgba(17,18,21,0.92); backdrop-filter: blur(8px); border-top: 1px solid rgba(255,255,255,0.07); }
.wo-pg-tabs-inner { max-width: 1300px; margin: 0 auto; padding: 0 clamp(1.5rem,5vw,4.5rem); display: flex; overflow-x: auto; scrollbar-width: none; }
.wo-pg-tabs-inner::-webkit-scrollbar { display: none; }
.wo-pg-tab { font-family: var(--caps); font-size: 0.76rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(243,242,239,0.4); padding: 1rem 1.4rem; border-bottom: 2px solid transparent; white-space: nowrap; flex-shrink: 0; transition: color 0.18s, border-color 0.18s; }
.wo-pg-tab:hover { color: rgba(243,242,239,0.75); }
.wo-pg-tab.active { color: var(--orange); border-bottom-color: var(--orange); }

/* Services full-detail cards */
.wo-cs-section { background: var(--white); padding: clamp(4rem,8vw,6.5rem) 0; }
.wo-cs-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.wo-cs-card { background: var(--white); padding: 2.8rem 2.6rem; position: relative; overflow: hidden; transition: background 0.22s; }
.wo-cs-card:hover { background: #FEFDFB; }
.wo-cs-card::before { content: ''; position: absolute; top: 2.8rem; left: 0; bottom: 2.8rem; width: 3px; background: var(--orange); transform: scaleY(0); transform-origin: bottom; transition: transform 0.35s ease; border-radius: 0 2px 2px 0; }
.wo-cs-card:hover::before { transform: scaleY(1); }
.wo-cs-card-head { display: flex; align-items: flex-start; gap: 1.2rem; margin-bottom: 1.4rem; }
.wo-cs-icon { width: 48px; height: 48px; flex-shrink: 0; background: var(--orange-bg); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-top: 3px; }
.wo-cs-icon svg { width: 22px; height: 22px; color: var(--orange); }
.wo-cs-card-num { font-family: var(--caps); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); opacity: 0.7; margin-bottom: 0.3rem; }
.wo-cs-card h3 { font-family: var(--display); font-size: clamp(1.2rem,1.8vw,1.55rem); font-weight: 400; line-height: 1.2; color: var(--ink); }
.wo-cs-card p { font-size: 0.9rem; font-weight: 300; color: var(--soft); line-height: 1.9; }
/* Training & Qualification card spans full width */
.wo-cs-card-wide { grid-column: 1 / -1; }

/* Trading dark section */
.wo-tr-section { background: var(--carbon); padding: clamp(4rem,8vw,6.5rem) 0; position: relative; overflow: hidden; }
.wo-tr-bg-mark { position: absolute; right: -60px; top: 50%; transform: translateY(-50%); width: 420px; height: 420px; opacity: 0.04; pointer-events: none; }
.wo-tr-section .wo-section-head h2 { color: #F3F2EF; }
.wo-tr-section .wo-section-head p { color: rgba(243,242,239,0.45); }
.wo-tr-section .wo-eyebrow { color: var(--orange); }
.wo-tr-section .wo-eyebrow::before { background: var(--orange); }
.wo-tr-wide-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 6px; padding: 2.4rem 2.6rem; margin-bottom: 1rem; display: grid; grid-template-columns: 280px 1fr; gap: 3rem; align-items: start; position: relative; overflow: hidden; transition: background 0.22s, border-color 0.22s; }
.wo-tr-wide-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(200,84,26,0.3); }
.wo-tr-wide-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--orange), transparent); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.wo-tr-wide-card:hover::before { transform: scaleX(1); }
.wo-tr-card-label { font-family: var(--caps); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); opacity: 0.7; margin-bottom: 0.5rem; }
.wo-tr-card-left h3 { font-family: var(--display); font-size: clamp(1.2rem,1.6vw,1.45rem); font-weight: 400; color: #F3F2EF; line-height: 1.2; margin-bottom: 1rem; }
.wo-tr-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.wo-tr-tag { font-family: var(--caps); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); border: 1px solid rgba(200,84,26,0.28); background: rgba(200,84,26,0.08); padding: 3px 8px; border-radius: 3px; }
.wo-tr-card-right p { font-size: 0.88rem; font-weight: 300; color: rgba(243,242,239,0.5); line-height: 1.9; }
.wo-tr-chem-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 6px; padding: 2.8rem 2.6rem; margin-top: 1rem; position: relative; overflow: hidden; transition: background 0.22s; }
.wo-tr-chem-card:hover { background: rgba(255,255,255,0.06); }
.wo-tr-chem-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--orange) 0%, rgba(200,84,26,0.35) 60%, transparent 100%); }
.wo-tr-chem-top { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 2.4rem; }
.wo-tr-chem-top h3 { font-family: var(--display); font-size: clamp(1.2rem,1.6vw,1.45rem); font-weight: 400; color: #F3F2EF; line-height: 1.2; margin-bottom: 0.8rem; }
.wo-tr-chem-top p { font-size: 0.88rem; font-weight: 300; color: rgba(243,242,239,0.5); line-height: 1.9; }
.wo-tr-chem-cats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
/* Modifier classes — used instead of inline styles so responsive rules below apply */
.wo-tr-chem-cats-2 { grid-template-columns: repeat(2,1fr); }
.wo-tr-chem-cats-3 { grid-template-columns: repeat(3,1fr); }
.wo-tr-chem-cat { background: rgba(0,0,0,0.18); border: 1px solid rgba(255,255,255,0.05); border-radius: 5px; padding: 1.2rem 1.3rem; }
.wo-tr-chem-cat h4 { font-family: var(--caps); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.7rem; padding-bottom: 0.55rem; border-bottom: 1px solid rgba(200,84,26,0.2); }
.wo-tr-chem-cat-tags { display: flex; flex-wrap: wrap; gap: 0.3rem; }
.wo-tr-chem-cat-tag { font-family: var(--caps); font-size: 0.6rem; font-weight: 500; letter-spacing: 0.07em; color: rgba(243,242,239,0.45); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); padding: 3px 7px; border-radius: 3px; }

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1000px) {
  .wo-about { grid-template-columns: 1fr; }
  .wo-about-photo { min-height: 280px; }
  .wo-svc-grid { grid-template-columns: 1fr 1fr; }
  .wo-why-inner { grid-template-columns: 1fr; }
  .wo-trading-inner { grid-template-columns: 1fr; }
  .wo-trading-cards { grid-template-columns: 1fr 1fr; }
  .wo-video-inner { grid-template-columns: 1fr; }
  .wo-photo-grid { grid-template-columns: 1fr 1fr; }
  .wo-photo-item:first-child { grid-row: span 1; }
  .wo-pg-hero-inner { grid-template-columns: 1fr; }
  .wo-pg-hero-right { display: none; }
  .wo-cs-grid { grid-template-columns: 1fr; }
  .wo-tr-wide-card { grid-template-columns: 1fr; gap: 1.4rem; }
  .wo-tr-chem-top { grid-template-columns: 1fr; }
  .wo-tr-chem-cats,
  .wo-tr-chem-cats-2,
  .wo-tr-chem-cats-3 { grid-template-columns: 1fr 1fr; }
  .wo-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  :root { --band-h: 120px; }
  #wo-nav-menu { display: none; }
  .wo-hamburger { display: flex; }
  .wo-hero-actions { flex-direction: column; align-items: flex-start; }
  .wo-hero-stat { flex: 1 0 40%; border-right: none; border-bottom: 1px solid rgba(243,242,239,0.08); padding-bottom: 1rem; }
  .wo-svc-grid { grid-template-columns: 1fr; }
  .wo-about-pillars { grid-template-columns: 1fr; }
  .wo-trading-cards { grid-template-columns: 1fr; }
  .wo-photo-grid { grid-template-columns: 1fr; }
  .wo-tr-chem-cats,
  .wo-tr-chem-cats-2,
  .wo-tr-chem-cats-3 { grid-template-columns: 1fr; }
  .wo-btn-woutline { margin-left: 0; margin-top: 0.7rem; }
  .wo-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .wo-band-divider { display: none; }
  #wo-header-band-title p { display: none; }
}
@media (max-width: 480px) {
  :root { --band-h: 100px; }
  #wo-header-band-title h1 { font-size: 1.1rem; }
}

/* =====================================================
   CONTACT PAGE
===================================================== */
.wo-contact-section {
  background: var(--white);
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}
.wo-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: start;
}

/* ── Contact heading ── */
.wo-contact-heading {
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 400; line-height: 1.2;
  color: var(--ink); letter-spacing: -0.01em;
  margin-bottom: 1.8rem;
}

/* ── Detail cards ── */
.wo-contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.8rem;
}
.wo-contact-card {
  display: flex; align-items: flex-start; gap: 0.9rem;
  padding: 1.2rem 1.2rem;
  background: var(--chalk);
  border-radius: 6px;
  border: 1px solid var(--rule);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.wo-contact-card:hover {
  border-color: rgba(200, 84, 26, 0.3);
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.wo-contact-card-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(200, 84, 26, 0.08);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.wo-contact-card-icon svg { width: 16px; height: 16px; color: var(--orange); }
.wo-contact-card-body { min-width: 0; }
.wo-contact-card-body strong {
  display: block; font-family: var(--caps);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 0.3rem;
}
.wo-contact-card-body span {
  font-size: 0.82rem; font-weight: 400;
  color: var(--ink); line-height: 1.55;
}
.wo-contact-card-body a {
  color: var(--orange); transition: opacity 0.18s;
}
.wo-contact-card-body a:hover { opacity: 0.75; }

/* ── WhatsApp button ── */
.wo-whatsapp-btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--caps); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: #fff; background: #25D366;
  padding: 12px 22px; border-radius: 5px;
  margin-bottom: 1.8rem;
  transition: background 0.18s, transform 0.15s;
}
.wo-whatsapp-btn:hover { background: #1ebe5d; transform: translateY(-1px); }
.wo-whatsapp-btn svg:first-child { width: 20px; height: 20px; flex-shrink: 0; }

/* ── Map ── */
.wo-map-wrap {
  width: 100%; height: 280px;
  border-radius: 6px; overflow: hidden;
  border: 1px solid var(--rule);
}
.wo-map-wrap iframe { display: block; }

/* ── Contact form wrapper ── */
.wo-contact-form-wrap {
  background: var(--chalk);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: clamp(1.8rem, 4vw, 2.8rem);
}
.wo-contact-form-head {
  margin-bottom: 2rem;
}
.wo-contact-form-head h3 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 400; line-height: 1.2;
  color: var(--ink); letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}
.wo-contact-form-head p {
  font-size: 0.85rem; font-weight: 300;
  color: var(--mid); line-height: 1.6;
}

/* ── Form fields ── */
.wo-form { display: flex; flex-direction: column; gap: 1.1rem; }
.wo-form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.wo-form-group {
  display: flex; flex-direction: column; gap: 0.4rem;
}
.wo-form-group label {
  font-family: var(--caps); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink);
}
.wo-form-group label span { color: var(--orange); }
.wo-form-group input,
.wo-form-group select,
.wo-form-group textarea {
  font-family: var(--body); font-size: 0.9rem; font-weight: 300;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--rule);
  border-radius: 5px;
  padding: 10px 14px;
  width: 100%;
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
  -webkit-appearance: none;
}
.wo-form-group input::placeholder,
.wo-form-group textarea::placeholder { color: #B0ADA7; }
.wo-form-group input:focus,
.wo-form-group select:focus,
.wo-form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(200, 84, 26, 0.1);
}
.wo-form-group textarea { resize: vertical; min-height: 120px; }
.wo-form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4L6 8L10 4' stroke='%237A7870' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

/* ── Radio group ── */
.wo-form-radio-group {
  display: flex; gap: 1rem; flex-wrap: wrap;
}
.wo-radio-label {
  display: flex; align-items: center; gap: 0.45rem;
  font-family: var(--body) !important;
  font-size: 0.85rem !important; font-weight: 400 !important;
  letter-spacing: 0 !important; text-transform: none !important;
  color: var(--ink); cursor: pointer;
}
.wo-radio-label input[type="radio"] {
  width: 16px; height: 16px; flex-shrink: 0;
  accent-color: var(--orange);
  cursor: pointer;
}

/* ── Submit button ── */
.wo-form-submit {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--caps); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: #fff; background: var(--orange);
  border: none; border-radius: 5px;
  padding: 14px 28px; cursor: pointer;
  width: 100%; justify-content: center;
  transition: background 0.18s, transform 0.15s;
  margin-top: 0.4rem;
}
.wo-form-submit:hover { background: var(--orange2); transform: translateY(-1px); }
.wo-form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ── Success / Error ── */
.wo-form-success,
.wo-form-error {
  display: none; align-items: center; gap: 0.6rem;
  padding: 1rem 1.2rem; border-radius: 5px;
  font-size: 0.88rem; font-weight: 400; line-height: 1.5;
}
.wo-form-success {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #166534;
}
.wo-form-success svg { color: #16a34a; flex-shrink: 0; }
.wo-form-error {
  background: rgba(200, 84, 26, 0.07);
  border: 1px solid rgba(200, 84, 26, 0.2);
  color: var(--orange2);
}
.wo-form-error a { color: var(--orange); text-decoration: underline; }
.wo-form-success.show,
.wo-form-error.show { display: flex; }

/* ── WhatsApp alt link below form ── */
.wo-form-whatsapp-alt {
  display: flex; align-items: center; gap: 0.6rem;
  margin-top: 1.2rem; padding-top: 1.2rem;
  border-top: 1px solid var(--rule);
  font-size: 0.82rem; color: var(--mid); flex-wrap: wrap;
}
.wo-form-whatsapp-alt a {
  color: #25D366; font-weight: 500;
  transition: opacity 0.18s;
}
.wo-form-whatsapp-alt a:hover { opacity: 0.75; }

/* ── Responsive ── */
@media (max-width: 1000px) {
  .wo-contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .wo-contact-cards { grid-template-columns: 1fr; }
  .wo-form-row { grid-template-columns: 1fr; }
}

