/* CSS RESET & NORMALIZE */
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 {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  min-height: 100%;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background-color: #fafbfc;
  color: #23243b;
  font-size: 16px;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul,ol {
  list-style: none;
}
button,
input,
select,
textarea {
  font-family: inherit;
  outline: none;
}

/* BRAND COLORS & FONTS */
:root {
  --primary: #213269;
  --secondary: #FF6B0A;
  --accent: #E5ECF6;
  --lux-gold: #ccb67a;
  --lux-gold-dark: #a39053;
  --white: #fff;
  --black: #181b32;
  --gray: #ece9e1;
  --card-bg: #fcfcfd;
  --testimonial-bg: #fff;
  --shadow: 0 4px 24px 0 rgba(46,55,68,0.08);
  --radius: 22px;
  --display: 'Orbitron', Arial, sans-serif;
  --body: 'Roboto', Arial, sans-serif;
}

/* LUXURY BASE TYPE + HEADINGS */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--display);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: 0.01em;
}
h1 {font-size: 2.6rem; margin-bottom: 16px;}
h2 {font-size: 2.0rem; margin-bottom: 18px;}
h3 {font-size: 1.55rem; margin-bottom: 12px;}
.subheadline {
  font-family: var(--body);
  color: var(--lux-gold);
  font-size: 1.25rem;
  margin-bottom: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
p, li, a, span, label {
  font-family: var(--body);
  color: var(--black);
}

/* LAYOUT CONTAINERS */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

/* HEADER & MAIN-NAV */
header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(33,50,105,.04);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding-top: 12px;
  padding-bottom: 12px;
}
header a img {
  height: 42px;
  width: auto;
  margin-right: 12px;
}
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  font-family: var(--body);
  font-size: 1.03rem;
  padding: 8px 0;
  position: relative;
  color: var(--primary);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.main-nav a.cta-btn {
  margin-left: 16px;
}
.main-nav a:not(.cta-btn):after {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  margin-top: 1px;
  background: linear-gradient(90deg, var(--lux-gold), var(--secondary) 80%);
  border-radius: 2px;
  transition: width 0.25s cubic-bezier(0.165,0.84,0.44,1);
}
.main-nav a:hover:not(.cta-btn):after,
.main-nav a:focus:not(.cta-btn):after {
  width: 100%;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--secondary);
}

/* CTAs & BUTTONS */
.cta-btn {
  background: linear-gradient(90deg,var(--lux-gold) 85%, var(--secondary) 100%);
  color: var(--primary);
  font-family: var(--display);
  font-size: 1.14rem;
  font-weight: 600;
  padding: 13px 34px;
  border-radius: 100px;
  border: none;
  box-shadow: 0 2px 14px 0 rgba(255,222,124,.18);
  letter-spacing: 0.05em;
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: box-shadow 0.2s, background 0.2s, color 0.2s;
  outline: none;
}
.cta-btn:hover,
.cta-btn:focus {
  background: linear-gradient(90deg, var(--lux-gold-dark) 78%, var(--secondary) 100%);
  box-shadow: 0 5px 28px 0 rgba(204,182,122,0.24);
  color: var(--white);
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  background: var(--lux-gold);
  border: none;
  font-size: 2.0rem;
  padding: 7px 15px 4px 15px;
  border-radius: 12px;
  color: var(--primary);
  cursor: pointer;
  margin-left: 18px;
  transition: background 0.15s, color 0.15s;
  z-index: 102;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--secondary);
  color: var(--white);
}
/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(33,50,105,0.94);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.77,0,.175,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  font-size: 2.2rem;
  font-family: inherit;
  background: none;
  border: none;
  color: var(--lux-gold);
  padding: 25px 24px 0 0;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 1201;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 28px;
  width: 100%;
}
.mobile-nav a {
  color: var(--white);
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 20px 36px;
  width: 100%;
  text-align: right;
  border-bottom: 1px solid rgba(204,182,122,0.07);
  transition: background 0.18s, color 0.19s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: rgba(255,255,255,0.04);
  color: var(--lux-gold);
}

