:root {
  --brand-color-primary: #06367e;
  --brand-color-secondary: #ffcf00;
  --ink: #231f20;
  --body-text: #606060;
  --bg: #faf9f7;
  --bg-alt: #f4f2ee;
  --border: #ececec;
}
html, body { margin: 0; padding: 0; scroll-behavior: smooth; }
body { background: var(--bg); font-family: 'Open Sans', system-ui, sans-serif; color: var(--body-text); -webkit-font-smoothing: antialiased; }
* { box-sizing: border-box; }
a { color: var(--brand-color-primary); text-decoration: none; }
a:hover { color: #2267ca; }
img { display: block; max-width: 100%; }
li::marker { color: var(--brand-color-primary); }
h1, h2, h3 { font-family: 'Newsreader', Georgia, serif; color: var(--ink); margin: 0; font-weight: 600; line-height: 1.18; }
h1 { font-size: clamp(31px, 4.4vw, 56px); line-height: 1.08; text-wrap: balance; }
h2 { font-size: clamp(32px, 3.8vw, 46px); }
h3 { font-size: 21px; }
p { text-wrap: pretty; }
[id] { scroll-margin-top: 110px; }
table { border-collapse: collapse; }
input::placeholder, textarea::placeholder { color: #a9a9a9; }

/* Layout */
.container { max-width: 1280px; margin: 0 auto; }
.container-narrow { max-width: 900px; margin: 0 auto; text-align: center; }
.section { padding: clamp(56px, 7vw, 100px) clamp(16px, 4vw, 60px); }
.section-tight { padding: clamp(52px, 6.5vw, 92px) clamp(16px, 4vw, 60px); }
.section-alt { background: var(--bg-alt); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 17px 32px; border-radius: 999px; white-space: nowrap; cursor: pointer; border: 0; font-family: inherit; }
.btn-lg { padding: 18px 34px; }
.btn-sm { padding: 16px 30px; }
.btn-xs { padding: 13px 26px; }
.btn-primary { background: var(--brand-color-secondary); color: var(--ink); }
.btn-primary:hover { background: #fae176; color: var(--ink); }
.btn-outline-dark { color: var(--brand-color-primary); border: 1.5px solid var(--brand-color-primary); background: transparent; }
.btn-outline-dark:hover { background: var(--brand-color-primary); color: #ffffff; }
.btn-outline-light { color: #ffffff; border: 1.5px solid rgba(255,255,255,0.65); background: transparent; }
.btn-outline-light:hover { background: #ffffff; color: var(--brand-color-primary); }

/* Type helpers */
.eyebrow { margin: 0 0 14px; font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #457fcc; }
.divider { width: 58px; height: 3px; background: var(--brand-color-secondary); border-radius: 999px; margin: 12px 0; }
.divider-center { margin: 12px auto; }
.text-lead { font-size: clamp(15px, 1.2vw, 17px); line-height: 1.85; }
.text-lead-light { font-size: clamp(15px, 1.2vw, 16.5px); line-height: 1.8; color: #d7e2f2; }

/* Checklist */
.check-list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 15px; line-height: 1.6; }
.check-list.cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr)); gap: 10px 22px; }
.check-item { display: flex; gap: 10px; }
.check-icon { flex: 0 0 auto; margin-top: 2px; display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; border-radius: 999px; background: rgb(69, 127, 204); }

/* Cards */
.card { background: #ffffff; border: 1px solid var(--border); border-radius: 20px; padding: clamp(24px, 2.6vw, 32px); }
.card-blue { background: var(--brand-color-primary); border-radius: 20px; padding: clamp(24px, 2.6vw, 32px); color: #ffffff; }
.card-blue h3 { color: #ffffff; }
.card ul, .card-blue ul { margin: 14px 0 0; padding: 0 0 0 20px; font-size: 15px; line-height: 1.5; }
.card ul li, .card-blue ul li { margin-bottom: 6px; }

/* Badges */
.badge-circle { display: flex; align-items: center; justify-content: center; width: 63px; height: 63px; border-radius: 999px; background: var(--brand-color-secondary); margin-bottom: 16px; }
.badge-circle img { width: 36px; height: 36px; }
.badge-num { display: flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 999px; background: var(--brand-color-secondary); font-family: 'Newsreader', Georgia, serif; font-size: 22px; color: var(--ink); margin-bottom: 16px; }
.card-title { display: block; font-family: 'Newsreader', Georgia, serif; font-size: 22px; color: var(--ink); }

/* Overlapping media */
.overlap-media { position: relative; height: 100%; min-height: 380px; }
.overlap-media .media-main { width: 82%; height: 88%; object-fit: cover; border-radius: 20px; box-shadow: 0 16px 40px rgba(35,31,32,0.14); }
.overlap-media .media-accent { position: absolute; right: 0; bottom: 0; width: 52%; height: 46%; object-fit: cover; border-radius: 20px; box-shadow: 0 16px 40px rgba(35,31,32,0.16); }

/* Quote */
.quote-mark { display: block; flex: 0 0 auto; }
.quote-card { margin: 0; background: var(--brand-color-primary); border-radius: 20px; padding: clamp(26px, 3vw, 36px); display: flex; flex-direction: column; gap: 16px; }
.quote-card blockquote { margin: 0; font-size: clamp(16px, 1.4vw, 19px); line-height: 1.75; color: #ffffff; }
.quote-card figcaption { margin-top: auto; font-size: 14.5px; color: #9fbbe4; }

/* Stat box */
.stat-box { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; background: var(--brand-color-primary); border-radius: 20px; padding: clamp(26px, 3vw, 36px); }
.stat-box .stat-num { font-family: 'Newsreader', Georgia, serif; font-size: clamp(40px, 5vw, 62px); line-height: 1; color: var(--brand-color-secondary); }
.stat-box p { margin: 0; flex: 1 1 180px; font-size: clamp(15px, 1.2vw, 17px); line-height: 1.8; color: #d7e2f2; }
.stat-source { display: block; margin-top: 6px; font-size: 13px; color: #9fbbe4; }

/* Facts */
.facts-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(220px, 45%), 1fr)); gap: 28px 34px; }
.fact-num { display: block; font-family: 'Newsreader', Georgia, serif; font-size: min(66px, 11vw); line-height: 1; color: var(--brand-color-primary); }
.fact-label { display: block; margin-top: 6px; font-size: 13.5px; letter-spacing: 0.04em; color: #8a8a8a; }

/* ===== Header / Nav ===== */
.nav-spacer { height: 86px; }
.site-header { position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 200; background: var(--bg); border-bottom: 1px solid var(--border); box-shadow: 0 1px 12px rgba(35,31,32,0.06); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; padding: 10px clamp(16px, 3vw, 44px); min-height: 86px; }
.logo { display: block; flex: 0 0 auto; }
.logo img { height: clamp(52px, 6vw, 66px); width: auto; }
.nav-desktop { display: none; align-items: center; gap: clamp(12px, 1.6vw, 24px); flex: 0 1 auto; }
.nav-link { font-size: 15px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.nav-link:hover { color: var(--brand-color-primary); }
.nav-link.active { color: var(--brand-color-primary); }
.nav-drop { position: relative; }
.nav-drop-trigger { display: flex; align-items: center; gap: 6px; padding: 12px 0; }
.nav-drop-panel { display: none; position: absolute; top: 100%; left: -14px; min-width: 250px; background: #ffffff; border: 1px solid var(--border); border-radius: 14px; box-shadow: 0 18px 40px rgba(35,31,32,0.14); padding: 10px; flex-direction: column; z-index: 10; }
.nav-drop:hover .nav-drop-panel, .nav-drop:focus-within .nav-drop-panel { display: flex; }
.nav-drop-panel.wide { width: 460px; max-width: 70vw; display: none; grid-template-columns: 1fr 1fr; gap: 2px; }
.nav-drop:hover .nav-drop-panel.wide, .nav-drop:focus-within .nav-drop-panel.wide { display: grid; }
.nav-drop-link { font-size: 14.5px; font-weight: 600; color: var(--ink); padding: 11px 14px; border-radius: 10px; }
.nav-drop-link:hover { background: var(--bg-alt); color: var(--brand-color-primary); }
.nav-drop-link.active { font-weight: 700; color: var(--brand-color-primary); }
.nav-phone { display: flex; align-items: center; gap: 9px; margin-left: 6px; color: var(--ink); }
.nav-phone:hover { color: var(--brand-color-primary); }
.nav-phone-icon { display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 999px; background: var(--brand-color-secondary); flex: 0 0 auto; }
.nav-phone-num { font-size: clamp(15px, 1.3vw, 18px); font-weight: 700; color: var(--ink); white-space: nowrap; }
.nav-mobile-actions { display: flex; align-items: center; gap: 12px; }
.nav-phone-btn { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 999px; background: var(--brand-color-secondary); }
.nav-burger { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; width: 48px; height: 48px; border-radius: 999px; border: 1px solid var(--border); background: #ffffff; cursor: pointer; padding: 0; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--ink); }
.nav-mobile { display: none; border-top: 1px solid var(--border); background: #ffffff; padding: 8px clamp(16px, 5vw, 32px) 26px; max-height: calc(100vh - 86px); overflow-y: auto; }
.nav-mobile.open { display: block; }
.nav-mobile-link { display: block; padding: 16px 0; border-bottom: 1px solid #f1efec; font-size: 17px; font-weight: 600; color: var(--ink); }
.nav-mobile-link.flex1 { flex: 1; border-bottom: 0; }
.nav-mobile-group { border-bottom: 1px solid #f1efec; }
.nav-mobile-group-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.nav-mobile-sub-toggle { width: 44px; height: 44px; border-radius: 999px; border: 1px solid var(--border); background: #ffffff; color: var(--brand-color-primary); font-size: 20px; font-weight: 700; cursor: pointer; padding: 0; flex: 0 0 auto; }
.nav-mobile-sub { display: none; flex-direction: column; padding: 0 0 14px 14px; }
.nav-mobile-sub.open { display: flex; }
.nav-mobile-sub-link { padding: 11px 0; font-size: 15.5px; color: var(--body-text); }
.nav-mobile-sub-link.active { font-weight: 700; color: var(--brand-color-primary); }
.nav-mobile-footer { display: flex; flex-direction: column; gap: 12px; padding-top: 22px; }
.nav-mobile-phone { display: inline-flex; align-items: center; gap: 12px; font-size: 20px; font-weight: 700; color: var(--ink); }
.nav-mobile-phone-icon { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 999px; background: var(--brand-color-secondary); flex: 0 0 auto; }
.nav-mobile-contact { margin-top: 8px; text-align: center; justify-content: center; }
@media (min-width: 1080px) {
  .nav-desktop { display: flex; }
  .nav-mobile-actions { display: none; }
  .nav-mobile { display: none !important; }
}

/* ===== Footer ===== */
.site-footer { background: var(--brand-color-primary); color: #d7e2f2; padding: clamp(44px, 6vw, 76px) clamp(16px, 4vw, 60px) 0; font-family: 'Open Sans', system-ui, sans-serif; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(30px, 4vw, 56px); }
.footer-brand { display: flex; flex-direction: column; gap: 18px; max-width: 340px; }
.footer-logo { height: 76px; width: auto; }
.footer-desc { margin: 0; font-size: 15px; line-height: 1.7; color: #b9cae4; }
.footer-social { display: flex; align-items: center; gap: 12px; padding-top: 4px; }
.social-btn { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 999px; background: var(--brand-color-secondary); }
.social-btn:hover { background: #fae176; }
.footer-heading { margin: 0 0 18px; font-family: 'Newsreader', Georgia, serif; font-size: 20px; font-weight: 600; color: #ffffff; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 15px; color: #d7e2f2; }
.footer-links a:hover { color: var(--brand-color-secondary); }
.footer-contact { display: flex; flex-direction: column; gap: 14px; font-size: 15px; line-height: 1.6; }
.footer-phone-main { font-size: 22px; font-weight: 700; color: var(--brand-color-secondary); }
.footer-phone-main:hover { color: #fae176; }
.footer-contact a { color: #d7e2f2; }
.footer-contact a:hover { color: var(--brand-color-secondary); }
.footer-contact address { font-style: normal; color: #b9cae4; }
.footer-bottom { margin: clamp(36px, 5vw, 60px) auto 0; padding: 22px 0 28px; border-top: 1px solid rgba(255,255,255,0.16); display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; font-size: 13px; color: #a8bcd9; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: #a8bcd9; }
.footer-bottom a:hover { color: var(--brand-color-secondary); }

/* ===== FAQ (fixed CMS structure) ===== */
.faqs { }
.faqs-inner { display: flex; flex-direction: column; gap: 12px; }
.faqs-head { margin-bottom: 6px; }
.eyebrow-light { margin: 0 0 14px; font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #457fcc; }
.h2-light { margin: 0 0 26px; font-size: clamp(32px, 3.8vw, 46px); line-height: 1.18; font-weight: 600; color: var(--ink); }
.faq-item { }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 18px; width: 100%; text-align: left; background: #ffffff; border: 1px solid var(--border); border-radius: 14px; cursor: pointer; padding: 20px clamp(18px, 2.4vw, 28px); font-family: 'Open Sans', sans-serif; font-size: clamp(15px, 1.3vw, 17px); font-weight: 600; color: var(--ink); }
.faq-q:hover { border-color: #457fcc; color: var(--brand-color-primary); }
.faq-sign { flex: 0 0 auto; font-size: 22px; line-height: 1; color: #457fcc; }
.faq-answer { display: none; margin: -1px 0 0; background: var(--brand-color-primary); border-radius: 0 0 14px 14px; padding: 0 clamp(18px, 2.4vw, 28px); }
.faq-answer p { margin: 0; padding: 18px 0 20px; font-size: clamp(14px, 1.15vw, 16px); line-height: 1.75; color: #d7e2f2; }
.faq-item[data-open="true"] .faq-q { background: var(--brand-color-primary); border-color: var(--brand-color-primary); border-radius: 14px 14px 0 0; color: #ffffff; }
.faq-item[data-open="true"] .faq-sign { color: var(--brand-color-secondary); }
.faq-item[data-open="true"] .faq-answer { display: block; }

/* ===== Media carousel ===== */
.media-carousel { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: 20px; overflow: hidden; background: #ffffff; box-shadow: 0 16px 40px rgba(35,31,32,0.14); }
.media-carousel.tall { padding-top: 40px; }
.media-slide { position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity 380ms ease; }
.media-slide.active { opacity: 1; pointer-events: auto; }
.media-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.media-slide img.contain { object-fit: contain; padding: 18px; box-sizing: border-box; }
.media-slide iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: none; }
.media-slide.playing iframe { display: block; }
.media-slide.playing img, .media-slide.playing .media-play { display: none; }
.media-play { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; background: transparent; cursor: pointer; }
.media-play-icon { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: flex; align-items: center; justify-content: center; width: 74px; height: 74px; border-radius: 999px; background: transparent; border: 2px solid #ffffff; }
.media-dots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.media-dot { width: 10px; height: 10px; border-radius: 999px; border: 0; padding: 0; cursor: pointer; background: #d6d2ca; transition: all 250ms ease; }
.media-dot.active { background: var(--brand-color-primary); width: 26px; }

/* ===== Testimonials carousel ===== */
.testimonials-viewport { overflow: hidden; }
.testimonials-track { display: flex; gap: 24px; transition: transform 420ms cubic-bezier(0.4, 0, 0.2, 1); }
.testimonial-card { flex: 0 0 auto; width: calc((100% - 48px) / 3); }
.testimonial-figure { height: 100%; margin: 0; background: #ffffff; border-radius: 20px; border: 1px solid var(--border); padding: clamp(24px, 2.6vw, 34px); display: flex; flex-direction: column; gap: 16px; box-sizing: border-box; }
.testimonial-figure blockquote { margin: 0; font-size: clamp(15px, 1.2vw, 16.5px); line-height: 1.8; color: var(--body-text); }
.testimonial-figure figcaption { margin-top: auto; padding-top: 8px; border-top: 1px solid #f0eeea; }
.testimonial-name { display: block; font-size: 15px; font-weight: 700; color: var(--ink); }
.testimonial-place { display: block; font-size: 14px; color: #8a8a8a; }
@media (max-width: 1079px) { .testimonial-card { width: calc((100% - 24px) / 2); } }
@media (max-width: 699px) { .testimonial-card { width: 100%; } }

/* ===== Brand marquee ===== */
.marquee-section { padding: clamp(34px, 4.5vw, 56px) 0 clamp(46px, 6vw, 78px); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.marquee-label { margin: 0 0 clamp(24px, 3vw, 36px); text-align: center; font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #8a8a8a; }
.marquee-viewport { position: relative; width: 100%; overflow: hidden; }
.marquee-track { display: flex; width: max-content; animation: ft-marquee 42s linear infinite; }
.marquee-set { display: flex; align-items: center; gap: clamp(40px, 6vw, 96px); padding-right: clamp(40px, 6vw, 96px); flex: 0 0 auto; }
.marquee-set img { height: clamp(30px, 3.6vw, 44px); width: auto; object-fit: contain; flex: 0 0 auto; }
@keyframes ft-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ===== Contact form ===== */
.contact-form { background: #ffffff; border: 1px solid var(--border); border-radius: 20px; padding: clamp(22px, 2.8vw, 38px); display: grid; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--ink); }
.form-field.full { grid-column: 1 / -1; }
.form-field input, .form-field textarea { font-family: 'Open Sans', sans-serif; font-size: 15px; color: var(--ink); padding: 14px 16px; border: 1px solid #dcd8d1; border-radius: 10px; background: var(--bg); }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: #457fcc; background: #ffffff; }
.form-field textarea { resize: vertical; }
.form-actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.form-success { background: var(--brand-color-primary); border-radius: 20px; padding: clamp(28px, 3vw, 42px); display: none; }
.form-success.active { display: block; }
.form-success h3 { color: #ffffff; }
.form-success p { margin: 14px 0 0; font-size: 15.5px; line-height: 1.8; color: #d7e2f2; }
.form-success a { color: var(--brand-color-secondary); font-weight: 700; }
[data-contact-form].hidden { display: none; }

/* Home: what-we-sell grid */
.what-we-sell-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); gap: 22px; align-items: stretch; }
.sell-card { position: relative; display: block; border-radius: 20px; overflow: hidden; background: #ececec; }
.sell-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.sell-card-label { position: absolute; left: 12px; right: 12px; bottom: 12px; background: #ffffff; border-radius: 12px; padding: 20px; box-shadow: 0 6px 18px rgba(35,31,32,0.12); }
.sell-card-title { display: block; font-family: 'Newsreader', Georgia, serif; font-size: 20px; color: var(--ink); padding-bottom: 2px; }
.sell-card-sub { display: block; font-size: 13.5px; line-height: 1.3; color: #7a7a7a; }
@media (max-width: 763px) {
  .what-we-sell-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .what-we-sell-grid > .sell-intro { grid-column: 1 / -1; }
  .sell-card img { aspect-ratio: 1 / 1; }
  .sell-card { border-radius: 16px; }
  .sell-card-label { padding: 16px; left: 9px; right: 9px; bottom: 9px; }
  .sell-card-sub { font-size: 12px; }
  .what-we-sell-grid > a:last-child { display: none; }
}
