/* 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;
}

html { font-size: 16px; }
body { line-height: 1; }

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  background-color: #faf9f5;
  color: #191919;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  min-height: 100vh;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* BRAND FONTS & COLORS */
:root {
  --primary: #155D27;
  --secondary: #ffffff;
  --accent: #22706B;
  --background: #faf9f5;
  --border: #e6e2d9;
  --text: #1b1b1e;
  --gold: #c3a269;
  --premium-dark: #23231d;
  --card-bg: #fff;
  --shadow: 0 2px 24px 0 rgba(44,35,13,0.06);
}

@media (max-width: 768px) {
  html { font-size: 15px; }
}
@media (max-width: 480px) {
  html { font-size: 14px; }
}

/* UTILITY CLASSES */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border-radius: 18px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 26px 24px;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 4px 32px 0 rgba(44,35,13,0.12);
  border-color: var(--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) {
  .content-grid,
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: #f6f1e6;
  border-left: 4px solid var(--gold);
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
  color: #23231d;
  max-width: 420px;
}
.testimonial-card p {
  font-size: 1.06rem;
  font-style: italic;
  line-height: 1.6;
}
.testimonial-card strong {
  color: var(--primary);
}

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

/* HEADER & NAVIGATION */
header {
  background: var(--secondary);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 24px 0 rgba(44,35,13,0.04);
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 12px;
  padding-bottom: 12px;
}
header a img {
  height: 38px;
  width: auto;
  display: block;
}
header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
header nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.015em;
  color: var(--primary);
  text-decoration: none;
  padding: 4px 0 4px 0;
  position: relative;
  transition: color 0.18s;
}
header nav a:hover, header nav a:focus {
  color: var(--gold);
}
header .cta.primary {
  margin-left: 16px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(90deg, #f8f5eb 70%, #fffbe9 100%);
  border-bottom: 1px solid var(--border);
  padding-top: 52px;
  padding-bottom: 52px;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}
.hero .content-wrapper {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  background: rgba(255,255,255,0.85);
  padding: 38px 36px; 
  border-radius: 22px;
  box-shadow: 0 12px 56px 0 rgba(44,35,13,0.07);
}
.hero h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  text-shadow: 0 1px 0 #f6ead6;
  line-height: 1.12;
  letter-spacing: 0.017em;
}
.hero p {
  font-size: 1.18rem;
  color: #23231d;
  margin-bottom: 0;
  line-height: 1.6;
  font-weight: 400;
}
.hero .cta.primary {
  margin-top: 12px;
}

@media (max-width: 768px) {
  .hero .container {
    padding: 0;
  }
  .hero .content-wrapper {
    padding: 22px 13px;
    gap: 18px;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }
h5 { font-size: 1.08rem; }
h6 { font-size: 1rem; }
p, li, ul, ol, span, a, blockquote {
  font-size: 1rem;
  color: var(--text);
}
p {
  margin-bottom: 14px;
}
ul, ol {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 28px;
}
ul li, ol li {
  margin-bottom: 10px;
  padding-left: 0;
  position: relative;
}
ul li img {
  vertical-align: middle;
  height: 26px;
  width: 26px;
  margin-right: 12px;
  margin-bottom: 2px;
}
ul li strong {
  color: var(--accent);
}
a {
  color: var(--accent);
  text-decoration: underline;
  transition: color 0.14s;
}
a:hover, a:focus {
  color: var(--gold);
}
.text-section {
  max-width: 700px;
}

/* BUTTONS & CTA */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: var(--primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 27px;
  padding: 13px 36px;
  box-shadow: 0 4px 20px 0 rgba(21,93,39,0.08);
  margin-top: 12px;
  cursor: pointer;
  transition: 
    background 0.18s,
    color 0.18s,
    box-shadow 0.22s;
  text-decoration: none;
  outline: none;
  letter-spacing: 0.02em;
}
.cta.primary {
  background: linear-gradient(90deg, var(--primary) 85%, var(--accent) 100%);
  color: #fff;
  border: 1.5px solid var(--gold);
  box-shadow: 0 4px 16px 0 rgba(195,162,105,0.12);
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--gold);
  color: var(--primary);
  box-shadow: 0 6px 28px 0 rgba(21,93,39,0.18);
}
.cta.secondary {
  background: var(--gold);
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--primary);
  color: #fff;
  border-color: var(--gold);
}

/* Footer */
footer {
  background: var(--premium-dark);
  color: #fff;
  padding: 36px 0 24px 0;
  border-top: 1.5px solid var(--gold);
  font-size: 0.98rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}
