/* ============================================================
   OMEGAPIX DESIGN SYSTEM — omegapix-theme.css
   Include this on EVERY page as the base theme.
   
   HOW TO USE ON OTHER PAGES:
   <link rel="stylesheet" href="/assets/css/omegapix-theme.css">
   Then add your page-specific CSS after it.
   
   COLOR PALETTE (from portal-main.webp):
   --ox-cream:    #f6e8dc  (lightest bg, left hero)
   --ox-sand:     #edc08a  (service cards bg)
   --ox-tan:      #e9d0a8  (mid gradient)
   --ox-brown:    #8a5428  (dark hero right)
   --ox-espresso: #2a1408  (darkest, footer/promo)
   --ox-coral:    #c71d21  (primary CTA)
   --ox-gold:     #d4a855  (accent, portal ring)
   --ox-gold-lt:  #f2c98b  (light gold text on dark)
   ============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&family=Dancing+Script:wght@500;600;700&display=swap');

/* ── CSS DESIGN TOKENS ── */
:root {
  /* Brand Colors */
  --ox-cream:      #f6e8dc;
  --ox-cream2:     #f0e0cc;
  --ox-sand:       #edc08a;
  --ox-sand2:      #e8b878;
  --ox-tan:        #d4a870;
  --ox-brown:      #8a5428;
  --ox-brown2:     #6b3a18;
  --ox-espresso:   #2a1408;
  --ox-espresso2:  #1a0c04;
  --ox-coral:      #c71d21;
  --ox-coral-dk:   #a01518;
  --ox-coral-lt:   #fdf0f0;
  --ox-gold:       #d4a855;
  --ox-gold2:      #c9954a;
  --ox-gold-lt:    #f2c98b;
  --ox-gold-glow:  rgba(212,168,85,0.5);

  /* Hero gradient — exact from reference */
  --ox-hero-gradient: linear-gradient(
    to right,
    #f6e8dc 0%,
    #f4e4d6 15%,
    #f2deca 28%,
    #c8986a 48%,
    #8a5428 65%,
    #6b3a18 80%,
    #2a1408 100%
  );

  /* Typography */
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-script:   'Dancing Script', cursive;
  --font-body:     'DM Sans', system-ui, sans-serif;

  /* Spacing scale */
  --sp-xs:  8px;
  --sp-sm:  16px;
  --sp-md:  24px;
  --sp-lg:  40px;
  --sp-xl:  64px;
  --sp-2xl: 96px;

  /* Border radius */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 4px 16px rgba(42,20,8,.08);
  --shadow-md:  0 10px 32px rgba(42,20,8,.13);
  --shadow-lg:  0 20px 52px rgba(42,20,8,.18);
  --shadow-coral: 0 6px 24px rgba(199,29,33,.3);
  --shadow-gold:  0 0 40px rgba(212,168,85,.45), 0 0 80px rgba(212,168,85,.18);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.25s var(--ease);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--ox-cream);
  color: var(--ox-espresso);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }
em { color: var(--ox-coral); font-style: italic; }

/* ── PAGE WRAPPER ── */
/* Wrap page content in .ox-page for consistent max-width */
.ox-page {
  max-width: 1800px;
  margin: 0 auto;
}

/* ── CONTAINER ── */
.ox-container {
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 52px;
}
@media (max-width: 900px) { .ox-container { padding: 0 24px; } }
@media (max-width: 600px) { .ox-container { padding: 0 16px; } }

/* ============================================================
   NAVIGATION — shared across all pages
   ============================================================ */