/* HERO SECTION */
.hero {
  background: var(--primary);
  color: var(--white);
  border-radius: 0 0 40px 40px;
  box-shadow: 0 10px 28px 0 rgba(27,29,47,0.16);
  margin-bottom: 60px;
  padding: 52px 0 60px 0;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  color: var(--lux-gold);
  font-family: var(--display);
  font-size: 2.7rem;
  text-align: center;
  margin-bottom: 12px;
}
.hero .subheadline {
  color: var(--white);
  font-size: 1.13rem;
  margin-bottom: 36px;
  text-align: center;
}
.hero .cta-btn {
  background: linear-gradient(90deg,var(--secondary), var(--lux-gold) 85%);
  color: var(--white);
  font-size: 1.18rem;
  margin: 0 auto;
}
.hero .cta-btn:hover,
.hero .cta-btn:focus {
  background: linear-gradient(90deg, var(--secondary) 60%, var(--lux-gold-dark) 100%);
  color: var(--lux-gold);
}

/* SECTION BASE SPACING & CARDS */
.section, .services, .features, .about, .contact, .legal, .confirmation, .cta, .testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 28px;
  min-width: 240px;
  max-width: 380px;
  flex: 1 1 320px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px 0 rgba(204,182,122,0.21);
  transform: translateY(-7px) scale(1.02);
  z-index: 1;
}

/* MAIN FLEX WRAPPERS */
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FEATURE GRID (for .feature-grid)  */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 24px 0 0 0;
  padding: 0;
  justify-content: flex-start;
}
.feature-grid li {
  flex: 1 1 217px;
  min-width: 170px;
  max-width: 245px;
  display: flex;
  align-items: center;
  background: var(--card-bg);
  box-shadow: var(--shadow);
  border-radius: 14px;
  gap: 18px;
  padding: 18px 18px 18px 16px;
  font-family: var(--display);
  color: var(--primary);
  font-size: 1.03rem;
  border-left: 6px solid var(--lux-gold);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.feature-grid li:hover, .feature-grid li:focus-within {
  border-left: 6px solid var(--secondary);
  box-shadow: 0 6px 20px 0 rgba(204,182,122,0.09);
}
.feature-grid img {
  width: 29px;
  height: 29px;
  display: inline-block;
}

/* TESTIMONIAL CARDS */
.testimonials {
  background: none;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 32px;
  background: var(--testimonial-bg);
  box-shadow: 0 2px 14px rgba(33,50,105,0.08);
  border-radius: 20px;
  border: 1.5px solid var(--lux-gold);
  margin-bottom: 24px;
  max-width: 600px;
  position: relative;
  font-size: 1.03rem;
}
.testimonial-card p {
  font-family: var(--body);
  color: var(--primary);
  font-size: 1.11rem;
  line-height: 1.7;
}
.testimonial-card strong {
  font-family: var(--display);
  color: var(--lux-gold-dark);
  font-size: 1.04rem;
  letter-spacing: 0.01em;
}
.testimonial-card:before {
  content: '\201C';
  position: absolute;
  top: 12px; left: 12px;
  color: var(--lux-gold-dark);
  font-size: 2.63rem;
  opacity: .12;
  font-family: var(--display);
  pointer-events: none;
}
.testimonials .content-wrapper {
  gap: 20px;
}

/* SERVICES LISTS */
.services ul, .about ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 12px 0 20px 0;
}
.services li, .about li {
  font-size: 1.06rem;
  padding-left: 2px;
  font-family: var(--body);
  color: var(--primary);
}

/* CONTACT INFO */
.contact-info p, .address-block p, .contact-info a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.01rem;
  margin-bottom: 9px;
  color: white;
}
.contact-info img {
  width: 22px;
  height: 22px;
  margin-right: 4px;
  flex-shrink: 0;
}
.contact-info a {
  color: var(--secondary);
  text-decoration: underline;
  font-size: 1.04rem;
  transition: color 0.2s;
}
.contact-info a:hover, .contact-info a:focus {
  color: var(--lux-gold);
}
.map {
  margin: 12px 0 12px 0;
}
.map img {
  border-radius: 9px;
  width: 125px;
  aspect-ratio: 1 / 1;
  border: 2px solid var(--lux-gold);
  object-fit: cover;
}

