/* --- RESET & BASE --- */
html { box-sizing: border-box; font-size: 16px; }
*, *:before, *:after { box-sizing: inherit; margin: 0; padding: 0; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #232323;
  background: #F1FAEE;
  min-height: 100vh;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: #457B9D; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #c9ab62; }
ul, ol { margin-left: 1.5em; }
h1,h2,h3,h4,h5,h6 {
  font-family: 'Quicksand', 'Roboto', Arial, sans-serif;
  color: #1D3557;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.5rem; margin-bottom: 16px; }
h4 { font-size: 1.25rem; }
p { margin-bottom: 16px; }
strong { font-weight: 700; color: #1D3557; }

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(26, 30, 37, 0.06);
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.text-section {
  background: #fcfcfc;
  border-radius: 14px;
  box-shadow: 0 1px 4px 0 rgba(30, 30, 53, 0.03);
  padding: 18px 20px;
  margin-bottom: 20px;
}

/* --- LUXURY BRAND COLORS & GOLD ACCENTS --- */
:root {
  --brand-primary: #1D3557;
  --brand-secondary: #457B9D;
  --brand-accent: #F1FAEE;
  --brand-gold: #c9ab62;
  --brand-gold-dark: #a48943;
  --brand-white: #fff;
  --shadow-main: 0 3px 20px 0 rgba(29,53,87,0.06);
}

/* BUTTONS & CTA */
.cta-btn {
  background: var(--brand-primary);
  color: var(--brand-gold);
  font-family: 'Quicksand', 'Roboto', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 15px 34px;
  border: none;
  border-radius: 32px;
  box-shadow: 0 2px 8px 0 rgba(29,53,87,0.11);
  letter-spacing: 0.04em;
  margin-top: 16px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  outline: none;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--brand-gold);
  color: var(--brand-primary);
  box-shadow: 0 4px 16px 0 rgba(201, 171, 98, 0.17);
}

/* -- HEADER -- */
header {
  background: var(--brand-white);
  box-shadow: 0 2px 14px 0 rgba(29,53,87,0.08);
  position: relative;
  z-index: 40;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}
header img {
  max-height: 54px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-family: 'Quicksand', 'Roboto', sans-serif;
  font-weight: 500;
  color: var(--brand-primary);
  padding: 8px 10px;
  font-size: 1.08rem;
  border-radius: 10px;
  transition: color 0.18s, background 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--brand-gold);
  background: #F1FAEE;
}

/* Burger menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--brand-gold);
  margin-left: 12px;
  padding: 4px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.16s;
  z-index: 101;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #fdf7ef;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  width: 90vw;
  max-width: 390px;
  height: 100vh;
  background: var(--brand-white);
  box-shadow: -6px 0 32px 0 rgba(29,53,87,0.14);
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.7,0,0.3,1);
  z-index: 200;
  padding: 30px 26px 16px;
}
.mobile-menu.active {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--brand-primary);
  font-size: 2.1rem;
  cursor: pointer;
  padding: 2px 12px 12px 2px;
  align-self: flex-end;
  margin-bottom: 8px;
  border-radius: 7px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #f7f7fc;
  color: var(--brand-gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 18px;
}
.mobile-nav a {
  font-family: 'Quicksand', 'Roboto', sans-serif;
  color: var(--brand-primary);
  font-size: 1.15rem;
  padding: 14px 4px 14px 0;
  border-bottom: 1px solid #edecec;
  border-radius: 0;
  font-weight: 500;
  transition: color 0.16s, background 0.16s;
}
.mobile-nav a:active, .mobile-nav a:hover {
  background: #f1faee;
  color: var(--brand-gold);
}

@media (max-width: 1100px) {
  .container { max-width: 96vw; }
}
@media (max-width: 900px) {
  .main-nav { gap: 10px; }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 2px;
  }
  .main-nav,
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle { display: block; }
}

/* --- SECTION SPACING (MANDATORY PADDING) --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-main);
}
section:last-child { margin-bottom: 0; }
@media (max-width: 560px) {
  section { padding: 30px 8px; }
}

/* --- FLEX UTILITY CLASSES (MANDATORY) --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fcfcfc;
  border-radius: 16px;
  box-shadow: 0 1px 8px 0 rgba(30, 30, 44, 0.10);
  padding: 24px;
  min-width: 220px;
  flex: 1 1 300px;
  transition: box-shadow 0.20s, border 0.20s;
  border: 1.5px solid #ece9e1;
}
.card:hover, .card:focus-within {
  box-shadow: 0 5px 16px 0 rgba(201, 171, 98, 0.14);
  border-color: var(--brand-gold);
  z-index: 11;
}
.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: stretch; gap: 22px; }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 20px 24px;
  background: #f6f7fa;
  border-radius: 13px;
  margin-bottom: 20px;
  border: 1.5px solid #e5e5e5;
  box-shadow: 0 2px 12px 0 rgba(129,117,96,0.06);
  transition: box-shadow 0.20s;
}
.testimonial-card p {
  color: #232323;
  font-size: 1.09rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 4px;
}
.testimonial-card span {
  color: var(--brand-primary);
  font-size: 1rem;
  font-weight: 600;
}
.testimonial-card:hover {
  box-shadow: 0 4px 22px 0 rgba(201,171,98,0.08);
  border-color: var(--brand-gold);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

/* --- LISTS --- */
ul {
  list-style-type: disc;
  padding-left: 1.5em;
  margin-bottom: 18px;
}
ul li {
  margin-bottom: 13px;
}
ul li:last-child { margin-bottom: 0; }

/* --- ADDRESS --- */
address {
  font-style: normal;
  color: #31425b;
  font-size: 0.99rem;
  margin-bottom: 8px;
  line-height: 1.5;
}
address a {
  color: var(--brand-secondary);
}
address a:hover { color: var(--brand-gold); }

/* --- FOOTER --- */
footer {
  background: var(--brand-primary);
  color: var(--brand-accent);
  padding: 36px 0 0 0;
}
footer .container { padding-bottom: 0; }
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  border-top: 1.5px solid #264770;
  padding-top: 26px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 1rem;
}
.footer-nav a {
  color: var(--brand-accent);
  font-family: 'Quicksand', 'Roboto', sans-serif;
  font-weight: 500;
}
.footer-nav a:hover, .footer-nav a:focus { color: var(--brand-gold); }
.footer-brand { flex: 0 0 auto; }
.footer-brand img { height: 45px; width: auto; }
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* --- TYPOGRAPHY HIERARCHY --- */
h1 { font-size: 2.3rem; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.35rem; }
@media (max-width: 560px) {
  h1 { font-size: 1.5rem; margin-bottom: 12px; }
  h2 { font-size: 1.18rem; margin-bottom: 10px; }
  h3 { font-size: 0.99rem; margin-bottom: 8px; }
}

