/* -------------------------
  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: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F8F8F8;
  font-family: 'Roboto', Arial, sans-serif;
  color: #232A33;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  border: none;
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  outline: none;
  background: none;
}

/* -----------------------------
   LUXURY PREMIUM THEME VARS
-------------------------------*/
:root {
  --color-primary: #2A3D56;
  --color-secondary: #D9B900;
  --color-accent: #E0E5EA;
  --color-bg: #F8F8F8;
  --color-surface: #fff;
  --color-text: #232A33;
  --color-headline: #13161A;
  --color-gold: #D9B900;
  --color-muted: #8B9BA8;
  --color-border: #E5E7EC;
  --color-shadow: rgba(42,61,86,0.09);
  --font-display: 'Montserrat',-apple-system,BlinkMacSystemFont,sans-serif;
  --font-body: 'Roboto',Arial,sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --shadow-sm: 0 1px 6px var(--color-shadow);
  --shadow-md: 0 4px 24px var(--color-shadow);
  --gradient-gold: linear-gradient(90deg, #D9B900 0%, #FFF7D1 100%);
}

@media (max-width: 480px) {
  html { font-size: 16px; }
}
@media (min-width: 481px) {
  html { font-size: 17px; }
}
@media (min-width: 900px) {
  html { font-size: 18px; }
}

body {
  font-size: 1rem;
  background: var(--color-bg);
  color: var(--color-text);
  letter-spacing: 0.01em;
  line-height: 1.6;
}

/* -------------------------
  TYPOGRAPHY
---------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-headline);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 22px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
h4 {
  font-size: 1rem;
}
p, .text-section p, .smallprint-contact p, ul, li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 0.8em;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 8px;
}

@media (min-width: 600px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.25rem; }
}

strong, b {
  font-weight: 600;
}
.category-label {
  display: inline-block;
  font-size: 0.98em;
  color: var(--color-secondary);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  position: relative;
}

@media (min-width: 769px) {
  .content-wrapper {
    gap: 22px;
  }
  .section {
    padding: 60px 0px;
  }
}

/* -----------------------------
   HEADER, NAV, LOGO, CTA
------------------------------*/
header {
  width: 100%;
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 0 0 0;
  min-height: 72px;
}
header .logo-link {
  padding: 16px 20px 16px 20px;
  display: flex;
  align-items: center;
}
header img {
  height: 44px;
  max-height: 48px;
  width: auto;
}
.main-nav {
  display: none;
}
.btn-primary {
  margin-left: auto;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08em;
  padding: 10px 34px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: background 0.16s, box-shadow 0.16s, color 0.16s;
  border: 2px solid var(--color-secondary);
  position: relative;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  box-shadow: 0 6px 26px 0 rgba(0,0,0,0.08);
  border-color: var(--color-secondary);
}

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  color: var(--color-primary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 20px;
  transition: color 0.15s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: var(--color-secondary);
}

@media (min-width: 980px) {
  header {
    padding: 0 42px;
    min-height: 82px;
  }
  .main-nav {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 26px;
    margin-left: 20px;
  }
  .main-nav a {
    font-size: 1.09em;
    font-family: var(--font-display);
    padding: 6px 10px;
    color: var(--color-primary);
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.15s, border-color 0.2s;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    position: relative;
  }
  .main-nav a:hover,
  .main-nav a:focus {
    color: var(--color-secondary);
    border-bottom: 2px solid var(--color-secondary);
  }
  .btn-primary {
    margin-left: 36px;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* -----------------------
  MOBILE MENU OVERLAY
-------------------------*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(42,61,86,0.96);
  color: #fff;
  z-index: 150;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 22px 4px 0;
  background: none;
  color: var(--color-secondary);
  font-size: 2.2em;
  border: none;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 200;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  margin: 44px 0 0 28px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.5em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(42,61,86,0.19);
  font-weight: 600;
  padding: 6px 2px;
  transition: color 0.14s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--color-secondary);
}

@media (min-width: 980px) {
  .mobile-menu { display: none; }
}

/* ----------------------
  MAIN LAYOUT SECTIONS
------------------------*/
main {
  width: 100%;
  min-height: 60vh;
  margin: 0 auto 0 auto;
}
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: none;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  padding: 34px 28px;
  min-width: 260px;
  flex: 1 1 320px;
}