.ox-nav {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(246,232,220,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,168,85,0.18);
  box-shadow: 0 1px 0 rgba(42,20,8,0.05);
}
.ox-nav-inner {
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 52px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
/* Logo */
.ox-nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.ox-nav-logo img {
  height: 200px;
  width: auto;
  /* Tints the OmegaPix logo to warm coral-red on cream bg */
  mix-blend-mode: multiply;
  filter: brightness(1.1) sepia(1) saturate(2.5) hue-rotate(318deg);
  transition: opacity var(--transition);
}
.ox-nav-logo:hover img { opacity: .8; }

/* Nav links */
.ox-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.ox-nav-links a {
  padding: 8px 15px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6a5040;
  border-radius: var(--r-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.ox-nav-links a:hover,
.ox-nav-links a.active {
  color: var(--ox-coral);
  background: rgba(199,29,33,.06);
}

/* Language pills */
.ox-lang-switcher { display: flex; gap: 5px; flex-shrink: 0; }
.ox-lang-switcher a {
  padding: 7px 14px;
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 700;
  background: rgba(255,255,255,.5);
  border: 1.5px solid rgba(212,168,85,.28);
  color: #6a5040;
  transition: all var(--transition);
}
.ox-lang-switcher a:hover,
.ox-lang-switcher a.active {
  background: var(--ox-coral);
  border-color: var(--ox-coral);
  color: #fff;
}

/* Hamburger button (mobile) */
.ox-ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.ox-ham span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ox-espresso);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile menu overlay */
.ox-mob-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ox-cream);
  z-index: 499;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.ox-mob-menu.open { display: flex; }
.ox-mob-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; font-size: 26px;
  color: var(--ox-espresso);
}
.ox-mob-menu a {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 600;
  color: var(--ox-espresso); padding: 10px 0;
}
.ox-mob-menu a:hover { color: var(--ox-coral); }
.ox-mob-langs { display: flex; gap: 8px; margin-top: 24px; flex-wrap: wrap; justify-content: center; }
.ox-mob-langs a {
  padding: 8px 16px; border-radius: var(--r-full);
  font-size: 12px; font-weight: 700;
  border: 1.5px solid rgba(212,168,85,.3);
  color: #6a5040; transition: all var(--transition);
}
.ox-mob-langs a.active, .ox-mob-langs a:hover {
  background: var(--ox-coral);
  border-color: var(--ox-coral); color: #fff;
}

/* ============================================================
   BUTTONS — reusable across all pages
   Usage: <a class="ox-btn ox-btn-coral">Text</a>
   ============================================================ */
.ox-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.ox-btn:hover { transform: translateY(-2px); }

/* Coral (primary CTA) */
.ox-btn-coral {
  background: var(--ox-coral);
  color: #fff;
  border-color: var(--ox-coral);
  box-shadow: var(--shadow-coral);
}
.ox-btn-coral:hover { background: var(--ox-coral-dk); border-color: var(--ox-coral-dk); box-shadow: 0 8px 32px rgba(199,29,33,.4); }

/* Outline on light bg */
.ox-btn-outline {
  background: rgba(255,255,255,.55);
  color: var(--ox-espresso);
  border-color: rgba(212,168,85,.4);
  backdrop-filter: blur(8px);
}
.ox-btn-outline:hover { border-color: var(--ox-coral); color: var(--ox-coral); }

/* Gold (portal / school) */
.ox-btn-gold {
  background: var(--ox-gold);
  color: #fff;
  border-color: var(--ox-gold);
}
.ox-btn-gold:hover { background: transparent; color: var(--ox-gold); }

/* Ghost gold (on dark bg) */
.ox-btn-ghost-gold {
  background: rgba(212,168,85,.15);
  color: var(--ox-gold-lt);
  border-color: rgba(212,168,85,.5);
}
.ox-btn-ghost-gold:hover { background: rgba(212,168,85,.28); border-color: var(--ox-gold); color: #fff; }

/* Ghost white (on dark bg) */
.ox-btn-ghost-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.ox-btn-ghost-white:hover { border-color: rgba(255,255,255,.85); }

/* Pill variant */
.ox-btn-pill { border-radius: var(--r-full); padding: 11px 26px; }

/* ============================================================
   SECTION HEADERS — reusable heading block
   Usage:
   <div class="ox-section-hd">
     <span class="ox-eyebrow">Label</span>
     <h2>Title <em>Italic Part</em></h2>
     <p>Subtitle text</p>
   </div>
   ============================================================ */
.ox-section-hd {
  text-align: center;
  margin-bottom: 52px;
}
.ox-section-hd.left { text-align: left; }

.ox-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ox-coral);
  margin-bottom: 12px;
}
.ox-section-hd h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  color: var(--ox-espresso);
  line-height: 1.1;
  margin-bottom: 16px;
}
.ox-section-hd h2 em { color: var(--ox-coral); font-style: italic; }
.ox-section-hd.gold h2 em { color: var(--ox-gold); }
.ox-section-hd p {
  font-size: 16px;
  color: #6a5040;
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
}
.ox-section-hd.left p { margin: 0; }