/* --- GOLDEN BRAND DETAILS --- */
h1, h2, h3, h4, .cta-btn, .footer-nav a, .main-nav a.active {
  text-shadow: 0 1px 0 rgba(201,171,98,0.02);
}
.cta-btn, .main-nav a.active, .footer-nav a.active {
  background: linear-gradient(92deg, var(--brand-gold) 80%, var(--brand-gold-dark) 100%);
  color: var(--brand-primary);
  box-shadow: 0 2px 8px 0 rgba(201,171,98,0.05);
  border: none;
}
.cta-btn {
  background: var(--brand-gold);
  color: var(--brand-primary);
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--brand-primary);
  color: var(--brand-gold);
  box-shadow: 0 3px 18px 0 rgba(29,53,87,0.13);
}

/* --- RESPONSIVE --- */
@media (max-width: 700px) {
  .container { padding: 0 5vw; }
  section { padding: 20px 6px; margin-bottom: 38px; }
}
@media (max-width: 480px) {
  .card-container { gap: 10px; }
  .content-grid { gap: 10px; }
}

/* --- FOCUS STATES & ACCESSIBILITY --- */
a:focus-visible, button:focus-visible, .cta-btn:focus-visible {
  outline: 2px solid var(--brand-gold);
  outline-offset: 1.5px;
  z-index: 10;
}

