/* --------------------------------------------------
   CSS RESET & NORMALIZE (Mobile-first)
-------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  min-height: 100vh;
  background: #FAFBFD;
  color: #19263A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  background-color: #F7F8FB;
}
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; transition: color .26s; }
img { max-width: 100%; height: auto; display: block; border: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
::-webkit-input-placeholder { color: #888; }
::-moz-placeholder { color: #888; }
:-ms-input-placeholder { color: #888; }
::-ms-input-placeholder { color: #888; }
::placeholder { color: #888; }

/* ---------------
   Brand Styles
--------------- */
:root {
  --spj-primary: #205080;
  --spj-secondary: #F5CF23;
  --spj-accent: #FFFFFF;
  --spj-text-main: #1A253B;
  --spj-background: #FAFBFD;
  --spj-black: #131729;
  --spj-gold: #CBB26A;
  --spj-card-bg: #fff;
  --spj-card-shadow: 0 6px 20px rgba(32, 80, 128, 0.09);
  --spj-border-radius: 16px;
  --spj-section-space: 40px 20px;
  /* Fallback font stack */
  --font-display: 'Baloo 2', 'Montserrat', Arial, sans-serif;
  --font-body: 'Montserrat', Arial, sans-serif;
}

/* Baloo 2 + Montserrat from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@600;700&family=Montserrat:wght@400;500;700&display=swap');

/* ---------------
   Typography Scale
--------------- */
h1, .hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--spj-primary);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
  line-height: 1.13;
}
@media (min-width: 520px) {
  h1, .hero h1 {
    font-size: 2.8rem;
  }
}
@media (min-width: 920px) {
  h1, .hero h1 {
    font-size: 3.2rem;
  }
}
h2 {
  font-family: var(--font-display);
  color: var(--spj-primary);
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 18px;
  line-height: 1.2;
}
h3 {
  font-family: var(--font-display);
  color: var(--spj-primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}
h4, h5, h6 {
  color: var(--spj-primary);
  margin-bottom: 8px;
  font-weight: 500;
}
p, ul li, ol li, blockquote {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 14px;
  color: var(--spj-text-main);
}
strong { font-weight: bold; color: var(--spj-black); }
small { font-size: 0.94rem; color: #5D607A; }

blockquote {
  background: #F3EEE3;
  color: #1A253B;
  border-left: 5px solid var(--spj-gold);
  padding: 20px 22px 14px 22px;
  margin: 0 0 10px 0;
  font-style: italic;
  border-radius: 8px;
  font-size: 1.12rem;
}

/* ---------------
   Layout Patterns
--------------- */
.container {
  width: 100%;
  max-width: 1176px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  background: var(--spj-card-bg);
  box-shadow: var(--spj-card-shadow);
  border-radius: var(--spj-border-radius);
  margin-bottom: 20px;
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 270px;
  max-width: 390px;
}
@media (max-width: 768px) {
  .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .card {
    width: 100%;
    min-width: inherit;
    max-width: none;
    padding: 22px 14px;
  }
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fffbe9;
  box-shadow: 0px 4px 20px 0px rgba(32,80,128,0.05);
  border-left: 4px solid var(--spj-gold);
  border-radius: 14px;
  margin-bottom: 24px;
  max-width: 500px;
  color: #262625;
}
.testimonial-card blockquote {
  background: none;
  color: #242217;
  border-left: none;
  padding: 0;
  font-size: 1.11rem;
  font-style: italic;
}
.testimonial-card p {
  margin: 0 0 0 0;
  color: #3b3727;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
}

ul, ol {
  margin-bottom: 24px;
  padding-left: 0;
}
ul li, ol li {
  position: relative;
  padding-left: 0;
  margin-bottom: 14px;
  line-height: 1.65;
}
ul li img, ol li img {
  vertical-align: middle;
  width: 25px;
  height: 25px;
  margin-right: 15px;
  position: relative;
  top: 4px;
}

@media (max-width: 600px) {
  .container {
    padding: 0 8px;
  }
  .section, .hero .container {
    padding: 30px 8px;
  }
}

/* -----------------------------------------
   Header & Navigation (Desktop & Mobile)
----------------------------------------- */
header {
  width: 100%;
  background: var(--spj-accent);
  box-shadow: 0 2px 32px 0 rgba(32, 80, 128, 0.03);
  position: relative;
  z-index: 15;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0 8px 0;
  gap: 18px;
  background: none;
}
.main-nav a {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--spj-primary);
  padding: 7px 10px;
  border-radius: 5px;
  transition: background .18s, color .18s;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.main-nav a.cta.primary {
  background: var(--spj-secondary);
  color: #1A253B;
  padding: 7px 22px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(40,40,31,0.05);
  border: 2px solid #E5D07D;
}
.main-nav a.cta.primary:hover,
.main-nav a.cta.primary:focus {
  background: #fff9e0;
  color: #205080;
  border-color: #F5CF23;
}
.main-nav a:hover:not(.cta),
.main-nav a:focus:not(.cta) {
  background: #EFF6FE;
  color: var(--spj-secondary);
}
.main-nav img {
  height: 48px;
  width: auto;
  margin-right: 12px;
  vertical-align: middle;
}

/* ----------
   Footer
----------- */
footer {
  margin-top: 40px;
  background: var(--spj-primary);
  color: #fff;
  padding: 34px 0 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.88;
  font-size: 1rem;
  transition: color .18s, opacity .18s;
  padding: 2px 8px;
  border-radius: 3px;
  font-family: var(--font-body);
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--spj-secondary);
  opacity: 1;
}
footer p {
  font-size: 0.97rem;
  opacity: 0.65;
}

/* ---------------
   Hero Section
--------------- */
.hero {
  background: linear-gradient(120deg, #fffbe9 80%, #fbf3cc 100%);
  padding: 0 0 14px 0;
  margin-bottom: 20px;
}
.hero .container {
  padding-top: 52px;
  padding-bottom: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  font-size: 2.1rem;
  color: #1A253B;
}
.hero p {
  color: #444f6e;
  font-size: 1.15rem;
  margin-bottom: 22px;
}
@media (min-width: 700px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero .container {
    padding-top: 72px;
    padding-bottom: 70px;
  }
}

/* ------------------------------------------------------
   Buttons, CTA, Microinteractions
------------------------------------------------------ */
.cta {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--spj-primary);
  background: #fff;
  border: 2px solid var(--spj-primary);
  border-radius: 9px;
  padding: 10px 32px;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 14px 0 rgba(65,65,44,0.07);
  cursor: pointer;
  transition: background .19s, color .19s, box-shadow .21s;
  margin-top: 10px;
  margin-bottom: 10px;
}
.cta.primary {
  background: var(--spj-secondary);
  color: #191B2D;
  border: 2px solid #ECD767;
  box-shadow: 0 4px 32px 0 rgba(245, 207, 35, 0.13);
}
.cta.primary:hover, .cta.primary:focus {
  background: #fff9d1;
  color: var(--spj-primary);
  box-shadow: 0 4px 14px 0 rgba(32, 80, 128, 0.12);
}
.cta:hover, .cta:focus {
  background: var(--spj-primary);
  color: var(--spj-secondary);
  border-color: var(--spj-secondary);
}

/* Accessibility for touch targets */
.cta, .mobile-nav a, .cookie-banner button, .cookie-modal button {
  min-height: 44px;
  min-width: 44px;
}

/* ------------------------------------------------------------
   Mobile Navigation — Hamburger, Drawer, Overlay Animation
------------------------------------------------------------- */
.mobile-menu-toggle {
  display: block;
  position: absolute;
  right: 22px;
  top: 19px;
  background: none;
  font-size: 2.1rem;
  color: var(--spj-primary);
  border: none;
  cursor: pointer;
  transition: color .19s, background .18s;
  z-index: 52;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: var(--spj-secondary);
}
.main-nav {
  width: 100%;
}
@media (min-width: 1020px) {
  .mobile-menu-toggle { display: none; }
}
@media (max-width: 1019px) {
  .main-nav { display: none !important; }
}
/* Mobile Menu [drawer] */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32,80,128,0.91);
  transform: translateX(-102vw);
  transition: transform 0.37s cubic-bezier(.58,.1,.38,1.2);
  z-index: 1002;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  overflow-y: auto;
  padding: 0; /* will be padded in nav */
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 1.9rem;
  position: absolute;
  right: 30px;
  top: 16px;
  border: none;
  cursor: pointer;
  z-index: 1005;
  transition: color .16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--spj-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-top: 64px;
  width: 100%;
  padding: 28px 28px 28px 30px;
}
.mobile-nav a {
  font-size: 1.2rem;
  font-family: var(--font-display);
  color: #fff;
  font-weight: 600;
  opacity: 0.95;
  padding: 10px 0;
  border-radius: 5px;
  transition: background .17s, color .17s, opacity .14s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #fff9db;
  color: var(--spj-primary);
  opacity: 1;
}
.mobile-nav a.cta.primary {
  background: var(--spj-secondary);
  color: var(--spj-primary);
  margin-top: 30px;
  padding: 13px 20px;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
}
@media (min-width: 1020px) {
  .mobile-menu { display: none !important; }
}

