/* RESET & BASE TYPOGRAPHY ------------------------------------------------- */
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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Nunito', Arial, Helvetica, sans-serif;
  color: #223037;
  background: #fafbfc;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  padding-left: 20px;
}
a {
  color: #295366;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover, a:focus {
  color: #e58319;
  text-decoration: underline;
}

/* BRAND COLOR VARIABLES ------------------------------------------------------ */
:root {
  --c-primary: #295366;
  --c-secondary: #ffffff;
  --c-background: #fbfcfd;
  --c-surface: #f6f7fa;
  --c-accent: #e58319;
  --c-accent-gold: #AD841D;
  --c-premium-gold: #BFA05A;
  --c-card: #ffffff;
  --c-muted: #5c6770;
  --c-border: #e2e6ea;
  --shadow-card: 0 4px 28px rgba(41, 83, 102, 0.10);
  --shadow-gold: 0 2px 8px rgba(189, 164, 68, 0.06);
}

/* TYPOGRAPHY ----------------------------------------------------------------- */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Merriweather', Georgia, serif;
  color: #295366;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 {
  font-size: 2.3rem;
  margin-bottom: 22px;
  color: #295366;
  letter-spacing: -0.01em;
}
h2 {
  font-size: 1.65rem;
  margin-bottom: 20px;
  color: #295366;
}
h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #295366;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #223037;
}
p {
  margin-bottom: 1.2em;
}
strong {
  font-weight: 700;
}

/* LUXURY DETAIL ACCENTS / MICRODETAILS --------------------------------------- */
hr {
  border: none;
  border-top: 1.5px solid var(--c-premium-gold);
  margin: 40px 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--c-card);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}

/* CONTAINER & CONTENT WRAPPER ------------------------------------------------ */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
}

/* HEADER & NAVBAR ------------------------------------------------------------ */
header {
  background: var(--c-secondary);
  box-shadow: 0 2px 14px rgba(41,83,102,0.04);
  z-index: 101;
}
.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 18px 0;
}
.desktop-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.desktop-nav a {
  font-family: 'Nunito', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--c-primary);
  padding: 4px 0;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
}
.desktop-nav a:hover,
.desktop-nav a:focus {
  color: var(--c-accent-gold);
  border-bottom: 2px solid var(--c-premium-gold);
  background: none;
}
.cta-button.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  margin-left: 32px;
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--c-premium-gold) 0%, var(--c-accent-gold) 80%, var(--c-accent) 100%);
  border: none;
  border-radius: 32px;
  box-shadow: 0 2px 8px rgba(173, 132, 29, 0.13);
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s, color 0.2s;
  text-shadow: 0 1px 2px rgba(41,83,102,0.12);
}
.cta-button.primary:hover, .cta-button.primary:focus {
  background: linear-gradient(90deg, var(--c-premium-gold) 15%, var(--c-accent) 100%);
  color: #fff5df;
  box-shadow: 0 4px 24px rgba(229, 131, 25, 0.12);
  transform: translateY(-1px) scale(1.025);
}

