/* =========================================================
   CSS Reset & Normalize - Minimal for luxury premium style 
========================================================= */
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,
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 {
  background: #fff;
  color: #1b1b1b;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}
a {
  color: #AB2A1B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #c29f42;
}
ul, ol {
  margin-left: 1.5em;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
strong {
  font-weight: 600;
}

/* =========================================================
   Luxury Premium Palette & Fonts (Brand + Gold accents) 
========================================================= */
:root {
  --color-primary: #354F32;
  --color-secondary: #EAD8C0;
  --color-accent: #AB2A1B;
  --color-gold: #c29f42;
  --color-premium-dark: #20371b;
  --color-premium-bg: #f7f2ea;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* =========================================================
   Typography (Hierarchy & Luxury details) 
========================================================= */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: #20371b;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 28px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #354F32;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, li, ul, ol, strong {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #222;
}
ul {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 0;
}
li {
  margin-bottom: 8px;
  line-height: 1.6;
  position: relative;
  padding-left: 0px;
}

/* Luxury list markers (Gold dots/images) */
.features ul li::before, .services ul li::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--color-gold);
  border-radius: 50%;
  margin-right: 12px;
  vertical-align: middle;
}
.features ul li img, .services ul li img {
  margin-right: 10px;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: inline-block;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(44,36,11,0.10);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  border: 1px solid #ece6dc;
  min-width: 275px;
  flex: 1 1 320px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 36px rgba(44,36,11,0.17);
  transform: translateY(-4px);
  border-color: var(--color-gold);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  background: #fdf8f1;
  border-radius: 8px;
  padding: 20px;
}

/* =========================================================
   Header & Navigation 
========================================================= */
header {
  background: #fff;
  border-bottom: 1px solid #ece6dc;
  box-shadow: 0 2px 8px rgba(44,36,11,0.04);
  position: relative;
  z-index: 1100;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  padding: 22px 0 14px 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.main-nav a {
  color: #354F32;
  letter-spacing: 0.01em;
  padding: 0 4px;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
  font-weight: 500;
}
.main-nav a img {
  width: 56px;
  height: auto;
  margin-right: 10px;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-gold);
  background: #F7F2EA;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2.1rem;
  color: var(--color-accent);
  position: absolute;
  right: 28px;
  top: 20px;
  z-index: 1201;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-toggle:hover {
  color: var(--color-gold);
}

@media (max-width: 1000px) {
  .main-nav {
    gap: 18px;
    font-size: 1rem;
  }
}
@media (max-width: 860px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ---------- MOBILE MENU ------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32, 33, 34, 0.93);
  box-shadow: -8px 0 32px rgba(0,0,0,0.12);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.77,0,0.175,1);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0%);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  margin: 30px 36px 12px 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 4000;
}
.mobile-menu-close:hover {
  color: var(--color-gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 36px;
  margin-top: 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  padding: 12px 10px;
  border-radius: 6px;
  background: transparent;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: #fff0ca;
}

/* === Hide Scroll when mobile menu is open === */
body.mobile-menu-open {
  overflow: hidden;
  height: 100vh;
}

/* =========================================================
   Hero, About, Services, Features, etc.   
========================================================= */
.hero {
  background: linear-gradient(110deg, #ece6dc 45%, #ffffff 100%);
  padding: 64px 0 48px 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 640px;
  background: rgba(255,255,255,0.95);
  padding: 32px 24px 32px 32px;
  border-radius: 20px 40px 22px 40px;
  box-shadow: 0 2px 32px rgba(44,36,11,0.06);
  border-left: 6px solid var(--color-gold);
  gap: 16px;
}
.hero h1 {
  color: var(--color-premium-dark);
  font-size: 2.6rem;
  font-weight: 900;
}
.hero p {
  color: #373426;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

/* Features, About, Services - Section Blocks */
.features, .services, .about, .privacy, .gdpr, .cookie-policy, .contact-info, .terms, .thankyou {
  background: #faf6f0;
  padding: 52px 0;
  border-bottom: 1px solid #f3e4ce;
}
.features h2, .services h2, .about h2 { color: var(--color-primary); }

.features ul, .services ul, .about ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-left: 0;
  padding-left: 0;
}
.features li, .services li, .about li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(200,180,120,0.08);
  padding: 18px 18px 18px 16px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  border-left: 3px solid var(--color-gold);
  margin-bottom: 0;
  font-weight: 500;
}

@media (max-width: 650px) {
  .features li, .services li, .about li {
    font-size: 0.96rem;
    padding: 14px 8px 14px 10px;
  }
}

/* =========================================================
   Call To Action Buttons (Luxury + Gold/Hover) 
========================================================= */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 38px;
  border-radius: 27px;
  font-size: 1.15rem;
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 2px 12px rgba(44,36,11,0.13);
  cursor: pointer;
  letter-spacing: 0.015em;
  transition: background 0.18s, color 0.17s, box-shadow 0.21s, transform 0.19s;
  text-shadow: 0 1px 10px rgba(50,39,10,0.04);
}
.cta.primary {
  background: linear-gradient(90deg, var(--color-gold) 20%, var(--color-primary) 100%);
  color: #fff;
}
.cta.secondary {
  background: #faf5e6;
  color: var(--color-primary);
  border: 2px solid var(--color-gold);
}
.cta:hover, .cta:focus {
  background: var(--color-gold);
  color: #fff;
  box-shadow: 0 4px 24px rgba(195,170,60,0.18);
  transform: translateY(-1px) scale(1.04);
}