/* Divider rule */
.ox-rule {
  width: 52px; height: 3px;
  background: linear-gradient(to right, var(--ox-coral), var(--ox-gold));
  border-radius: 2px;
  margin: 20px 0;
}
.ox-section-hd .ox-rule { margin: 20px auto; }
.ox-section-hd.left .ox-rule { margin: 20px 0; }

/* ============================================================
   CARDS — reusable card variants
   ============================================================ */

/* Service card (tan/gold bg) */
.ox-card {
  background: var(--ox-sand);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.ox-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }

/* Glass card (cream bg with border) */
.ox-card-glass {
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(212,168,85,.18);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}
.ox-card-glass:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(199,29,33,.25); }

/* Dark card (espresso bg) */
.ox-card-dark {
  background: var(--ox-espresso);
  border-radius: var(--r-lg);
  color: #fff;
  overflow: hidden;
}

/* Card image area */
.ox-card-img {
  position: relative;
  overflow: hidden;
}
.ox-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ox-card-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(42,20,8,.3));
  pointer-events: none;
}

/* Badge inside card image */
.ox-badge {
  position: absolute; bottom: 10px; left: 10px; z-index: 1;
  background: rgba(199,29,33,.9);
  color: #fff;
  padding: 4px 11px;
  border-radius: var(--r-full);
  font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}

/* Card body */
.ox-card-body { padding: 20px 22px 26px; flex: 1; }
.ox-card-body h3 {
  font-size: 13px; font-weight: 700;
  color: var(--ox-espresso);
  margin-bottom: 12px;
  letter-spacing: .4px; text-transform: uppercase; line-height: 1.35;
}
.ox-card-body p { font-size: 13.5px; color: #5a4030; line-height: 1.75; }

/* Bullet list in card */
.ox-bullet-list { list-style: none; margin: 0 0 16px; padding: 0; }
.ox-bullet-list li {
  font-size: 12px; color: #5a4030;
  line-height: 1.5; padding: 5px 0;
  border-bottom: 1px solid rgba(90,50,20,.1);
  display: flex; align-items: flex-start; gap: 7px;
}
.ox-bullet-list li:last-child { border-bottom: none; }
.ox-bullet-list li::before {
  content: "→";
  color: var(--ox-coral);
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Card link */
.ox-card-link {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--ox-coral);
  font-size: 11px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase;
  transition: gap var(--transition);
}
.ox-card:hover .ox-card-link,
.ox-card-glass:hover .ox-card-link { gap: 10px; }

/* ============================================================
   PAGE SECTIONS — backgrounds for alternating sections
   Add these classes to <section> elements
   ============================================================ */

/* Light cream (default page bg) */
.ox-section { padding: var(--sp-2xl) 0; background: var(--ox-cream); }

/* Slightly warmer sand */
.ox-section-sand { padding: var(--sp-2xl) 0; background: var(--ox-cream2); }

/* White-ish glass */
.ox-section-white { padding: var(--sp-2xl) 0; background: rgba(255,255,255,.7); }

/* Dark espresso (promo, footer) */
.ox-section-dark { padding: var(--sp-2xl) 0; background: var(--ox-espresso); color: #fff; }

/* ============================================================
   PAGE HERO BANNER — for inner pages (not home)
   Usage:
   <div class="ox-page-hero">
     <div class="ox-container">
       <span class="ox-eyebrow">Section</span>
       <h1>Page Title</h1>
       <p>Subtitle</p>
     </div>
   </div>
   ============================================================ */
.ox-page-hero-wrap {
  padding: 24px 0;
  background: #f0e4d4; /* page bg visible around tile */
}
.ox-page-hero {
  background: var(--ox-hero-gradient);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
  /* Rounded tile — matches home hero style */
  width: 88%;
  max-width: 1600px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(42,20,8,.16), 0 2px 8px rgba(42,20,8,.08);
}
.ox-page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 40% 50%, rgba(212,168,85,.12) 0%, transparent 70%);
  pointer-events: none;
}
.ox-page-hero .ox-container { position: relative; z-index: 1; }
.ox-page-hero .ox-eyebrow { color: var(--ox-gold-lt); }
.ox-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 700;
  color: #fff;
  line-height: 1.0;
  letter-spacing: -1px;
  margin: 10px 0;
}
.ox-page-hero h1 em { color: var(--ox-gold-lt); font-style: italic; }
.ox-page-hero h1 span { color: var(--ox-coral); }
.ox-page-hero p {
  font-size: 18px; color: rgba(255,255,255,.8);
  line-height: 1.75; max-width: 560px; margin-top: 16px;
}

