/* ===================
   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;
}
footer p {
  color: white;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FAFAF7;
  color: #23272A;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
}
ol, ul {
  list-style: none;
}
img {
  border-style: none;
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  box-sizing: border-box;
}
*:focus {
  outline: 2px solid #C3A861;
  outline-offset: 2px;
}

/* ===================
   LUXURY PREMIUM PALETTE
   =================== */
:root {
  --color-primary: #23272A;         /* main body text */
  --color-secondary: #8FB7B1;       /* soft accent */
  --color-accent: #FFFFFF;          /* white accent */
  --color-gold: #C3A861;            /* gold accent */
  --color-beige: #FAFAF7;           /* lux background */
  --color-dark: #111213;
  --color-grey: #F0F0ED;            /* card background */
  --font-display: 'Montserrat', 'Arial', sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --radius-s: 8px;
  --radius-m: 16px;
  --shadow-soft: 0 2px 12px rgba(35, 39, 42, 0.07);
  --shadow-card: 0 4px 24px rgba(35, 39, 42, 0.09);
  --transition: 0.25s cubic-bezier(.68,.13,.15,.93);
}

/* ===================
   TYPOGRAPHY
   =================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.5rem; /* 40px */
  margin-bottom: 24px;
  line-height: 1.13;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.18;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
  line-height: 1.2;
}
.text-section h2, .content-wrapper h2 {
  font-family: var(--font-display);
}
p, ul, ol {
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 16px;
  line-height: 1.6;
}
strong {
  font-family: var(--font-display);
  color: var(--color-dark);
  font-weight: 600;
}
blockquote {
  color: var(--color-dark);
  font-family: var(--font-display);
  font-size: 1.13rem;
  background: var(--color-grey);
  padding: 16px 24px;
  border-left: 4px solid var(--color-gold);
  margin-bottom: 16px;
  border-radius: var(--radius-m);
  font-style: italic;
}
cite {
  color: var(--color-secondary);
  display: block;
  font-size: 0.97rem;
  margin-top: 8px;
}

/* Typography responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.13rem;
  }
}

/* ===================
   LAYOUT CONTAINERS & SPACING
   =================== */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: var(--radius-m);
}
@media (max-width: 768px) {
  .section {
    padding: 32px 8px;
    margin-bottom: 40px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
  background: var(--color-grey);
  transition: box-shadow var(--transition), transform var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 32px rgba(35, 39, 42, 0.15);
  transform: translateY(-2px) scale(1.013);
  border-color: var(--color-gold);
}

.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: 16px;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--color-accent);
  padding: 20px;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
  border-left: 5px solid var(--color-gold);
  color: var(--color-primary);
}
.testimonial-card blockquote {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  color: var(--color-primary);
  font-style: italic;
  font-size: 1rem;
}
.testimonial-card cite {
  margin-left: auto;
  color: var(--color-secondary);
  font-style: normal;
  font-size: 0.98rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 24px 20px;
  background: var(--color-grey);
  border-radius: var(--radius-s);
  box-shadow: var(--shadow-soft);
}

/* ===================
   HEADER & NAVIGATION
   =================== */
header {
  background: var(--color-accent);
  box-shadow: 0 1px 12px rgba(35, 39, 42, 0.05);
  padding: 0;
  position: relative;
  z-index: 100;
}
header > .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px;
  gap: 16px;
}

header img {
  height: 42px;
  width: auto;
}

header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 500;
  font-size: 1rem;
  transition: color var(--transition);
  position: relative;
  padding: 4px 0;
}
header nav a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: var(--color-gold);
  margin: 4px 0 0 0;
  transition: width var(--transition);
  border-radius: 2px;
}
header nav a:hover:after, header nav a:focus:after {
  width: 80%;
}
header nav a.active, header nav a[aria-current="page"] {
  color: var(--color-gold);
}