/* -----------------------------------------------------------
   Cookie Consent Banner & Modal
----------------------------------------------------------- */
.cookie-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 22px;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: rgba(250, 251, 253, .97);
  box-shadow: 0px -4px 35px 0 rgba(41,45,70,0.13);
  border-top: 3px solid var(--spj-secondary);
  z-index: 1900;
  padding: 18px 24px;
  animation: spjfadeInUp .6s cubic-bezier(.42,.21,.36,1.43);
  font-size: 1rem;
}
.cookie-banner.hidden {
  display: none !important;
}
.cookie-banner__text {
  color: #21273c;
  font-size: 1rem;
  max-width: 560px;
}
.cookie-banner__actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0;
  padding: 7px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 2px 12px 0 rgba(32,80,128,0.06);
  transition: background .19s, color .18s;
}
.cookie-banner .accept {
  background: var(--spj-secondary);
  color: #1A253B;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #f9e47a;
  color: var(--spj-primary);
}
.cookie-banner .reject {
  background: #f6f6f6;
  color: var(--spj-primary);
  border: 1px solid var(--spj-primary);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #e3e9f5;
  color: var(--spj-gold);
}
.cookie-banner .settings {
  background: none;
  color: var(--spj-primary);
  text-decoration: underline;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  color: var(--spj-secondary);
}
@media (max-width: 600px){
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 10px;
  }
  .cookie-banner__actions { gap: 10px; }
}
@keyframes spjfadeInUp {
  from { opacity: 0; transform: translateY(42px); }
  to { opacity: 1; transform: none; }
}