/* --- HOVER/TRANSITIONS --- */
a, .cta-btn, .main-nav a, .footer-nav a, .mobile-nav a, .card {
  transition: color 0.17s, background 0.19s, box-shadow 0.22s;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: var(--brand-primary);
  box-shadow: 0 -4px 28px 0 rgba(29,53,87,0.08);
  border-top: 2.5px solid var(--brand-gold);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  z-index: 9000;
  justify-content: space-between;
  padding: 23px 24px 19px 20px;
  animation: cookiefadein 0.7s cubic-bezier(.16,.66,.67,1.02);
}
@keyframes cookiefadein {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  font-size: 1.01rem;
  flex: 1 1 220px;
}
.cookie-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-btn, .cookie-btn-alt {
  border: none;
  border-radius: 27px;
  padding: 9px 22px;
  font-size: 1.03rem;
  cursor: pointer;
  background: var(--brand-gold);
  color: var(--brand-primary);
  font-family: 'Quicksand', 'Roboto', sans-serif;
  font-weight: 600;
  margin-right: 2px;
  box-shadow: 0 2px 12px 0 rgba(201,171,98,0.08);
  transition: background 0.2s, color 0.2s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--brand-primary);
  color: var(--brand-gold);
}
.cookie-btn-alt {
  background: #e7e9ee;
  color: var(--brand-primary);
  font-weight: 500;
}
.cookie-btn-alt:hover, .cookie-btn-alt:focus {
  background: var(--brand-secondary);
  color: #fff;
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 10000;
  background: rgba(42,52,97,0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookiemodalin 0.42s cubic-bezier(.52,.44,.63,1.1);
}
@keyframes cookiemodalin {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  box-shadow: 0 7px 32px 0 rgba(29,53,87,0.15);
  border-radius: 20px;
  padding: 40px 34px 28px 34px;
  max-width: 460px;
  width: 94vw;
  z-index: 10010;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 1.03rem;
  position: relative;
}
.cookie-modal h3 {
  font-family: 'Quicksand', 'Roboto', sans-serif;
  font-size: 1.33rem;
  color: var(--brand-primary);
  margin-bottom: 10px;
}
.cookie-category {
  margin-bottom: 18px;
  display: flex;
  gap: 15px;
  align-items: center;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--brand-gold);
  width: 19px; height: 19px;
}
.cookie-category label {
  font-size: 1.05rem;
  color: #1d3557;
  font-weight: 500;
}
.cookie-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 8px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 15px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--brand-gold);
  cursor: pointer;
}

/* --- MICROINTERACTIONS (CARDS, BUTTONS) --- */
.card, .testimonial-card {
  transition: box-shadow 0.18s, border 0.20s;
}
.card:focus-within, .card:hover {
  box-shadow: 0 4px 18px 0 rgba(201,171,98,0.11);
  border-color: var(--brand-gold);
}

/* --- FORMS (for possible future forms) --- */
input,
select,
textarea {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 8px;
  border: 1.5px solid #e6e2d6;
  padding: 12px 16px;
  background: #fff;
  color: #1d3557;
  transition: border-color 0.2s, box-shadow 0.18s;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px 0 rgba(180,162,110,0.05);
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand-gold);
  outline: none;
  box-shadow: 0 4px 12px 0 rgba(201,171,98,0.12);
}
label { color: #1d3557; font-weight: 600; margin-bottom: 8px; display:inline-block; }

/* --- ERROR & SUCCESS --- */
.error, .form-error {
  color: #ce2341;
  background: #fdedf0;
  border-radius: 7px;
  padding: 9px 12px;
  margin-bottom: 16px;
}
.success, .form-success {
  color: #095140;
  background: #eafeef;
  border-radius: 7px;
  padding: 9px 12px;
  margin-bottom: 16px;
}

/* --- Z-INDEX LAYERING FOR MENUS/MODALS --- */
header { z-index: 40; }
.mobile-menu { z-index: 200; }
.cookie-banner { z-index: 9000; }
.cookie-modal-overlay { z-index: 10000; }

/* --- HELPERS --- */
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

/* --- SCROLLBARS (optional, for luxury touch) --- */
::-webkit-scrollbar {
  width: 9px;
  background: #f4f2ec;
  border-radius: 9px;
}
::-webkit-scrollbar-thumb {
  background: var(--brand-gold);
  border-radius: 18px;
}

/* --- SELECTION COLOR --- */
::selection { background: #f7efda; color: #1D3557; }

/* --- PRINT STYLES --- */
@media print {
  header, .footer-nav, .cta-btn, .cookie-banner, .mobile-menu, .cookie-modal, .cookie-modal-overlay { display: none !important; }
  body { background: #fff; color: #232323; }
  section, .container { box-shadow: none !important; background: none !important; }
}

/* --- END --- */