/* =========================================================
   Testimonials (Distinct Gold/White Cards)
========================================================= */
.testimonials {
  background: #fff;
}
.testimonials .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  min-width: 320px;
  margin-bottom: 20px;
  background: #faf6ef;
  border-radius: 14px;
  border-left: 6px solid var(--color-gold);
  box-shadow: 0 2px 14px rgba(195,170,60,0.09);
  color: #1b1b1b;
  font-size: 1.08rem;
  font-family: var(--font-display);
  transition: box-shadow 0.19s, border-color 0.17s;
}
.testimonial-card:hover {
  border-left: 6px solid var(--color-accent);
  box-shadow: 0 4px 32px rgba(170,42,27,0.10);
}
.testimonial-card span {
  display: block;
  margin-top: 10px;
  font-size: 1rem;
  color: var(--color-primary);
  font-style: italic;
  font-family: var(--font-body);
}
.star-rating {
  font-size: 1.18rem;
  color: var(--color-gold);
  margin-left: 22px;
  letter-spacing: 0.04em;
  font-family: var(--font-body);
}

/* Ensure readability on all backgrounds */
.testimonial-card p {
  color: #1c1c1c;
  font-size: 1.04rem;
  line-height: 1.6;
  font-family: var(--font-body);
}

/* =========================================================
   Footer (Luxurious, Clean, Legible)
========================================================= */
footer {
  background: #162511;
  color: #ede3d2;
  font-family: var(--font-body);
  padding: 36px 0 0 0;
  border-top: 2px solid var(--color-gold);
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 34px;
}
footer img {
  width: 56px;
  height: auto;
  margin-right: 18px;
}
footer .text-section {
  font-size: 1rem;
  color: #f8f5ef;
  margin-right: 28px;
  min-width: 190px;
}
footer .text-section p{
  color: white;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  color: #d0c8b8;
  font-size: 0.94rem;
}
.footer-nav a {
  color: #e0d6c8;
  transition: color 0.18s;
  font-family: var(--font-display);
  font-weight: 500;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-gold);
}
@media (max-width: 850px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 16px;
  }
  footer .container {
    flex-direction: column;
    gap: 0;
  }
}

/* =========================================================
   Other Content Sections
========================================================= */
.privacy, .gdpr, .cookie-policy, .terms, .thankyou, .contact-info {
  background: #f7f2ea;
}
.privacy h1, .gdpr h1, .cookie-policy h1, .terms h1, .thankyou h1, .contact-info h2 {
  color: var(--color-primary);
}

.contact-info .text-section {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(200,180,120,0.10);
  padding: 24px 20px;
}
.contact-info h3 {
  color: var(--color-accent);
  margin-top: 20px;
  font-family: var(--font-display);
}
.contact-info a {
  color: var(--color-accent);
  text-decoration: underline;
}

/************
 Spacing rules
************/
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .content-grid {
  gap: 20px;
}
.card {
  margin-bottom: 20px;
}
.text-image-section {
  gap: 30px;
}
.testimonial-card {
  gap: 20px;
  padding: 20px;
}
.feature-item {
  gap: 15px;
}