.cookie-modal {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  background: rgba(21,28,45,0.47);
  align-items: center;
  justify-content: center;
  animation: spjfadeIn .35s cubic-bezier(.81,.13,.37,1.4);
}
.cookie-modal.active { display: flex; }
.cookie-modal__content {
  background: #fffbe9;
  border-radius: 22px;
  padding: 36px 32px 32px 32px;
  box-shadow: 0 12px 60px 0 rgba(32,80,128,.13);
  max-width: 378px;
  width: 94vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 21px;
  position: relative;
  animation: spjfadeInScale .19s cubic-bezier(.81,.13,.37,1.4);
}
.cookie-modal__header {
  font-family: var(--font-display);
  font-size: 1.33rem;
  font-weight: 700;
  color: var(--spj-primary);
  margin-bottom: 12px;
}
.cookie-modal__close {
  position: absolute;
  top: 17px;
  right: 19px;
  font-size: 1.7rem;
  background: none;
  color: #1a253b;
  border: none;
  cursor: pointer;
  opacity: 0.85;
  transition: color .14s, opacity .14s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: var(--spj-secondary);
  opacity: 1;
}
.cookie-modal__categories {
  width: 100%;
  padding: 0;
  margin: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.04rem;
  font-weight: 500;
}
.cookie-modal__category input[type='checkbox'] {
  accent-color: var(--spj-secondary);
  width: 22px;
  height: 22px;
}
.cookie-modal__category label {
  margin-left: 2px;
  color: var(--spj-primary);
}
.cookie-modal__category .always-on {
  color: #aaa;
  font-size: 0.97rem;
  margin-left: 5px;
}
.cookie-modal__actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 12px;
}
.cookie-modal__actions button {
  font-family: var(--font-display);
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 9px;
  font-size: 1.01rem;
  border: none;
  cursor: pointer;
  transition: background .14s, color .13s;
}
.cookie-modal__actions .accept {
  background: var(--spj-secondary);
  color: #1A253B;
}
.cookie-modal__actions .reject {
  background: #f7f7f7;
  color: var(--spj-primary);
  border: 1.2px solid var(--spj-primary);
}
@keyframes spjfadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes spjfadeInScale {
  from { opacity: 0; transform: scale(.96); }
  to { opacity: 1; transform: scale(1); }
}
@media (max-width: 500px){
  .cookie-modal__content {
    max-width: 97vw;
    padding: 22px 8px 13px 8px;
    border-radius: 9px;
  }
}