/* CTA (Call to Action) MAIN */
.cta, .cta.primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 28px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 99px;
  background: var(--color-gold);
  color: #fff;
  border: none;
  box-shadow: 0 1px 8px rgba(35, 39, 42, 0.05);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  letter-spacing: 0.5px;
  text-shadow: 0 1px 5px rgba(35,39,42,0.13);
  margin-left: 16px;
}
.cta:hover, .cta:focus {
  background: #DCC793;
  color: var(--color-primary);
  transform: translateY(-2px) scale(1.035);
}
.cta.primary {
  background: var(--color-gold);
  color: #fff;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 2.2rem;
  cursor: pointer;
  margin-left: 20px;
  z-index: 1140;
  line-height: 1;
  padding: 8px 12px;
  border-radius: var(--radius-m);
  transition: background var(--transition);
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #EFEDE7;
  color: var(--color-gold);
}
@media (max-width: 1024px) {
  header nav, .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35, 39, 42, 0.91);
  z-index: 1200;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.67,.13,.34,.93);
  will-change: transform;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 2.1rem;
  padding: 16px 18px;
  cursor: pointer;
  align-self: flex-end;
  margin: 10px 20px 5px 0;
  border-radius: var(--radius-m);
  z-index: 1250;
  transition: background var(--transition), color var(--transition);
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #23272A;
  color: var(--color-gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin: 0 0 0 32px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-accent);
  font-weight: 500;
  padding: 8px 0;
  border-radius: 5px;
  transition: background var(--transition), color var(--transition);
  margin: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-gold);
  background: rgba(255,255,255,0.06);
}

@media (max-width: 1024px) {
  .mobile-menu {
    display: flex!important;
  }
}

@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none!important;
  }
}

/* ===================
   MAIN SECTION STYLES
   =================== */
main .section, main section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: none;
  border-radius: var(--radius-m);
}

@media (max-width: 768px) {
  main .section, main section {
    margin-bottom: 38px;
    padding: 26px 0;
  }
  .container {
    padding: 0 8px;
  }
}

.text-section {
  padding: 20px 0;
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
}

/* Feature List (Section Feature Highlights etc.) */
.content-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  margin-top: 6px;
}
.content-wrapper ul li {
  flex: 1 1 280px;
  min-width: 225px;
  background: var(--color-grey);
  border-radius: var(--radius-s);
  box-shadow: var(--shadow-soft);
  margin-bottom: 0;
  padding: 22px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow var(--transition), transform var(--transition);
  border-left: 4px solid transparent;
}
.content-wrapper ul li img {
  width: 36px;
  height: 36px;
  display: block;
  margin-bottom: 7px;
}
.content-wrapper ul li strong {
  font-size: 1.08rem;
  font-family: var(--font-display);
  color: var(--color-primary);
}
.content-wrapper ul li:hover, .content-wrapper ul li:focus-within {
  box-shadow: 0 6px 26px rgba(35, 39, 42, 0.07);
  border-left: 4px solid var(--color-gold);
  transform: translateY(-3px) scale(1.014);
  background: #FDFBF6;
}
@media (max-width: 768px) {
  .content-wrapper ul {
    flex-direction: column;
    gap: 20px;
  }
}

/* ===================
   FOOTER
   =================== */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 0;
}
footer .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px 56px;
  padding: 48px 24px 30px 24px;
}
.footer-brand {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: 220px;
}
.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 6px;
}
.footer-brand p {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 170px;
  margin-bottom: 8px;
}
footer nav a {
  color: #fff;
  font-family: var(--font-body);
  opacity: 0.89;
  font-size: 1rem;
  transition: color var(--transition), opacity var(--transition);
}
footer nav a:hover, footer nav a:focus {
  color: var(--color-gold);
  opacity: 1;
}
.footer-contact {
  min-width: 210px;
  font-size: 0.99rem;
  color: #EFEDE7;
  font-family: var(--font-body);
  margin-bottom: 8px;
  gap: 4px;
  display: flex;
  flex-direction: column;
}
.footer-contact a {
  color: var(--color-gold);
}
.footer-legal {
  display: flex;
  flex-direction: column;
  color: #AFBFC2;
  font-size: 0.97rem;
  gap: 6px;
}
.footer-legal a {
  color: #AFBFC2;
  font-size: 0.97rem;
  transition: color var(--transition);
}
.footer-legal a:hover, .footer-legal a:focus {
  color: var(--color-gold);
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 38px 0;
    align-items: flex-start;
    padding: 38px 18px 28px 18px;
  }
  .footer-brand, .footer-contact, .footer-legal, footer nav {
    margin-bottom: 10px;
  }
}