/* Breadcrumb on inner pages */
.ox-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  margin-bottom: 24px;
}
.ox-breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.ox-breadcrumb a:hover { color: var(--ox-gold-lt); }
.ox-breadcrumb span { color: rgba(255,255,255,.3); }

/* ============================================================
   FOOTER — shared across all pages
   ============================================================ */
.ox-footer {
  background: var(--ox-espresso);
  padding: 72px 0 28px;
}
.ox-footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.ox-footer-logo img {
  height: 44px; width: auto; margin-bottom: 8px;
  filter: brightness(10) sepia(.3) hue-rotate(340deg) saturate(.6) opacity(.65);
}
.ox-footer-tagline {
  font-family: var(--font-script);
  font-size: 13px; color: rgba(212,168,85,.45);
  letter-spacing: .5px; margin-bottom: 16px;
}
.ox-footer-brand p { font-size: 13px; color: rgba(255,255,255,.3); line-height: 1.8; max-width: 220px; }

.ox-footer-col h4 {
  font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(212,168,85,.5);
  margin-bottom: 18px;
}
.ox-footer-col a {
  display: block; font-size: 13px;
  color: rgba(255,255,255,.25);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.ox-footer-col a:hover { color: var(--ox-coral); }
.ox-footer-phone { color: var(--ox-coral) !important; font-weight: 600 !important; }

.ox-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: rgba(255,255,255,.2);
  flex-wrap: wrap; gap: 10px;
}
.ox-footer-bottom button {
  background: none; border: none;
  font-size: 11px; color: rgba(255,255,255,.2);
  transition: color var(--transition);
}
.ox-footer-bottom button:hover { color: var(--ox-coral); }

/* ============================================================
   STATS ROW — reusable stats strip
   ============================================================ */
.ox-stats-row {
  background: linear-gradient(to right, var(--ox-cream2), var(--ox-cream));
  border-top: 1px solid rgba(212,168,85,.15);
  border-bottom: 1px solid rgba(212,168,85,.15);
  padding: 20px 0;
}
.ox-stats-inner {
  max-width: 1700px; margin: 0 auto; padding: 0 52px;
  display: flex; align-items: center; gap: 0; flex-wrap: wrap;
}
.ox-stat {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 28px;
  border-right: 1px solid rgba(212,168,85,.2);
  flex: 1; min-width: 130px;
}
.ox-stat:last-child { border-right: none; }
.ox-stat-icon { font-size: 24px; opacity: .7; flex-shrink: 0; }
.ox-stat-n {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 700;
  color: var(--ox-coral); line-height: 1;
  display: block;
}
.ox-stat-l {
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: #8a7060; display: block; margin-top: 2px;
}

/* ============================================================
   TRUST BAR — payment methods / trust signals
   ============================================================ */