.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;
    align-items: flex-start;
    gap: 18px;
  }
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 14px;
  margin-bottom: 8px;
}
.feature {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 28px 18px 22px 18px;
  flex: 1 1 240px;
  min-width: 200px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: box-shadow 0.16s, transform 0.15s;
  border: 1.5px solid var(--color-border);
}
.feature img {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 14px rgba(42,61,86,0.08));
}
.feature h3 {
  font-size: 1.08em;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.feature p {
  color: var(--color-muted);
  font-size: 1em;
}
.feature:hover, .feature:focus {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px) scale(1.02);
  border: 1.5px solid var(--color-secondary);
}

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

.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 32px 0 rgba(42,61,86,0.08);
  font-size: 1.05em;
  line-height: 1.6;
  color: #232A33;
  min-width: 230px;
  max-width: 350px;
  flex: 1 1 260px;
  border-left: 5px solid var(--color-secondary);
  margin-bottom: 20px;
  position: relative;
}
.testimonial-card strong {
  display: block;
  font-size: 0.95em;
  margin-top: 8px;
  color: var(--color-primary);
}

@media (max-width: 900px) {
  .feature-grid, .testimonial-list {
    gap: 18px;
  }
  .card-container {
    gap: 16px;
  }
  .section {
    padding: 32px 8px;
  }
  .card {
    padding: 20px 10px;
    min-width: 160px;
  }
}
@media (max-width: 670px) {
  .feature-grid, .testimonial-list {
    flex-direction: column;
    gap: 18px;
  }
  .feature, .testimonial-card {
    max-width: 100%;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* Article/blog styles */
.article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 12px;
}
.article {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 25px 18px 22px 18px;
  flex: 1 1 260px;
  min-width: 210px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.14s, border-color 0.18s;
  border-left: 4px solid var(--color-gold);
}
.article:hover, .article:focus {
  box-shadow: 0 6px 30px 0 rgba(42,61,86,0.10);
  border-left: 4px solid var(--color-primary);
}

@media (max-width:750px) {
  .article-list {
    flex-direction: column;
    gap: 18px;
  }
  .article {
    max-width: 100%;
  }
}

/* ----------------------
  LINKS & BUTTONS
------------------------*/
.btn-primary {
  cursor: pointer;
  display: inline-block;
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-sm);
  border: 2px solid var(--color-secondary);
  transition: background 0.16s, color 0.16s, box-shadow 0.21s, border-color 0.11s;
  font-family: var(--font-display);
  text-align: center;
  position: relative;
  outline: none;
}
.btn-primary:active {
  background: var(--color-accent);
  color: var(--color-primary);
}