/* ===================
   COOKIES CONSENT BANNER
   =================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fffbe8;
  color: var(--color-primary);
  box-shadow: 0 -2px 16px rgba(35,39,42,0.12);
  z-index: 20000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 18px 12px 18px 16px;
  font-size: 1rem;
  border-top: 1.5px solid #F0E6D6;
  opacity: 1;
  transition: bottom var(--transition), opacity var(--transition);
  min-height: 62px;
}
.cookie-banner .cookie-msg {
  flex: 1 1 0;
  font-family: var(--font-body);
  color: var(--color-primary);
  max-width: 630px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button {
  background: var(--color-gold);
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 8px 22px;
  margin: 0 3px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 8px rgba(195,168,97,0.10);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #DCC793;
  color: var(--color-primary);
}
.cookie-banner .cookie-settings {
  background: none;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: var(--color-gold);
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.97rem;
    padding: 14px 8px 14px 10px;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 8px;
  }
}

/* ------------------
   COOKIE MODAL
   ------------------ */
.cookie-modal-overlay {
  position: fixed;
  z-index: 24000;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(35, 39, 42, 0.62);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s;
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius-m);
  padding: 40px 28px 24px 28px;
  box-shadow: 0 8px 48px rgba(35,39,42,0.16);
  min-width: 330px;
  max-width: 97vw;
  max-height: 87vh;
  overflow-y: auto;
  color: var(--color-primary);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 22px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.34rem;
  margin-bottom: 10px;
  color: var(--color-primary);
  font-family: var(--font-display);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}
.cookie-category label {
  flex: 1 1 0;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--color-primary);
  cursor: pointer;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--color-gold);
  width: 21px;
  height: 21px;
}
.cookie-category .cookie-essential {
  font-weight: bold;
  color: var(--color-gold);
  cursor: default;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 1.45rem;
  background: none;
  border: none;
  color: var(--color-secondary);
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 50%;
  transition: background var(--transition), color var(--transition);
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #F0F0ED;
  color: var(--color-gold);
}

@media (max-width: 500px) {
  .cookie-modal {
    min-width: 0;
    padding: 30px 6vw 18px 6vw;
  }
}

/* ===================
   FORM ELEMENTS
   (Contact/Newsletter etc.)
   =================== */
input[type="text"], input[type="email"], textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #DDDDD9;
  background: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: var(--radius-s);
  margin-bottom: 14px;
  color: var(--color-primary);
  transition: border var(--transition), box-shadow var(--transition);
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border: 1.5px solid var(--color-gold);
  box-shadow: 0 0 0 2px #F3E9C8;
}
label {
  display: block;
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 1rem;
  margin-bottom: 8px;
}

/* ===================
   UTILITY/HIERARCHY
   =================== */
.gold-text { color: var(--color-gold); }
.bg-gold { background: var(--color-gold); color: #fff; }
.bg-primary { background: var(--color-primary); color: #fff; }
.bg-beige { background: var(--color-beige); }
.text-secondary { color: var(--color-secondary); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 20px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 20px; }
.mb-5 { margin-bottom: 32px; }
.rounded { border-radius: var(--radius-s); }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-center { justify-content: center; align-items: center; }

/* ===================
   HOVER/ MICRO-INTERACTIONS
   =================== */
button, .cta, .cta.primary, .content-wrapper ul li, .card {
  transition: box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.cta:active, .cta.primary:active {
  background: #9F7A27;
  color: #fff;
  transform: scale(0.97);
}

/* ===================
   RESPONSIVENESS
   =================== */
@media (max-width: 1100px) {
  .container {
    max-width: 95vw;
  }
  footer .container, header .container {
    max-width: 98vw;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  h1 { margin-bottom: 18px; }
  .content-wrapper ul {
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .footer-brand img {
    height: 36px;
  }
  .footer-brand,
  .footer-contact,
  .footer-legal,
  footer nav {
    min-width: 160px;
  }
  .testimonial-card { padding: 18px 10px; }
}

/* ===================
   ACCESSIBILITY
   =================== */
@media (forced-colors: active) {
  .cta, .cta.primary {
    forced-color-adjust: auto;
  }
  .footer-brand p,
  .footer-contact, .footer-legal, .footer-legal a, footer nav a {
    color: WindowText !important;
  }
}

/* ===================
   SPECIAL CLASSES
   =================== */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 20px 18px 18px 18px;
}

/* ===================
   PAGE-LEVEL: THANK YOU/ERROR SUCCESS
   =================== */
.text-section ul {
  margin-top: 8px;
  padding-left: 14px;
  list-style: disc inside;
}
.text-section ul li {
  margin-bottom: 7px;
  color: var(--color-dark);
}

/*
  End of style.css
*/