.ox-trust-bar {
  background: rgba(255,255,255,.5);
  border-top: 1px solid rgba(212,168,85,.12);
  padding: 16px 0;
}
.ox-trust-inner {
  max-width: 1700px; margin: 0 auto; padding: 0 52px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.ox-trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 11.5px; font-weight: 600; color: #7a6050;
}
.ox-pay-chips { display: flex; gap: 7px; }
.ox-pay-chip {
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(212,168,85,.2);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11px; font-weight: 700; color: #7a6050;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.ox-text-coral   { color: var(--ox-coral); }
.ox-text-gold    { color: var(--ox-gold); }
.ox-text-cream   { color: var(--ox-cream); }
.ox-text-script  { font-family: var(--font-script); }
.ox-text-display { font-family: var(--font-display); }
.ox-text-center  { text-align: center; }
.ox-text-white   { color: #fff; }
.ox-text-muted   { color: #7a6050; }

.ox-grid-5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; }
.ox-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.ox-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.ox-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }

/* ============================================================
   RESPONSIVE BREAKPOINTS — full mobile support
   ============================================================ */

/* ── Tablet landscape (≤1300px) ── */
@media (max-width: 1300px) {
  .ox-grid-5 { grid-template-columns: repeat(3,1fr); }
  .ox-grid-4 { grid-template-columns: repeat(2,1fr); }
  .ox-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .ox-container { padding: 0 36px; }
}

/* ── Tablet portrait (≤1000px) ── */
@media (max-width: 1000px) {
  .ox-ham { display: flex; }
  .ox-nav-links, .ox-lang-switcher { display: none; }
  .ox-grid-5, .ox-grid-4, .ox-grid-3 { grid-template-columns: repeat(2,1fr); }
  .ox-stats-inner { padding: 0 24px; flex-wrap: wrap; }
  .ox-stat { min-width: 140px; padding: 10px 16px; }
  .ox-trust-inner { padding: 0 24px; flex-wrap: wrap; gap: 10px; }

  /* Page hero — inner pages */
  .ox-page-hero { padding: 56px 0; }
  .ox-page-hero h1 { font-size: clamp(36px,6vw,64px); }

  /* Footer */
  .ox-footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {
  /* Nav */
  .ox-nav-inner { padding: 0 18px; height: 60px; }
  .ox-ham { display: flex; }
  .ox-nav-links, .ox-lang-switcher { display: none; }

  /* Page hero — inner pages */
  .ox-page-hero { padding: 44px 0; }
  .ox-page-hero h1 { font-size: clamp(30px,7vw,52px); letter-spacing: -.5px; }
  .ox-page-hero p { font-size: 14px; max-width: 100%; }
  .ox-breadcrumb { font-size: 11px; }

  /* Grids */
  .ox-grid-5, .ox-grid-4, .ox-grid-3 { grid-template-columns: 1fr 1fr; gap: 14px; }
  .ox-grid-2 { grid-template-columns: 1fr; }

  /* Cards */
  .ox-card-body h3 { font-size: 13px; }
  .ox-card-body p { font-size: 13px; }

  /* Section headers */
  .ox-section-hd { margin-bottom: 32px; }
  .ox-section-hd h2 { font-size: clamp(26px,6vw,40px); }
  .ox-section-hd p { font-size: 14px; }

  /* Section padding */
  .ox-section, .ox-section-sand, .ox-section-white, .ox-section-dark {
    padding: 52px 0;
  }
  .ox-container { padding: 0 18px; }

  /* Stats */
  .ox-stats-row { padding: 14px 0; }
  .ox-stats-inner { padding: 0 16px; gap: 0; }
  .ox-stat {
    flex: 0 0 50%;
    padding: 10px 12px;
    border-right: none;
    border-bottom: 1px solid rgba(212,168,85,.15);
  }
  .ox-stat:nth-child(odd) { border-right: 1px solid rgba(212,168,85,.15); }
  .ox-stat-n { font-size: 22px; }

  /* Trust bar */
  .ox-trust-bar { padding: 12px 0; }
  .ox-trust-inner { padding: 0 16px; flex-wrap: wrap; gap: 8px; justify-content: center; }
  .ox-pay-chips { flex-wrap: wrap; justify-content: center; }

  /* Footer */
  .ox-footer { padding: 44px 0 20px; }
  .ox-footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .ox-footer-brand { grid-column: 1 / -1; } /* full width brand row */
  .ox-footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  /* Buttons */
  .ox-btn { padding: 12px 20px; font-size: 11.5px; }

  /* Why grid */
  .ox-why-grid { grid-template-columns: 1fr; }
}

/* ── Small mobile (≤480px) ── */
@media (max-width: 480px) {
  .ox-grid-5, .ox-grid-4, .ox-grid-3, .ox-grid-2 { grid-template-columns: 1fr; }
  .ox-container { padding: 0 14px; }
  .ox-page-hero { padding: 36px 0; }
  .ox-page-hero h1 { font-size: clamp(26px,8vw,40px); }

  /* Stats — full width each */
  .ox-stat { flex: 0 0 100%; border-right: none; border-bottom: 1px solid rgba(212,168,85,.15); }

  /* Footer — single column */
  .ox-footer-grid { grid-template-columns: 1fr; }
  .ox-footer { padding: 36px 0 16px; }
}