/* FOOTER */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 36px 0 18px 0;
  margin-top: 44px;
  border-radius: 32px 32px 0 0;
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
}
.footer-nav a {
  color: var(--accent);
  font-family: var(--body);
  font-size: 1.01rem;
  opacity: 0.89;
  transition: color 0.2s, opacity 0.2s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--lux-gold);
  opacity: 1;
}
.address-block {
  font-size: 1.01rem;
  color: var(--accent);
  font-family: var(--body);
  letter-spacing: 0.01em;
}
footer .cta-btn {
  align-self: flex-end;
  background: linear-gradient(90deg,var(--lux-gold), var(--secondary) 80%);
  color: var(--primary);
  font-size: 1.12rem;
  margin-top: 8px;
}
footer .cta-btn:hover,
footer .cta-btn:focus {
  background: linear-gradient(90deg, var(--lux-gold-dark) 80%, var(--secondary) 100%);
  color: var(--white);
}

/* LEGAL, CONFIRMATION, GENERIC */
.legal h1, .confirmation h1 {
  color: var(--lux-gold-dark);
  font-family: var(--display);
  margin-bottom: 16px;
  font-size: 2.2rem;
}
.legal h2, .confirmation h2 {
  color: var(--primary);
  margin-bottom: 10px;
}
.legal .text-section, .confirmation .text-section {
  margin-bottom: 22px;
  font-size: 1.01rem;
  color: var(--black);
  font-family: var(--body);
  line-height: 1.76;
}

