/* 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, 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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
body {
  line-height: 1.6;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #FAFAFA;
  color: #202021;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: inherit;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* FONT IMPORT (Google Fonts) */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

:root {
  --color-primary: #13374C;
  --color-secondary: #DBB7BC;
  --color-accent: #FFFFFF;
  --color-background-dark: #101820;
  --color-grey: #F5F5F5;
  --color-gold: #D4AF37;
  --color-text-dark: #202021;
  --color-text-light: #F7F6F2;

  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* === LUXURY PREMIUM BASE STYLES === */
body {
  background: var(--color-grey);
  color: var(--color-text-dark);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
}
h1 {
  font-size: 2.5rem;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
p, li {
  font-size: 1rem;
}
strong {
  font-weight: 700;
  color: var(--color-primary);
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}

/* SECTION SPACING per requirements */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: 20px;
  box-shadow: 0 4px 32px 0 rgba(19, 55, 76, 0.07);
  position: relative;
  transition: box-shadow 0.25s;
}
section:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  section {
    padding: 24px 7px 26px 7px;
    margin-bottom: 36px;
  }
}

/* CONTENT WRAPPER FLEX */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 900px) {
  .content-wrapper {
    gap: 32px;
  }
}

/* FLEX LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--color-accent);
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(19, 55, 76, 0.08);
  border: 1.5px solid #ede9e0;
  padding: 28px 28px 24px 28px;
  min-width: 270px;
  max-width: 300px;
  flex: 1 1 270px;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.card:hover {
  box-shadow: 0 10px 36px 0 rgba(212,175,55,0.12);
  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;
    gap: 20px;
    align-items: flex-start;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: #FCF8F2;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 rgba(19, 55, 76, 0.07);
  border-left: 4px solid var(--color-gold);
  color: #1b232a;
  font-size: 1.06rem;
  max-width: 510px;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px 0 rgba(212,175,55,0.10);
  border-left: 4px solid var(--color-primary);
}
.testimonial-card p {
  color: #1b232a;
}
.testimonial-card span {
  color: var(--color-gold);
  font-size: 0.99rem;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  font-weight: 700;
}

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

/* SPECIAL CLASSES/PLACEHOLDERS */
.newsletter-signup-placeholder {
  background: #fcf5eb;
  padding: 25px 28px;
  border-radius: 15px;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.13rem;
  margin-top: 20px;
  box-shadow: 0 2px 8px 0 rgba(212,175,55,0.08);
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
}

/*=== BUTTONS ===*/
.cta-primary {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 1.13rem;
  font-weight: 700;
  border: none;
  border-radius: 32px;
  padding: 14px 36px;
  box-shadow: 0 2px 16px 0 rgba(19, 55, 76, 0.14);
  letter-spacing: 0.045em;
  cursor: pointer;
  margin-top: 16px;
  margin-bottom: 8px;
  transition: background 0.18s, color 0.18s, box-shadow 0.22s;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--color-gold);
  color: var(--color-primary);
  box-shadow: 0 4px 30px 0 rgba(212,175,55,0.18);
}
.cta-link {
  display: inline-block;
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.16s, border-color 0.16s;
}
.cta-link:hover, .cta-link:focus {
  color: var(--color-gold);
  border-bottom-color: var(--color-primary);
}

/* === HEADER & NAVIGATION === */
header {
  width: 100%;
  background: var(--color-accent);
  border-bottom: 1.5px solid #d6d6d6;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px 0 rgba(212,175,55,0.06);
}
header nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  min-height: 60px;
  padding: 4px 0;
}
header nav a {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.07rem;
  position: relative;
  padding: 8px 12px;
  border-radius: 14px;
  transition: color 0.15s, background 0.15s;
}
header nav a:hover, header nav a:focus {
  color: var(--color-gold);
  background: #f7f2e5;
}
header nav img {
  height: 34px;
  width: auto;
  display: block;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-primary);
  cursor: pointer;
  margin-left: auto;
  padding: 5px 16px;
  z-index: 110;
  transition: color 0.16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: var(--color-gold);
}