/* Navigation links inside Footer */
.footer-nav {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-nav a {
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 1em;
  font-weight: 500;
  transition: color .15s, border-color .15s;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
}

/* Social contact and copyright */
.smallprint-contact {
  font-size: 0.99em;
  color: var(--color-muted);
  margin-top: 14px;
  margin-bottom: 4px;
}
.smallprint-contact p {
  margin-bottom: 2px;
}

/*------------------------
   FOOTER
------------------------*/
footer {
  background: var(--color-surface);
  box-shadow: 0 -2px 16px 0 rgba(42,61,86,0.06);
  position: relative;
  z-index: 2;
  padding: 46px 0 26px 0;
  margin-top: 30px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
footer .logo-link {
  margin-bottom: 12px;
}
@media (min-width: 769px) {
  footer .content-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
  }
  .footer-nav {
    margin-bottom: 0;
  }
}

/*---------------------
   COOKIE CONSENT BANNER & MODAL
----------------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #232A33;
  color: #fff;
  font-size: 1rem;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  box-shadow: 0 -2px 24px 0 rgba(42,61,86,0.16);
  z-index: 180;
  padding: 24px 12px 24px 12px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: transform 0.31s cubic-bezier(0.4,0,0.2,1), opacity 0.21s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner p {
  color: #fff;
  max-width: 500px;
  margin-bottom: 0;
}
.cookie-banner .cookie-btn {
  font-size: 0.98em;
  border-radius: var(--radius-sm);
  padding: 8px 22px;
  font-weight: 600;
  margin-left: 10px;
  border: 2px solid var(--color-secondary);
  box-shadow: 0 1px 6px var(--color-shadow);
  background: var(--color-secondary);
  color: var(--color-primary);
  cursor: pointer;
  margin-bottom: 2px;
  transition: background 0.13s, color 0.14s, border-color 0.15s;
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: var(--color-primary);
  color: var(--color-secondary);
  border-color: var(--color-primary);
}
.cookie-banner .cookie-btn.settings {
  background: var(--color-accent);
  color: var(--color-primary);
  border: 2px solid var(--color-secondary);
}

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 8px 14px 8px;
  }
  .cookie-banner .cookie-btn {
    margin-left: 0;
    margin-top: 7px;
  }
}

.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(42,61,86,0.74);
  z-index: 221;
  opacity: 1;
  transition: opacity 0.19s;
}
.cookie-modal {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  max-width: 420px;
  margin: auto auto 12vh auto;
  background: #fff;
  color: var(--color-headline);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 38px 0 rgba(42,61,86,0.18);
  z-index: 222;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  opacity: 1;
  transition: transform 0.24s, opacity 0.21s;
  transform: scale(1);
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.94);
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 0.2em;
  color: var(--color-primary);
}
.cookie-modal ul {
  padding: 0 0 0 8px;
}
.cookie-modal li {
  margin-bottom: 8px;
  color: var(--color-text);
  font-size: 1rem;
  display: flex;
  align-items: center;
}
.cookie-switch {
  display: inline-flex;
  align-items: center;
  margin-left: 12px;
}
.cookie-switch input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 38px;
  height: 20px;
  border-radius: 12px;
  background: var(--color-accent);
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
  margin-right: 7px;
  border: 1.5px solid var(--color-border);
}
.cookie-switch input[type="checkbox"]:checked {
  background: var(--color-secondary);
  border: 1.5px solid var(--color-secondary);
}
.cookie-switch span {
  display: inline-block;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 2px; top: 1px;
  box-shadow: 0 1px 5px var(--color-shadow);
  transform: translateX(0);
  transition: transform 0.18s;
  pointer-events: none;
}
.cookie-switch input[type="checkbox"]:checked + span {
  transform: translateX(18px);
}
.cookie-modal .cookie-btn {
  margin-top: 12px;
  padding: 9px 28px;
  font-size: 1em;
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-primary);
  align-self: flex-end;
}
.cookie-modal .cookie-btn:hover,
.cookie-modal .cookie-btn:focus {
  background: var(--color-primary);
  color: var(--color-secondary);
}
@media (max-width:480px) {
  .cookie-modal { max-width: 96vw; padding: 22px 10px; }
}

/*----------------------
   LISTS
------------------------*/
ul, li {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
.text-section ul, .text-section li {
  list-style: disc inside;
  margin-left: 14px;
  color: var(--color-text);
}
@media (max-width: 600px) {
  .text-section ul, .text-section li {
    margin-left: 4px;
  }
}

/*------------------------
   FORMS
------------------------*/
input, textarea, select {
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border);
  background: #fff;
  padding: 12px 15px;
  margin-bottom: 16px;
  color: var(--color-primary);
  font-size: 1em;
  font-family: var(--font-body);
  transition: border-color 0.13s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-secondary);
  outline: none;
}
label {
  font-family: var(--font-display);
  color: var(--color-text);
  font-size: 1em;
  margin-bottom: 6px;
}

/*-----------------------
   MICRO-INTERACTIONS
------------------------*/
.feature, .testimonial-card, .article {
  transition: box-shadow 0.2s, border-color 0.16s, transform 0.13s;
}
.feature:hover, .feature:focus, .testimonial-card:hover, .testimonial-card:focus, .article:hover, .article:focus {
  box-shadow: 0 10px 32px 0 rgba(42,61,86,0.11);
  transform: translateY(-3px) scale(1.012);
  border-color: var(--color-secondary);
  z-index: 2;
}

.btn-primary, .cookie-banner .cookie-btn, .cookie-modal .cookie-btn {
  transition: background 0.14s, color 0.14s, border-color 0.14s, box-shadow 0.16s;
}

/*----------------------
   MISC & UTILITIES
------------------------*/
::-webkit-scrollbar {
  width: 8px;
  background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: var(--radius-sm);
}
.no-scroll {
  overflow-y: hidden !important;
}

/* Decorative gold line for headlines */
h2:after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--color-secondary);
  border-radius: 2px;
  margin: 12px 0 8px 0;
}

@media (max-width:480px) {
  h2:after {
    width: 28px;
    margin: 9px 0 5px 0;
  }
}

/* Icon inside text-section */
.text-section img {
  display: inline;
  height: 1.3em;
  margin-right: 5px;
  vertical-align: bottom;
}

/* accessibility: ensure distinct focus */
:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/*----------------------
  PRINT STYLES
------------------------*/
@media print {
  body, html {
    background: #fff !important;
    color: #000 !important;
  }
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal, .cookie-modal-backdrop {
    display: none !important;
  }
}

/*----------- END -----------*/