/* Hamburger for mobile navigation */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 30px;
  top: 26px;
  background: none;
  color: var(--c-accent);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 300;
  transition: color 0.2s, background 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--c-premium-gold);
}
/* MOBILE MENU OVERLAY --------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(112deg, #fff 85%, var(--c-premium-gold) 100%);
  box-shadow: 0 6px 45px rgba(41,83,102,0.20);
  z-index: 99;
  transform: translateX(100vw);
  transition: transform 0.3s cubic-bezier(.9,.03,.69,.98);
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 28px 24px 40px 32px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: initial;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--c-primary);
  font-size: 2.3rem;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 10px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 14px;
}
.mobile-nav a {
  font-family: 'Merriweather', Georgia, serif;
  color: var(--c-primary);
  font-size: 1.25rem;
  font-weight: 700;
  padding: 10px 0;
  transition: color 0.17s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--c-accent-gold);
}

@media (max-width: 1139px) {
  .desktop-nav {
    gap: 16px;
  }
  .cta-button.primary {
    margin-left: 16px;
    padding: 11px 20px;
    font-size: 0.97rem;
  }
}
@media (max-width: 900px) {
  .header-main { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (max-width: 870px) {
  .desktop-nav, .cta-button.primary { display: none !important; }
  .mobile-menu-toggle { display: block; }
  header { position: relative; }
}
/* STRUCTURE & SPACING -------------------------------------------------------- */
main {
  min-height: 60vh;
  margin-bottom: 52px;
  margin-top: 6px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--c-card);
  border-radius: 22px;
  box-shadow: var(--shadow-card), var(--shadow-gold);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--c-surface);
  box-shadow: var(--shadow-card);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.23s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 10px 40px rgba(173,132,29,0.10), 0 2px 12px rgba(41,83,102,0.07);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 24px;
  gap: 12px;
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-left: 6px solid var(--c-premium-gold);
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(41,83,102,0.06);
  margin-bottom: 20px;
  color: #223037;
  font-size: 1rem;
  line-height: 1.5;
  transition: box-shadow 0.2s, border-color 0.18s;
  min-width: 0;
}
.testimonial-card p {
  color: #223037;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 30px rgba(229, 131, 25, 0.10);
  border-left-color: var(--c-accent);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
/* CTA Banner */
.cta-banner {
  padding: 44px 0 48px 0;
  width: 100%;
  background: linear-gradient(90deg, var(--c-background) 80%, #FDF9ED 100%);
  box-shadow: 0 1px 16px rgba(229, 131, 25, 0.05);
  border-top: 2px solid var(--c-premium-gold);
  position:relative;
}
.cta-banner .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.cta-banner .content-wrapper {
  flex-direction: row;
  gap: 32px;
  width: 100%;
  justify-content: space-between;
}
.cta-banner .text-section {
  flex:1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cta-banner .cta-button.primary {
  align-self: flex-start;
  margin-top: 20px;
}
.callout {
  background: linear-gradient(91deg, #f9f9f9 85%, #fffbe9 100%);
  border: 1.8px solid var(--c-premium-gold);
  box-shadow: 0 2px 9px rgba(173,132,29,.05);
  border-radius: 22px;
  padding: 20px 36px 22px 36px;
  margin: 18px 0 40px 0;
}
/* Feature Grids & Service Tiles ---------------------------------------------- */
.feature-grid, .service-list, .faq-list, .article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  margin-bottom: 12px;
  list-style: none;
}
.feature-grid li, .service-list li, .faq-list li {
  background: var(--c-surface);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  flex: 1 1 260px;
  min-width: 230px;
  padding: 22px 18px 16px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.14s;
  border-left: 4px solid var(--c-premium-gold);
}
.feature-grid li:hover, .service-list li:hover {
  box-shadow: 0 9px 32px rgba(173,132,29,0.09);
  border-left-color: var(--c-accent);
}
.feature-grid img, .service-list img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.service-tiles {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.service-tiles > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 17px rgba(41,83,102,0.07);
  flex: 1 1 260px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  padding: 22px 20px 22px 22px;
  border-left: 4px solid var(--c-accent);
  position: relative;
  transition: box-shadow 0.17s, border-color 0.17s;
}
.service-tiles > div:hover {
  box-shadow: 0 7px 22px rgba(229, 131, 25, 0.11);
  border-left-color: var(--c-premium-gold);
}
.service-tiles h3 {
  font-family: 'Merriweather', serif;
  color: var(--c-primary);
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* Article and FAQ styling */
.article-list {
  flex-direction: row;
  gap: 28px;
}
.article-list article {
  background: #fff;
  padding: 22px 16px 20px 16px;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(41,83,102,0.07);
  min-width: 220px;
  flex: 1 1 250px;
}
.article-list h3 { margin-bottom: 8px; font-size: 1.13rem; }

.faq-list li {
  position: relative;
}
.faq-list strong {
  color: var(--c-primary);
}

/* Text sections -------------------------------------------------------------- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* HERO BANNER --------------------------------------------------------------- */
.hero {
  background: linear-gradient(81deg, #fff 80%, var(--c-secondary) 100%);
  padding: 58px 0 40px 0;
  border-bottom: 2px solid var(--c-premium-gold);
}
.hero h1 {
  font-size: 2.5rem;
}
.hero .cta-button.primary {
  margin-top: 20px;
}


/* FOOTER -------------------------------------------------------------------- */
footer {
  padding: 0 0 0 0;
  background: linear-gradient(90deg, #f2f5f9 85%, #fffbe9 100%);
  border-top: 2.5px solid var(--c-premium-gold);
  box-shadow: 0 -2px 16px rgba(41,83,102,0.04);
  font-size: 1rem;
  color: #295366;
}
.footer-main {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  padding: 36px 0 8px 0;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px 0;
}
.footer-nav a {
  color: #295366;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.18s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--c-premium-gold);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-contact img {
  width: 21px; display: inline; margin-right: 8px; vertical-align: middle;
}
.footer-contact a {
  color: #295366;
  margin-left: 4px;
  text-underline-offset: 2px;
  text-decoration: underline;
}
.footer-bottom {
  text-align: center;
  font-size: 0.98rem;
  color: #a59b8b;
  padding: 14px 0 10px 0;
  border-top: 1.5px solid #ece5d7;
}

/* BUTTONS ------------------------------------------------------------------- */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  border-radius: 32px;
  border: none;
  padding: 12px 32px;
  background: var(--c-accent-gold);
  color: #fff;
  cursor: pointer;
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
  box-shadow: 0 2px 12px rgba(229,131,25,0.11);
}
.cta-button:hover, .cta-button:focus {
  background: var(--c-premium-gold);
  color: #fff9ed;
  transform: scale(1.045);
  box-shadow: 0 4px 20px rgba(229, 131, 25, 0.13);
}

/* COOKIE BANNER & COOKIE MODAL ----------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 999;
  width: 100vw;
  background: rgba(255,255,255,0.97);
  border-top: 2.5px solid var(--c-premium-gold);
  box-shadow: 0 -4px 32px rgba(41,83,102,0.10);
  padding: 22px 24px 18px 24px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 26px;
  font-size: 1.05rem;
  animation: cookie-fadein 0.5s ease;
}
@keyframes cookie-fadein {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  margin: 0 24px 0 0;
  color: #223037;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  font-family: 'Nunito';
  padding: 7px 18px;
  font-size: 0.98rem;
  border-radius: 24px;
  border: none;
  box-shadow: 0 1px 6px rgba(41, 83, 102, 0.11);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.19s, color 0.16s;
}
.cookie-banner .cookie-accept {
  background: var(--c-accent-gold);
  color: #fff;
}
.cookie-banner .cookie-accept:hover,
.cookie-banner .cookie-accept:focus {
  background: var(--c-premium-gold);
}
.cookie-banner .cookie-reject {
  background: #fffef4;
  color: var(--c-primary);
  border: 1.6px solid var(--c-premium-gold);
}
.cookie-banner .cookie-reject:hover,
.cookie-banner .cookie-reject:focus {
  background: #f7f6ed;
  color: var(--c-premium-gold);
}
.cookie-banner .cookie-settings {
  background: #ffffff;
  color: var(--c-accent-gold);
  border: 1.2px solid var(--c-accent-gold);
}
.cookie-banner .cookie-settings:hover,
.cookie-banner .cookie-settings:focus {
  background: #f7f3e6;
  color: var(--c-premium-gold);
}

.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(30, 38, 42, 0.44);
  z-index: 2000;
  display: flex;
  align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-dialog {
  min-width: 320px;
  max-width: 98vw;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(41,83,102,0.15), 0 1px 12px #d4bc77;
  padding: 34px 34px 24px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: modal-popup-in 0.35s cubic-bezier(.9,.03,.69,.98)
}
@keyframes modal-popup-in {
  0% { opacity:0; transform: scale(0.95); }
  70% { opacity:1; transform: scale(1.04); }
  100% { opacity:1; transform: scale(1.0); }
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--c-primary);
  cursor: pointer;
}
.cookie-modal h3 {
  font-size: 1.2rem;
  color: var(--c-primary);
  margin-bottom: 10px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 9px 11px 2px;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--c-premium-gold);
  width: 19px; height: 19px;
}
.cookie-category .cookie-label {
  font-weight: 500;
  color: #223037;
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}
@media (max-width: 700px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 18px 12px; gap: 10px; }
  .cookie-banner p { margin: 0 0 10px 0; }
  .cookie-modal-dialog { min-width: 0; width: 98vw; padding: 24px 14px 16px 16px; }
}

/* INTERACTIVE STATES -------------------------------------------------------- */
button, .cta-button {
  outline: none;
}
button:focus-visible, .cta-button:focus-visible {
  outline: 2px solid var(--c-premium-gold);
  outline-offset: 2px;
}

/* MEDIA QUERIES & RESPONSIVENESS -------------------------------------------- */
@media (max-width: 1120px) {
  .container { max-width: 950px; }
  .section, .callout { padding: 32px 10px; }
}
@media (max-width: 900px) {
  .cta-banner .container, .cta-banner .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .cta-banner .cta-button.primary { align-self: stretch; width:100%; }
  .feature-grid, .service-list, .faq-list, .article-list {
    gap: 16px;
  }
}
@media (max-width: 700px) {
  .container { padding: 0 6px; }
  .section { padding: 22px 3px; border-radius: 12px; margin-bottom: 32px; }
  .hero { padding: 26px 0 19px 0; }
  .hero h1 { font-size: 1.45rem; }
  .footer-main { flex-direction: column; gap: 18px; }
  .service-tiles { gap: 10px; }
  .service-tiles > div { min-width: 120px; padding: 12px 8px 12px 12px; }
}
@media (max-width: 660px) {
  .feature-grid li, .service-list li, .article-list article {
    min-width: 130px; flex: 1 1 80vw; padding-left: 10px; padding-right: 7px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.22rem; }
  .section { padding: 8px 0; }
  .callout { padding: 8px 8px 10px 8px; }
  .cta-banner { padding: 18px 0 22px 0; }
  .footer-bottom { font-size: 0.88rem; }
  .testimonial-card { flex-direction: column; padding: 14px 7px; font-size: 0.97rem; }
}
@media (max-width: 768px) {
  .content-wrapper, .card-container, .content-grid,
  .feature-grid, .service-list, .faq-list, .article-list,
  .service-tiles, .footer-main, .footer-contact, .cta-banner .container {
    flex-direction: column !important;
    gap: 16px !important;
    align-items: stretch !important;
  }
  .text-image-section { flex-direction: column; align-items: stretch; gap: 18px; }
  .cta-banner .content-wrapper { flex-direction: column; }
}

/* UTILITIES ----------------------------------------------------------- */
.bg-premium {
  background: linear-gradient(99deg, #fff9e8 90%, #ffeccb 100%);
  border-radius: 12px;
  box-shadow: 0 2px 13px rgba(189,164,68,0.05);
}
.gold-accent {
  color: var(--c-premium-gold);
  font-weight: 700;
}
.rounded-lg { border-radius: 16px; }
.shadow-sm { box-shadow: 0 2px 9px rgba(173,132,29,0.04); }

/* Hide visually but keep accessible */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}

/* END */