@media (max-width: 1020px) {
  header nav {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  header nav {
    gap: 6px;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ==== MOBILE MENU ==== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(19,55,76, 0.85);
  backdrop-filter: blur(2.5px);
  transform: translateX(-100vw);
  pointer-events: none;
  opacity: 0;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transition: transform 0.40s cubic-bezier(.46,.03,.52,.96), opacity 0.28s;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-gold);
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 28px 22px 18px 0;
  cursor: pointer;
  z-index: 1202;
  transition: color 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff3d4;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  margin: 24px 32px;
}
.mobile-nav a {
  font-family: var(--font-display);
  color: #fff;
  font-weight: 600;
  font-size: 1.18rem;
  background: none;
  border-radius: 12px;
  padding: 10px 14px;
  transition: color 0.14s, background 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-gold);
  background: rgba(255,255,255,0.08);
}
@media (min-width: 769px) {
  .mobile-menu { display:none !important; }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--color-primary);
  color: var(--color-gold);
  box-shadow: 0 -4px 36px 0 rgba(19,55,76,0.16);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 18px 22px 18px;
  z-index: 1300;
  animation: cookieBannerAppear 0.7s cubic-bezier(.64,.04,.36,1.04);
  font-size: 1.01rem;
  letter-spacing: 0.003em;
}
@keyframes cookieBannerAppear {
  0% { transform: translateY(120%); opacity: 0; }
  50% { opacity: 0.7; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-text {
  margin-bottom: 16px;
  color: var(--color-gold);
  max-width: 900px;
  text-align: center;
}
.cookie-banner-buttons {
  display: flex;
  gap: 15px;
}
.cookie-btn {
  background: var(--color-gold);
  color: var(--color-primary);
  border: none;
  border-radius: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 28px;
  margin-top: 2px;
  cursor: pointer;
  box-shadow: 0 2px 9px 0 rgba(19,55,76,0.13);
  transition: background 0.16s, color 0.15s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #fff3d4;
  color: var(--color-primary);
}
.cookie-btn.settings {
  background: none;
  color: var(--color-gold);
  border: 1.5px solid var(--color-gold);
  padding: 10px 20px;
}
.cookie-btn.settings:hover {
  background: var(--color-primary);
  color: #fff;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  bottom: 60px; left: 50%;
  transform: translateX(-50%) scale(0.84);
  min-width: 330px;
  max-width: 95vw;
  background: #fcf8f1;
  color: var(--color-primary);
  border-radius: 22px;
  box-shadow: 0 6px 32px 0 rgba(212,175,55,0.17);
  z-index: 1400;
  padding: 28px 28px 20px 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s, transform 0.23s;
  font-family: var(--font-body);
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scale(1);
}
.cookie-modal-header {
  font-family: var(--font-display);
  font-size: 1.23rem;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--color-primary);
}
.cookie-modal-close {
  background: none;
  border: none;
  color: var(--color-gold);
  font-size: 1.8rem;
  position: absolute;
  top: 12px; right: 18px;
  cursor: pointer;
  z-index: 1410;
  transition: color 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #bda116;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 14px;
  margin-top: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
}
.cookie-category label {
  font-weight: 600;
  color: var(--color-primary);
}
.cookie-toggle {
  width: 38px;
  height: 20px;
  border-radius: 20px;
  background: #ede3d4;
  position: relative;
  transition: background 0.18s;
  margin-left: 10px;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle-slider {
  position: absolute;
  top: 2px; left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-primary);
  transition: left 0.17s, background 0.18s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  left: 20px;
  background: var(--color-gold);
}
.cookie-category.essential label {
  opacity: 0.65;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* ==== FOOTER ==== */
footer {
  margin-top: 68px;
  padding-top: 34px;
  padding-bottom: 32px;
  background: var(--color-accent);
  border-top: 1.5px solid #d6d6d6;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-bottom: 20px;
}
footer nav a {
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  border-bottom: 1px solid var(--color-gold);
  transition: color 0.14s, border-color 0.13s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--color-gold);
  border-bottom: 2px solid var(--color-primary);
}
footer p {
  font-size: 0.99rem;
  color: #626061;
  max-width: 850px;
}

/* == TEXT HIERARCHY == */
h1, .main-title { margin-top: 0; margin-bottom: 24px; }
h2 { margin-top: 12px; margin-bottom: 16px; }
h3 { margin-bottom: 10px; }
p, ul, ol { margin-bottom: 12px; }
ul li, ol li {
  margin-bottom: 13px;
  line-height: 1.7;
}

/* == RESPONSIVE TYPOGRAPHY & LAYOUT == */
@media (max-width: 768px) {
  h1 { font-size: 1.63rem; }
  h2 { font-size: 1.25rem; }
  .container { padding: 0 8px; }
  .testimonial-card { padding: 16px 10px; }
  .newsletter-signup-placeholder { padding: 15px 7px; }
}
@media (max-width: 460px) {
  .footer nav { flex-direction: column; gap: 3px; }
}

/* === LUXURY ACCENTS & DETAILS === */
hr {
  border: none;
  border-top: 1.5px solid var(--color-gold);
  max-width: 140px;
  margin: 28px 0;
}

/* === MICRO-INTERACTIONS === */
a, button, .cta-primary, .cookie-btn, .cta-link, .mobile-nav a {
  transition: background 0.18s, color 0.18s, border-color 0.16s, box-shadow 0.16s, transform 0.15s;
}
a:active, button:active, .cta-primary:active, .cookie-btn:active, .mobile-nav a:active {
  transform: translateY(1px) scale(0.97);
}
ul li strong, ol li strong {
  color: var(--color-gold);
}

/* == FINE PRINT, SMALL TEXT == */
.small, .fine-print {
  font-size: 0.94rem;
  color: #827c7c;
}

/* == GENERIC UTILITIES == */
.sr-only {
  position: absolute;
  left: -10000px;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* === FOCUS STATES, FOR ACCESSIBILITY === */
:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

/* === CUSTOM SCROLLBARS FOR LUXURY FEEL === */
::-webkit-scrollbar { width: 12px; background: #f7f6f2; }
::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 8px;
  border: 3px solid #fff5ed;
}

/* === PAGING OVERLAPS & STACKING === */
@media (max-width: 650px) {
  .card, .testimonial-card { min-width: 95vw; max-width: 99vw; }
  .container { max-width: 100vw; }
}

/* === ANIMATIONS === */
.card, .testimonial-card {
  animation: fadeInCard 0.5s ease both;
}
@keyframes fadeInCard {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width:650px) {
  .card, .testimonial-card { border-radius: 8px; }
}

/* == ADDRESS & CONTACT == */
.text-section a {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.15s;
}
.text-section a:hover, .text-section a:focus { color: var(--color-gold); }

/* == SPACING ENFORCEMENT FOR WRAPPERS == */
section > .container > .content-wrapper > * + * {
  margin-top: 16px;
}

/* == SPECIAL DECOR FOR GOLD LINES OR GAPS == */
.gold-line {
  width: 1.5em;
  border-bottom: 3px solid var(--color-gold);
  margin: 1.4em 0;
}

/* ==================*/
/* END STYLE.CSS FILE */