/* CTA SECTIONS */
.cta {
  text-align: center;
  margin-bottom: 60px;
  padding: 30px 16px 44px 16px;
  background: linear-gradient(90deg, var(--white) 65%, var(--lux-gold) 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.cta .cta-btn {
  margin: 0 auto 8px auto;
}

/* TEXT-SECTION SPACING */
.text-section {
  margin-bottom: 16px;
  font-size: 1.05rem;
}

/* CARD-LIKE BACKGROUNDS FOR CONTACT/ABOUT/INFO */
.about .content-wrapper, .contact .content-wrapper, .services .content-wrapper, .legal .content-wrapper {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 38px 28px;
  gap: 24px;
}

/* SPACE & GAP ENFORCEMENT */
.section, .services, .features, .about, .contact, .legal, .confirmation, .cta, .testimonials {
  margin-bottom: 60px !important;
  padding: 40px 20px !important;
}
.card-container, .content-grid, .feature-grid {
  gap: 20px !important;
}
.card {
  margin-bottom: 20px !important;
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3000;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 18px;
  box-shadow: 0 -2px 24px 0 rgba(33,50,105,0.16);
  font-size: 1.06rem;
  border-radius: 24px 24px 0 0;
  animation: slideUpBanner .6s cubic-bezier(.57,.32,.33,1.24);
}
@keyframes slideUpBanner {
  from {transform: translateY(120%); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 18px;
}
.cookie-banner button {
  padding: 9px 26px;
  border-radius: 100px;
  border: none;
  font-family: var(--display);
  font-size: 1.04rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.15s, color 0.15s, box-shadow 0.18s;
  outline: none;
}
.cookie-banner .accept {
  background: var(--lux-gold);
  color: var(--primary);
  box-shadow: 0 2px 12px 0 rgba(204,182,122,0.18);
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: var(--lux-gold-dark);
  color: var(--white);
}
.cookie-banner .reject {
  background: var(--white);
  color: var(--secondary);
  border: 1.4px solid var(--secondary);
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus {
  background: var(--accent);
  color: var(--primary);
}
.cookie-banner .settings {
  background: transparent;
  color: var(--lux-gold);
  border: 1.2px solid var(--lux-gold);
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  background: var(--lux-gold);
  color: var(--primary);
}

/* COOKIE MODAL (PREFERENCES) */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(33,50,105,0.3);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.45s cubic-bezier(.68,.02,.32,1.14);
}
@keyframes fadeInModal {
  from {opacity: 0;}
  to {opacity: 1;}
}
.cookie-modal {
  background: var(--white);
  color: var(--primary);
  border-radius: 20px;
  box-shadow: 0 6px 36px 0 rgba(33,50,105,0.15);
  min-width: 320px;
  max-width: 410px;
  width: 90vw;
  padding: 38px 28px 20px 28px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  gap: 22px;
  z-index: 4001;
  animation: floatUpModal 0.41s cubic-bezier(.68,.02,.32,1.14);
}
@keyframes floatUpModal {
  from {transform: translateY(60px); opacity: 0;}
  to {transform: translateY(0); opacity:1;}
}
.cookie-modal h3 {
  font-family: var(--display);
  color: var(--primary);
  font-size: 1.31rem;
  margin-bottom: 3px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 13px;
  font-size: 1.06rem;
  font-family: var(--body);
}
.cookie-modal .category label {
  flex: 1 1 auto;
}
.cookie-modal .category input[type=checkbox] {
  accent-color: var(--lux-gold);
  width: 19px; height: 19px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 13px; right: 21px;
  background: none;
  border: none;
  font-size: 1.38rem;
  color: var(--primary);
  cursor: pointer;
  font-weight: bold;
  transition: color 0.18s;
}
.cookie-modal .close-modal:hover,
.cookie-modal .close-modal:focus {
  color: var(--secondary);
}
.cookie-modal .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}
.cookie-modal .modal-actions button {
  padding: 9px 20px;
  border-radius: 100px;
  font-family: var(--display);
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: background 0.15s, color 0.15s;
}
.cookie-modal .save {
  background: var(--lux-gold);
  color: var(--primary);
}
.cookie-modal .save:hover, .cookie-modal .save:focus {
  background: var(--lux-gold-dark);
  color: var(--white);
}
.cookie-modal .cancel {
  background: var(--accent);
  color: var(--primary);
  border: 1px solid var(--primary);
}
.cookie-modal .cancel:hover, .cookie-modal .cancel:focus {
  background: var(--primary);
  color: var(--white);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1150px) {
  .container {max-width: 96vw;}
  .hero .container {padding-left: 8px; padding-right: 8px;}
}
@media (max-width: 880px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 780px) {
  .main-nav {gap: 18px;}
  .feature-grid li {
    min-width: 120px;
    max-width: unset;
    font-size: 0.99rem;
    gap: 10px;
  }
  .about .content-wrapper,
  .contact .content-wrapper,
  .services .content-wrapper,
  .legal .content-wrapper {
    padding: 22px 8px;
    gap: 18px;
  }
  .section, .features, .about, .contact, .cta, .testimonials {
    margin-bottom: 42px !important;
    padding: 28px 8px !important;
  }
  .hero {
    padding: 38px 0 38px 0;
    border-radius: 0 0 18px 18px;
  }
  .card {padding: 18px 10px;}
  .testimonial-card {padding: 14px 10px;}
}
@media (max-width: 768px) {
  /* NAV -> BURGER */
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .feature-grid, .card-container, .content-grid, .about .content-wrapper, .contact .content-wrapper, .services .content-wrapper, .legal .content-wrapper, .footer-nav, .address-block, .testimonials .content-wrapper {
    flex-direction: column !important;
    gap: 16px !important;
    align-items: flex-start !important;
  }
  .text-image-section {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }
  .footer-nav {
    gap: 10px 6px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .hero h1 {font-size: 2.0rem;}
  h2 {font-size: 1.34rem;}
  h1 {font-size: 1.65rem;}
}
@media (max-width: 560px) {
  .hero h1 {
    font-size: 1.4rem;
    line-height: 1.23;
    margin-bottom: 8px;
  }
  .subheadline {
    font-size: 1rem;
  }
  .cta-btn,
  .cookie-banner button,
  .cookie-modal button {
    font-size: 0.99rem;
    padding: 9px 16px;
  }
  .feature-grid li,
  .services li,
  .about li {
    font-size: 0.98rem;
    min-width: 82px;
    padding: 10px 4px 10px 8px;
  }
  .section, .features, .about, .contact, .services, .testimonials, .cta {
    padding: 12px 2px !important;
  }
  .testimonial-card {
    padding: 8px 6px;
    font-size: 0.93rem;
  }
  footer {
    padding: 17px 0 8px 0;
    border-radius: 12px 12px 0 0;
    font-size: 0.98rem;
  }
}

/* MICRO-INTERACTION: smooth card/image transitions */
.card, .feature-grid li, .testimonial-card, .cta-btn, .main-nav a, .mobile-nav a {
  transition: box-shadow 0.19s, background 0.17s, color 0.17s, border 0.19s, transform 0.17s;
}

/* UTILITIES & OVERRIDES */
.d-none { display: none !important; }
.d-flex { display: flex !important; }
.justify-center { justify-content: center !important; }
.align-center { align-items: center !important; }
.mt-20 {margin-top: 20px !important;}
.mb-20 {margin-bottom: 20px !important;}

/* FOCUS VISIBLE FOR ALL (A11Y) */
:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Hide scrollbars for mobile-menu overlay content */
.mobile-menu {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}
