/* Page CSS extracted verbatim from _staging-copy/pages/page-11176.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:90px 60px 70px; position:relative; overflow:hidden; text-align:center; }
.hero-bg { position:absolute; inset:0; display:flex; flex-wrap:wrap; gap:14px; padding:20px; opacity:0.05; pointer-events:none; }
.diamond { width:16px; height:16px; transform:rotate(45deg); flex-shrink:0; }
.page-hero-label { font-size:11px; font-weight:500; text-transform:uppercase; letter-spacing:1.5px; color:#888; margin-bottom:14px; display:block; position:relative; z-index:2; }
.page-hero-divider { width:40px; height:3px; background:var(--gold); border-radius:2px; margin:14px auto 24px; position:relative; z-index:2; }
.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; position:relative; z-index:2; }
.page-hero p { font-size:16px; color:#aaa; line-height:1.7; max-width:680px; margin:0 auto 48px; position:relative; z-index:2; }

/* CATEGORY NAV */
.cat-nav { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; max-width:900px; margin:0 auto; position:relative; z-index:2; }
.cat-card { background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.1); border-radius:12px; padding:18px 16px; text-decoration:none; text-align:center; transition:background 0.2s,transform 0.2s; }
.cat-card:hover { background:rgba(255,255,255,0.12); transform:translateY(-2px); }
.cat-icon { width:36px; height:36px; border-radius:9px; display:flex; align-items:center; justify-content:center; margin:0 auto 10px; }
.cat-label { font-size:13px; font-weight:500; color:var(--white); line-height:1.3; }

/* SECTIONS */
.cs-section { padding:80px 60px; border-bottom:1px solid var(--border); }
.cs-section:nth-child(even) { background:var(--light); }
.cs-section:nth-child(odd) { background:var(--white); }
.cs-section-inner { max-width:1100px; margin:0 auto; }
.cs-header { display:flex; justify-content:space-between; align-items:flex-end; flex-wrap:wrap; gap:20px; margin-bottom:40px; }
.cs-header-left { max-width:600px; }
.cs-section-divider { width:40px; height:3px; border-radius:2px; margin-bottom:20px; }
.cs-section-title { font-family:'DM Serif Display',serif; font-size:32px; font-weight:400; color:var(--dark); margin-bottom:12px; line-height:1.2; }
.cs-intro { font-size:15px; color:var(--mid); line-height:1.7; }
.cs-cta { display:inline-block; padding:10px 22px; border-radius:7px; font-size:14px; font-weight:500; text-decoration:none; white-space:nowrap; transition:opacity 0.2s; }
.cs-cta:hover { opacity:0.85; }

/* CARDS */
.cs-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-bottom:40px; }
.cs-card { background:var(--white); border:1px solid var(--border); border-radius:14px; padding:26px; display:flex; flex-direction:column; transition:box-shadow 0.2s,transform 0.2s; }
.cs-card:hover { box-shadow:0 8px 28px rgba(0,0,0,0.07); transform:translateY(-2px); }
.cs-section:nth-child(even) .cs-card { background:var(--white); }
.cs-tag { display:inline-block; font-size:11px; font-weight:600; text-transform:uppercase; letter-spacing:0.8px; padding:3px 10px; border-radius:20px; margin-bottom:12px; }
.cs-card-title { font-size:16px; font-weight:500; color:var(--dark); margin-bottom:8px; line-height:1.3; }
.cs-card-summary { font-size:14px; color:var(--mid); line-height:1.6; margin-bottom:12px; flex:1; }
.cs-bullets { list-style:none; padding:0; display:flex; flex-direction:column; gap:5px; margin-bottom:16px; }
.cs-bullets li { font-size:13px; color:var(--mid); display:flex; align-items:flex-start; gap:8px; line-height:1.4; }
.cs-bullets li::before { content:''; width:6px; height:6px; border-radius:50%; flex-shrink:0; margin-top:5px; background:var(--gold); }
.cs-link { font-size:13px; font-weight:500; text-decoration:none; }
.cs-link:hover { text-decoration:underline; }

/* LOGO STRIP */
.cs-logo-strip { margin-bottom:16px; }
.cs-logo-label { font-size:11px; text-transform:uppercase; letter-spacing:1.5px; color:#aaa; margin-bottom:16px; }
.cs-track-wrap { overflow:hidden; position:relative; }
.cs-track-wrap::before,.cs-track-wrap::after { content:''; position:absolute; top:0; bottom:0; width:60px; z-index:2; pointer-events:none; }
.cs-track { display:flex; gap:10px; width:max-content; animation:csScroll 40s linear infinite; }
.cs-track:hover { animation-play-state:paused; }
@keyframes csScroll { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }
.cs-logo-card { background:var(--white); border:1px solid var(--border); border-radius:8px; padding:8px 14px; height:52px; min-width:120px; display:flex; align-items:center; justify-content:center; flex-shrink:0; filter:grayscale(100%); opacity:0.6; transition:filter 0.2s,opacity 0.2s; }
.cs-logo-card:hover { filter:grayscale(0%); opacity:1; }
.cs-logo-card img { max-height:32px; max-width:100px; object-fit:contain; }

/* FINAL CTA */
.final-cta { background:var(--dark); padding:90px 60px; text-align:center; }
.final-cta h2 { font-family:'DM Serif Display',serif; font-size:36px; font-weight:400; color:var(--white); margin-bottom:16px; }
.final-cta p { font-size:16px; color:#aaa; margin-bottom:32px; max-width:580px; margin-left:auto; margin-right:auto; line-height:1.7; }
.final-btns { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

@media (max-width:900px) {
  .page-hero { padding:60px 20px 50px; } .page-hero h1 { font-size:2rem; }
  .cat-nav { grid-template-columns:1fr 1fr; }
  .cs-section { padding:60px 20px; }
  .cs-header { flex-direction:column; align-items:flex-start; }
  .cs-grid { grid-template-columns:1fr; }
  .final-cta { padding:70px 20px; } .final-cta h2 { font-size:26px; }
}