footer nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
footer nav a {
  color: #ece6cb;
  text-decoration: none;
  position: relative;
  transition: color 0.18s;
  padding-bottom: 1px;
}
footer nav a:hover, footer nav a:focus {
  color: var(--gold);
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-branding img {
  height: 34px;
  width: auto;
}
@media (max-width: 600px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .footer-branding {
    margin-top: 14px;
  }
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
  background: var(--gold);
  color: var(--premium-dark);
  border: none;
  font-size: 2.1rem;
  border-radius: 9px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  right: 18px;
  top: 16px;
  z-index: 35;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--primary);
  color: #fff;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33,31,17,0.96);
  z-index: 200;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.57,.25,.36,1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--gold);
  font-size: 2.3rem;
  border: none;
  padding: 15px 24px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #fff5cc;
  background: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 23px;
  width: 100%;
  padding: 32px 40px 40px 40px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  padding: 8px 0;
  border-left: 4px solid transparent;
  transition: color 0.19s, border-color 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--gold);
  border-left: 4px solid var(--gold);
}
@media (max-width:1080px) {
  header nav, header .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Show mobile menu on open (using .open class via JS) */

/* MAIN & CONTENT ALIGNMENT */
main {
  background: none;
  min-height: 440px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: none;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .content-wrapper {
    gap: 14px;
    margin-bottom: 14px;
  }
}

/* ICONS IN LISTS */
ul li img {
  filter: drop-shadow(0 1px 0 #ddd5be);
}

/* CARD LAYOUTS FOR FEATURE/CONTENT */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
@media (max-width: 992px) {
  .card-grid {
    gap: 20px;
  }
}
@media (max-width: 640px) {
  .card-grid {
    flex-direction: column;
    gap: 14px;
  }
}

/* Cookie Consent Banner */
.cookie-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: rgba(35,35,29,0.98);
  color: #fff;
  padding: 20px 16px 20px 28px;
  box-shadow: 0 -2px 24px 0 rgba(0,0,0,0.09);
  z-index: 450;
  font-size: 1rem;
  transition: transform 0.3s, opacity 0.3s;
  will-change: transform,opacity;
}
.cookie-banner.hide {
  transform: translateY(130%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 1;
  color: #fffbe0;
  font-size: 1rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 18px;
  border: none;
  margin: 0;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.07);
  transition: background 0.17s, color 0.16s;
}
.cookie-banner .accept {
  background: var(--gold);
  color: var(--primary);
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-banner .reject {
  background: var(--premium-dark);
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus {
  background: var(--gold);
  color: var(--primary);
}
.cookie-banner .settings {
  background: var(--accent);
  color: #fff;
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  background: var(--gold);
  color: var(--primary);
}

/* Cookie Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(33,32,24,0.95);
  z-index: 500;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.32s cubic-bezier(.47,0,.74,1);
}
.cookie-modal-overlay.show {
  display: flex;
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% {opacity: 1;}
}
.cookie-modal {
  background: #fffdf5;
  border-radius: 22px;
  box-shadow: 0 4px 36px 0 rgba(44,35,13,0.16);
  padding: 38px 30px 30px 30px;
  min-width: 330px; max-width: 95vw;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 23px;
  position: relative;
  max-width: 410px;
}
.cookie-modal h3 {
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 1.22rem;
  font-weight: 700;
}
.cookie-modal ul {
  padding-left: 18px;
}
.cookie-modal li {
  margin-bottom: 11px;
  font-size: 0.98rem;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 6px;
  font-size: 1rem;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--primary);
}
.cookie-modal .close-modal {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--accent);
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal .close-modal:hover { color: var(--gold); }
.cookie-modal .modal-actions {
  display: flex;
  gap: 11px;
  margin-top: 9px;
}
.cookie-modal .cta {
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 15px;
}

/* Cookie banner/mobile adjustments */
@media (max-width: 480px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 7px 20px 10px;
    gap: 11px;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-actions {
    width: 100%;
    gap: 10px;
  }
  .cookie-modal {
    padding: 19px 5vw 22px 5vw;
    min-width: 0;
    max-width: 100vw;
  }
}

/* GOLD ACCENTS AND REFINED DETAILS */
hr, .divider {
  border: none;
  border-bottom: 1.5px solid var(--gold);
  height: 1.5px;
  margin: 24px 0;
  background: none;
}

/* SPACING & WHITE SPACE */
.section,
main .section {
  background: none;
}
.section h2 {
  margin-bottom: 16px;
  color: var(--primary);
  font-weight: 700;
}
@media (max-width:520px){
  .section,
  main .section { padding: 20px 4px; }
}

/* SHADOWS & ROUNDED CORNERS */
.card,
.testimonial-card,
.hero .content-wrapper,
.cookie-modal {
  border-radius: 20px;
  box-shadow: 0 2px 32px 0 rgba(21,93,39,0.07);
}

/* MICRO-INTERACTIONS */
button, .cta, a {
  transition: color 0.21s, background 0.18s, box-shadow 0.18s;
}
button:active, .cta:active {
  transform: translateY(1.5px) scale(0.98);
}

/* FORM ELEMENTS (if present in modal/future) */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  background: #f8f5ef;
  border: 1.4px solid var(--border);
  color: var(--primary);
  border-radius: 7px;
  padding: 11px 14px;
  margin-bottom: 12px;
  transition: border-color 0.13s, box-shadow 0.13s;
  box-shadow: none;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
  box-shadow: 0 4px 12px 0 rgba(195,162,105,0.09);
}

/* ACCESSIBILITY */
:focus {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ADDITIONAL LUXURY DETAILS */
.section h2::after {
  content: '';
  display: block;
  margin-top: 7px;
  width: 38px;
  height: 3px;
  border-radius: 2px;
  background: var(--gold);
}
.cta.primary::after {
  content: '\2192';
  margin-left: 10px;
  color: var(--gold);
  transition: color 0.22s;
}
.cta.primary:hover::after, .cta.primary:focus::after {
  color: var(--primary);
}

/* RESPONSIVE SPACING FOR FLEX CONTAINERS */
@media (max-width: 640px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .section {
    padding: 24px 5px;
  }
  .testimonial-card {
    padding-left: 11px;
    padding-right: 11px;
  }
}

/* ENSURE NO OVERLAPPING */
.card, .testimonial-card, .feature-item, .section, .card-content {
  margin-bottom: 20px !important;
}

/* VISUAL HIERARCHY & CONTRAST */
.hero h1, h1 { color: var(--primary); }
h2, h3, h4 { color: var(--primary); }
p, span, li, ul, ol, td, th { color: var(--text); }
.testimonial-card { color: #23231d; background: #f6f1e6; }
.testimonial-card p, .testimonial-card span, .testimonial-card strong { color: #23231d; }

/* --- END OF CSS --- */