/* ----------------------------------------------------
   Misc, Details, Effects
---------------------------------------------------- */
hr {
  border: none;
  height: 1px;
  background: #eee;
  margin: 22px 0;
}
section {
  background: none;
  margin-bottom: 40px;
  border-radius: 0;
}

.card {
  border: 1.5px solid #e8e6d1;
  transition: box-shadow .19s, border-color .16s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 7px 36px 0 rgba(205,169,40,0.10);
  border-color: #eada92;
}

/* Form field basics (for newsletter or future forms) */
input[type="text"], input[type="email"], textarea {
  border: 1px solid #DFE4EE;
  border-radius: 7px;
  padding: 10px 16px;
  font-size: 1rem;
  margin-bottom: 16px;
  width: 100%;
  background: #FDFDF9;
  color: #222f43;
  transition: box-shadow .13s, border-color .13s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: var(--spj-secondary);
  box-shadow: 0 2px 8px 0 rgba(245,207,35,0.09);
}
label { font-weight: 500; color: var(--spj-primary); }

/* Accessibility transitions */
*:focus {
  outline: 2.5px solid var(--spj-secondary); outline-offset: 2px;
}

/* -----------------------------------------
   Responsive: Nav, Sections & General
----------------------------------------- */
@media (max-width: 1019px) {
  .main-nav {
    display: none;
  }
  .mobile-menu {
    display: flex;
  }
}
@media (min-width: 1020px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
  }
  .container {
    padding-left: 28px; padding-right: 28px;
  }
}

@media (max-width: 900px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 800px) {
  .footer-nav { flex-direction: column; gap: 10px; }
}

@media (max-width: 600px) {
  h1, .hero h1 { font-size: 1.4rem; }
  h2 { font-size: 1.17rem; }
  .testimonial-card { max-width: 97vw; padding: 13px 8px; }
  .card { padding: 13px 10px; }
}

/* -----------------------------------------------
   Utility: Hide/show, z-index layers, helpers
----------------------------------------------- */
.d-none { display: none !important; }
.z-high { z-index: 99999; position: relative; }

/* -----------------------------------------------
   Luxury Premium Gold Accents (Headings, details)
----------------------------------------------- */
h1, h2, h3, .cta.primary, .main-nav a.cta.primary, .footer-nav a:hover, .cookie-banner .accept {
  /* subtle gold underline effect */
  position: relative;
}
h1::after, h2::after {
  content: '';
  display: block;
  margin: 12px 0 0 0;
  width: 45px;
  height: 4px;
  border-radius: 2px;
  background: var(--spj-gold);
}
h3::after {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  background: var(--spj-gold);
  border-radius: 1.5px;
  margin-top: 7px;
}
@media (max-width: 600px){
  h1::after, h2::after{ display:none; }
}

/* -----------------------------------------------
  Gold Emphasis for prices
----------------------------------------------- */
span, li span, strong.price {
  color: var(--spj-gold);
  font-weight: 600;
}

/* -----------------------------------------------
   Animations for interactivity
----------------------------------------------- */
.cta, .main-nav a, .footer-nav a, .mobile-nav a, .cookie-banner button, .cookie-modal__actions button {
  transition: background .19s, color .17s, box-shadow .13s, border .15s, opacity .13s;
}

/* -----------------------------------------------
   Other detail classes
----------------------------------------------- */
.text-section ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 17px;
}
.text-section ul li {
  display: flex;
  align-items: center;
}

/* --------------
   Hide visually but keep for screen readers
-------------- */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
footer p {
  color: white;
}
/* -----------------------------------------------
   No Grid or Column properties anywhere!
----------------------------------------------- */
/* (COMPLIANCE: NOT USED) */
