/* Page CSS extracted verbatim from _staging-copy/pages/page-11136.html (approved). */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
:root {
  --gold: #F5A623; --blue: #29ABE2; --green: #39B54A;
  --orange: #E8641A; --purple: #7B4FA6; --red: #ED1C24;
  --dark: #2c2c2c; --mid: #555555; --light: #f9f7f4;
  --white: #ffffff; --border: #e5e2de;
}
body { font-family: 'DM Sans', sans-serif; color: var(--dark); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }

/* ── NAV ── */
nav.ct-nav {
  position: sticky; top: 0; background: var(--white);
  border-bottom: 1px solid var(--border); z-index: 100;
  padding: 0 60px; display: flex; align-items: center;
  justify-content: space-between; height: 68px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.ct-nav-logo img { height: 36px; object-fit: contain; display: block; }
.ct-nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.ct-nav-links a { text-decoration: none; color: var(--mid); font-size: 14px; font-weight: 400; transition: color 0.2s; white-space: nowrap; }
.ct-nav-links a:hover { color: var(--dark); }
.ct-nav-links a.active { color: var(--dark); font-weight: 500; border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
.ct-nav-cta { background: var(--dark); color: var(--white) !important; padding: 9px 20px; border-radius: 6px; font-size: 13px; font-weight: 500; text-decoration: none; white-space: nowrap; transition: background 0.2s; }
.ct-nav-cta:hover { background: var(--gold); color: var(--dark) !important; }

/* ── HAMBURGER ── */
.ct-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 200; }
.ct-hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s; }
.ct-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ct-hamburger.open span:nth-child(2) { opacity: 0; }
.ct-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.ct-mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  z-index: 150; flex-direction: column; padding: 8px 0 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.ct-mobile-menu.open { display: flex; }
.ct-mobile-menu a { padding: 13px 24px; font-size: 15px; color: var(--dark); text-decoration: none; border-bottom: 1px solid #f0eee9; }
.ct-mobile-menu a.mobile-cta { margin: 10px 20px 0; background: var(--dark); color: var(--white) !important; border-radius: 7px; border-bottom: none; text-align: center; font-weight: 500; padding: 11px 20px; }
.ct-mobile-menu a.mobile-cta:hover { background: var(--gold); color: var(--dark) !important; }

/* ── CONTACT SECTION ── */
.ct-contact-section { background: var(--light); border-top: 1px solid var(--border); padding: 80px 60px; }
.ct-contact-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.ct-contact-label { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 1.5px; color: #777; margin-bottom: 14px; }
.ct-contact-divider { width: 40px; height: 3px; background: var(--gold); border-radius: 2px; margin-bottom: 28px; }
.ct-contact-title { font-family: 'DM Serif Display', serif; font-size: 34px; font-weight: 400; color: var(--dark); line-height: 1.2; margin-bottom: 16px; }
.ct-contact-desc { font-size: 15px; color: var(--mid); line-height: 1.7; margin-bottom: 32px; }
.ct-contact-details { display: flex; flex-direction: column; gap: 14px; }
.ct-contact-detail { display: flex; align-items: flex-start; gap: 12px; }
.ct-contact-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ct-contact-text strong { display: block; font-size: 13px; font-weight: 500; color: var(--dark); margin-bottom: 2px; }
.ct-contact-text span { font-size: 13px; color: #777; }
.ct-wpf-wrap { background: var(--white); border-radius: 14px; padding: 40px; border: 1px solid var(--border); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.ct-wpf-note { font-size: 12px; color: #bbb; text-align: center; margin-top: 10px; }
.ct-wpf-wrap .wpforms-form .wpforms-field { margin-bottom: 14px !important; padding: 0 !important; }
.ct-wpf-wrap .wpforms-form label.wpforms-field-label { font-family: 'DM Sans',sans-serif !important; font-size: 12px !important; font-weight: 500 !important; color: #555 !important; margin-bottom: 5px !important; display: block !important; }
.ct-wpf-wrap .wpforms-form input[type=text],.ct-wpf-wrap .wpforms-form input[type=email],.ct-wpf-wrap .wpforms-form input[type=tel],.ct-wpf-wrap .wpforms-form select,.ct-wpf-wrap .wpforms-form textarea { font-family: 'DM Sans',sans-serif !important; font-size: 14px !important; color: var(--dark) !important; padding: 11px 14px !important; border: 1.5px solid var(--border) !important; border-radius: 8px !important; background: var(--white) !important; box-shadow: none !important; width: 100% !important; -webkit-appearance: none !important; }
.ct-wpf-wrap .wpforms-form input:focus,.ct-wpf-wrap .wpforms-form select:focus,.ct-wpf-wrap .wpforms-form textarea:focus { border-color: var(--gold) !important; outline: none !important; }
.ct-wpf-wrap .wpforms-form textarea { min-height: 100px !important; resize: vertical !important; }
.ct-wpf-wrap .wpforms-form button[type=submit],.ct-wpf-wrap .wpforms-form input[type=submit] { font-family: 'DM Sans',sans-serif !important; font-size: 15px !important; font-weight: 500 !important; background: var(--gold) !important; color: var(--dark) !important; border: none !important; padding: 13px 28px !important; border-radius: 8px !important; width: 100% !important; cursor: pointer !important; transition: opacity 0.2s !important; }
.ct-wpf-wrap .wpforms-form button[type=submit]:hover { opacity: 0.88 !important; }

/* ── FOOTER ── */
.ct-footer { background: var(--white); border-top: 1px solid var(--border); padding: 36px 60px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.ct-footer img { height: 28px; object-fit: contain; }
.ct-footer p { font-size: 13px; color: #999; }
.ct-footer a { color: #999; text-decoration: none; font-size: 13px; transition: color 0.2s; }
.ct-footer a:hover { color: var(--dark); }
.ct-footer-links { display: flex; gap: 24px; }

/* ── SHARED COMPONENTS ── */
.section-label { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 1.5px; color: var(--mid); margin-bottom: 12px; display: block; }
.section-divider { width: 40px; height: 3px; background: var(--gold); border-radius: 2px; margin-bottom: 24px; }
.section-title { font-family: 'DM Serif Display', serif; font-size: 34px; font-weight: 400; color: var(--dark); line-height: 1.2; margin-bottom: 14px; }
.section-sub { font-size: 15px; color: var(--mid); line-height: 1.7; }
.diamond { transform: rotate(45deg); }
.btn-primary { display: inline-block; background: var(--gold); color: var(--dark); padding: 12px 26px; border-radius: 7px; font-size: 14px; font-weight: 500; text-decoration: none; transition: opacity 0.2s; }
.btn-primary:hover { opacity: 0.88; }
.btn-secondary { display: inline-block; background: transparent; color: var(--dark); border: 1.5px solid #ccc; padding: 11px 26px; border-radius: 7px; font-size: 14px; text-decoration: none; transition: border-color 0.2s; }
.btn-secondary:hover { border-color: var(--dark); }
.btn-dark { display: inline-block; background: var(--dark); color: var(--white); padding: 12px 26px; border-radius: 7px; font-size: 14px; font-weight: 500; text-decoration: none; transition: opacity 0.2s; }
.btn-dark:hover { opacity: 0.85; }
.btn-outline-white { display: inline-block; background: transparent; color: #ccc; border: 1.5px solid #555; padding: 11px 26px; border-radius: 7px; font-size: 14px; text-decoration: none; transition: all 0.2s; }
.btn-outline-white:hover { border-color: #aaa; color: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav.ct-nav { padding: 0 20px; }
  .ct-nav-links { display: none !important; }
  .ct-nav-cta { display: none !important; }
  .ct-hamburger { display: flex !important; }
  .ct-contact-section { padding: 60px 20px; }
  .ct-contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .ct-wpf-wrap { padding: 28px 20px; }
  .ct-footer { padding: 28px 20px; flex-direction: column; align-items: flex-start; }
}
@media (min-width: 901px) {
  .ct-hamburger { display: none !important; }
  .ct-mobile-menu { display: none !important; }
  .ct-nav-cta { display: inline-block !important; }
}

.page-hero { background:var(--dark); padding:80px 60px; position:relative; overflow:hidden; display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.hero-diamonds { position:absolute; right:0; top:0; bottom:0; width:280px; display:grid; grid-template-columns:repeat(5,20px); gap:8px; padding:20px; opacity:0.06; align-content:start; }
.diamond { width:16px; height:16px; transform:rotate(45deg); }
.page-hero-inner { position:relative; z-index:2; }
.page-hero-label { font-size:11px; font-weight:500; text-transform:uppercase; letter-spacing:1.5px; color:#888; margin-bottom:14px; display:block; }
.page-hero-divider { width:40px; height:3px; background:var(--gold); border-radius:2px; margin-bottom:24px; }
.page-hero h1 { font-family:'DM Serif Display',serif; font-size:clamp(2rem,4vw,3rem); font-weight:400; color:var(--white); line-height:1.15; margin-bottom:18px; }
.page-hero p { font-size:16px; color:#aaa; line-height:1.7; }
.page-hero-img { border-radius:14px; overflow:hidden; box-shadow:0 16px 48px rgba(0,0,0,0.3); position:relative; z-index:2; }
.page-hero-img img { width:100%; height:380px; object-fit:cover; display:block; }
.page-hero-img-cap { font-size:12px; color:#888; margin-top:8px; text-align:center; font-style:italic; }

.two-col-section { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start; padding:80px 60px; max-width:1200px; margin:0 auto; }

/* TIMELINE */
.timeline { display:flex; flex-direction:column; gap:0; }
.tl-item { display:flex; gap:18px; }
.tl-left { display:flex; flex-direction:column; align-items:center; flex-shrink:0; width:40px; }
.tl-dot { width:32px; height:32px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:500; flex-shrink:0; font-family:'DM Serif Display',serif; }
.tl-line { width:2px; background:var(--border); flex:1; min-height:32px; }
.tl-item:last-child .tl-line { display:none; }
.tl-body { padding-bottom:28px; }
.tl-year { font-size:11px; font-weight:600; letter-spacing:0.5px; margin-bottom:5px; }
.tl-title { font-size:14px; font-weight:500; color:var(--dark); margin-bottom:5px; }
.tl-text { font-size:13px; color:var(--mid); line-height:1.6; }

/* STATS ROW */
.stats-trio { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:36px; }
.stat-box { background:var(--light); border-radius:12px; padding:20px 24px; border-left:4px solid; }
.stat-box-num { font-family:'DM Serif Display',serif; font-size:32px; font-weight:400; margin-bottom:4px; }
.stat-box-label { font-size:13px; color:var(--mid); line-height:1.4; }

/* TEAM PILLARS */
.pillars { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:28px; }
.pillar { background:var(--light); border:1px solid var(--border); border-radius:10px; padding:16px; display:flex; gap:12px; align-items:flex-start; }
.pillar-dot { width:10px; height:10px; border-radius:2px; transform:rotate(45deg); flex-shrink:0; margin-top:4px; }
.pillar h4 { font-size:13px; font-weight:500; color:var(--dark); margin-bottom:3px; }
.pillar p { font-size:12px; color:var(--mid); line-height:1.5; }

/* VISION */
.vision-section { background:var(--dark); padding:100px 60px; text-align:center; }
.vision-diamonds { display:flex; justify-content:center; gap:8px; margin-bottom:28px; }
.vision-diamond { width:12px; height:12px; transform:rotate(45deg); opacity:0.7; }
.vision-label { font-size:11px; font-weight:500; text-transform:uppercase; letter-spacing:1.5px; color:#888; margin-bottom:20px; display:block; }
.vision-quote { font-family:'DM Serif Display',serif; font-size:clamp(1.4rem,3vw,2rem); font-weight:400; color:var(--white); line-height:1.45; max-width:800px; margin:0 auto 20px; }
.vision-attr { font-size:13px; color:#666; font-style:italic; margin-bottom:0; }
.vision-sub { font-size:15px; color:#888; max-width:500px; margin:16px auto 0; line-height:1.7; }

/* VALUES */
.values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:40px; }
.value-card { background:var(--light); border-radius:12px; padding:26px; border-top:4px solid; }
.value-card h3 { font-size:14px; font-weight:500; margin-bottom:10px; }
.value-card p { font-size:13px; color:var(--mid); line-height:1.6; }

.about-cta { background:var(--light); padding:70px 60px; text-align:center; border-top:1px solid var(--border); }
.about-cta h2 { font-family:'DM Serif Display',serif; font-size:30px; font-weight:400; color:var(--dark); margin-bottom:12px; }
.about-cta p { font-size:15px; color:var(--mid); margin-bottom:28px; max-width:460px; margin-left:auto; margin-right:auto; line-height:1.7; }

@media (max-width:900px) {
  .page-hero { padding:60px 20px; grid-template-columns:1fr; gap:36px; }
  .page-hero h1 { font-size:2rem; }
  .hero-diamonds { display:none; }
  .two-col-section { padding:60px 20px; grid-template-columns:1fr; gap:40px; }
  .stats-trio { grid-template-columns:1fr 1fr; }
  .pillars { grid-template-columns:1fr; }
  .vision-section { padding:70px 20px; }
  .vision-quote { font-size:1.4rem; }
  .values-grid { grid-template-columns:1fr; }
  .about-cta { padding:60px 20px; }
}