/************
 Responsive Design
************/
@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 98vw;
    padding: 0 4px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item {
    min-width: 0;
    padding: 16px;
  }
  .hero {
    padding: 40px 0 24px 0;
  }
  .hero .content-wrapper {
    padding: 22px 10px 22px 12px;
    border-radius: 18px;
  }
  .section {
    margin-bottom: 30px;
    padding: 24px 8px;
  }
}

/************
 Animations & Hover Effects
************/
.card, .testimonial-card, .footer-nav a, .cta, .main-nav a, .mobile-nav a {
  transition: box-shadow 0.21s, border-color 0.18s, background 0.22s, color 0.17s, transform 0.18s;
}
.cta:active, .main-nav a:active, .mobile-nav a:active {
  transform: scale(0.96);
}

/**************
   Scrollbar Styling (premium)
**************/
html {
  scrollbar-width: thin;
  scrollbar-color: var(--color-gold) #eee6d8;
}
::-webkit-scrollbar {
  width: 11px;
  background: #eee6d8;
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 8px;
  border: 2px solid #EAD8C0;
}

/**************
  Cookie Consent Banner
**************/
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: rgba(252,249,242, 0.98);
  border-top: 2.5px solid var(--color-gold);
  box-shadow: 0 -2px 28px rgba(44,36,11,0.08);
  z-index: 3200;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 22px 14px;
  font-size: 0.98rem;
  font-family: var(--font-body);
  color: #222;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(0.44,0.13,0,1), opacity 0.21s;
}
.cookie-consent-banner.hide {
  transform: translateY(150%);
  opacity: 0;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-consent-banner button {
  border: none;
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 10px 24px;
  border-radius: 23px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 0.5px 6px rgba(44,36,11,0.04);
  margin-right: 4px;
  transition: background 0.19s, color 0.18s, box-shadow 0.19s;
}
.cookie-consent-banner .accept {
  background: var(--color-gold);
  color: #262305;
}
.cookie-consent-banner .reject {
  background: #ede6d2;
  color: var(--color-accent);
  border: 1px solid #dbc693;
}
.cookie-consent-banner .settings {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-gold);
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  opacity: 0.89;
  color: #fff;
  background: var(--color-accent);
  border: 1px solid var(--color-accent);
}

/**************
  Cookie Modal / Preferences
**************/
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,30,5,0.45);
  z-index: 3350;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 17px;
  min-width: 92vw;
  max-width: 420px;
  padding: 34px 28px 16px 28px;
  box-shadow: 0 6px 66px rgba(44,36,11,0.19);
  border: 2px solid var(--color-gold);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: modalIn 0.35s cubic-bezier(0.7,0,0.175,1);
}
@keyframes modalIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  color: var(--color-accent);
  margin-bottom: 8px;
}
.cookie-category-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.cookie-modal .toggle {
  margin-left: 2px;
  width: 44px;
  height: 24px;
  background: #fbdca1;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  outline: none;
  appearance: none;
  border: 1.5px solid #e2c372;
  transition: background 0.20s;
}
.cookie-modal .toggle:checked {
  background: var(--color-gold);
  border-color: #ab8932;
}
.cookie-modal .toggle:before {
  content: '';
  display: block;
  width: 19px;
  height: 19px;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 1px 6px #ddb93b23;
  position: absolute;
  left: 2px; top: 1.7px;
  transition: left 0.22s;
}
.cookie-modal .toggle:checked:before {
  left: 21.2px;
}
.cookie-modal .info {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #645b45;
}
.cookie-modal .actions {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--color-accent);
  cursor: pointer;
}
.cookie-modal .cookie-modal-close:hover {
  color: var(--color-gold);
}

/**************
  Accessibility Focus Outline
**************/
:focus {
  outline: 2px solid var(--color-gold);
  outline-offset: 1px;
}

/**************
  Utility Classes
**************/
.d-none { display: none; }
.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }
.premium-divider {
   border: none;
   border-top: 1px solid var(--color-gold);
   margin: 30px 0;
}

/**************
  Print friendly fixes
**************/
@media print {
  header, nav, .mobile-menu, .cta, .cookie-consent-banner, .footer-nav {
    display: none !important;
  }
}
