/* RESET & BASE STYLES */
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;
  scroll-behavior: smooth;
  background: #FCFDF6;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #222;
  background-color: #FCFDF6;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #20603E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F9B233;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
strong, b { font-weight: 700; }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1A4C32;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
h4 { font-size: 1.1rem; }
p, li, dd, dt, address {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #222;
  margin-bottom: 12px;
}
body, p {
  font-size: 1rem;
}
[class*="cta-btn"],
button, .mobile-menu-toggle {
  font-family: 'Montserrat', Arial, sans-serif;
}

/* BRAND COLORS & UTILS */
:root {
  --green-main: #20603E;
  --green-dark: #1A4C32;
  --off-white: #FCFDF6;
  --white: #fff;
  --gold: #F9B233;
  --gray-bg: #F6F5F0;
  --text-color: #222;
  --shadow: 0 4px 16px rgba(32, 96, 62, 0.07), 0 1.5px 3px rgba(32, 96, 62, 0.04);
  --radius-card: 18px;
  --radius-btn: 24px;
  --border-gold: 1.6px solid var(--gold);
}

/* CONTAINER & SECTIONS */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
section:last-child {
  margin-bottom: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 12px;
}
.text-section {
  max-width: 820px;
}

/* MAIN NAVIGATION */
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  background: transparent;
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.main-nav a {
  color: var(--green-dark);
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.main-nav a img {
  margin-right: 0;
  width: 44px;
  height: auto;
}
.main-nav a:not(:first-child):hover,
.main-nav a:not(:first-child):focus {
  color: var(--gold);
  background: rgba(249,178,51, 0.07);
}

header {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(32,96,62,0.05);
  padding: 0 0 0 0;
  position: relative;
  z-index: 20;
  min-height: 70px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
header > .cta-main-btn {
  position: absolute;
  right: 32px;
  top: 18px;
}
@media (max-width: 950px) {
  header > .cta-main-btn {
    position: static;
    margin: 12px 0 8px 0;
    align-self: flex-end;
  }
}

.cta-main-btn {
  background: var(--green-main);
  color: var(--white);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-btn);
  box-shadow: 0 2px 12px rgba(32,96,62,0.10);
  border: none;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.22s, color 0.2s, box-shadow 0.2s;
  border: var(--border-gold);
  margin-left: 18px;
}
.cta-main-btn:hover, .cta-main-btn:focus {
  background: var(--gold);
  color: var(--green-dark);
  box-shadow: 0 4px 24px rgba(32,96,62,0.18);
}

/* HAMBURGER MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: var(--white);
  color: var(--green-dark);
  font-size: 2rem;
  border: none;
  border-radius: 6px;
  width: 44px;
  height: 44px;
  margin-left: 16px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  z-index: 102;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--gold);
  color: var(--white);
}

@media (max-width: 950px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 16px;
    top: 14px;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: var(--off-white);
  box-shadow: 4px 0 24px rgba(32, 96, 62, 0.09);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
  padding: 0;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(0.65,0,0.35,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 24px 28px 0 0;
  background: none;
  border: none;
  color: var(--green-main);
  font-size: 2.2rem;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.2s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: var(--gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
  align-items: flex-start;
  padding: 36px 36px 32px 32px;
}
.mobile-nav a {
  color: var(--green-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 14px 0;
  width: 100%;
  border-bottom: 1px solid #e7e0ce;
  transition: color 0.18s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--gold);
  background: none;
}

@media (min-width: 951px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* HERO & CTA BUTTONS */
.cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, var(--gold), #fcd670);
  color: var(--green-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 13px 34px;
  border-radius: var(--radius-btn);
  box-shadow: 0 2px 12px rgba(32,96,62,0.10);
  border: none;
  text-align: center;
  letter-spacing: 0.01em;
  transition: background 0.15s, color 0.18s, box-shadow 0.15s;
  margin-top: 10px;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--green-main);
  color: var(--white);
  box-shadow: 0 6px 28px rgba(32,96,62,0.17);
}

/* SECTION/CARD LAYOUTS - FLEXBOX ONLY */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  flex: 1 1 280px;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  border: var(--border-gold);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.17s, transform 0.17s;
}
.card:hover, .card:focus-within {
  transform: translateY(-2px) scale(1.012);
  box-shadow: 0 8px 36px rgba(32,96,62,0.16);
  border-color: var(--gold);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 24px 20px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  background: var(--gray-bg);
  color: #222;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 24px;
  margin-bottom: 20px;
  border-left: 5px solid var(--gold);
  max-width: 510px;
  min-width: 230px;
}
.testimonial-card p {
  margin-bottom: 0;
  font-size: 1.07rem;
  font-style: italic;
  line-height: 1.7;
  color: #202012;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #7d6742;
  font-weight: 600;
}

/* FEATURE LISTS & ICONS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  margin-top: 12px;
}
.feature-grid li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  background: var(--white);
  border-radius: 13px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  font-size: 1rem;
  color: var(--green-main);
  border: 1px solid #ede7d2;
  min-width: 210px;
  margin-bottom: 6px;
}
.feature-grid img {
  width: 42px;
  height: 42px;
}
.service-list li {
  position: relative;
  margin-bottom: 18px;
  padding-left: 26px;
  color: #295443;
}
.service-list li::before {
  content: '•';
  position: absolute;
  left: 0; top: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.18em;
}

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

/* FOOTER */
footer {
  background: var(--green-dark);
  color: var(--off-white);
  padding: 36px 0 30px 0;
  margin-top: 70px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 1rem;
  margin-bottom: 7px;
}
.footer-nav a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff1bc;
}
footer address {
  font-style: normal;
  font-size: 1rem;
  color: #dbd8ce;
  line-height: 1.7;
}
footer small {
  color: #e0c083;
  font-size: 0.98rem;
  margin-top: 8px;
}

/* INLINE ICONS in CONTACT and FOOTER */
.text-section ul li img {
  vertical-align: middle;
  margin-right: 8px;
  width: 22px;
  height: 22px;
}

/* OL/UL Styling in Text Section */
.text-section ul, .text-section ol {
  margin-left: 20px;
  margin-bottom: 18px;
  list-style: disc inside;
}
.text-section ul li, .text-section ol li {
  margin-bottom: 11px;
}
.text-section ol {
  list-style: decimal inside;
}

/* DEFINITION LIST */
dt {
  font-weight: 700;
  color: var(--green-main);
  margin: 9px 0 1px 0;
}
dd {
  margin-bottom: 8px;
  color: #222;
}

/* COOKIE BANNER & MODAL */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: var(--off-white);
  border-top: 2px solid var(--gold);
  box-shadow: 0 -2px 16px rgba(32, 96, 62, 0.07);
  padding: 25px 22px 18px 22px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  z-index: 3000;
  transition: transform 0.37s cubic-bezier(0.62,0,0.38,1);
  font-size: 1rem;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner__text {
  flex: 1 1 320px;
  color: #1A4C32;
  font-size: 1rem;
  margin-right: 14px;
}
.cookie-banner__buttons {
  display: flex;
  gap: 15px;
}
.cookie-banner__btn {
  background: var(--green-dark);
  color: #fff;
  border: none;
  border-radius: var(--radius-btn);
  font-size: 1rem;
  padding: 8px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  box-shadow: var(--shadow);
}
.cookie-banner__btn--primary {
  background: var(--gold);
  color: var(--green-dark);
}
.cookie-banner__btn--primary:hover, .cookie-banner__btn--primary:focus {
  background: var(--green-dark);
  color: #fff;
}
.cookie-banner__btn--secondary {
  background: #ede7d2;
  color: var(--green-main);
}
.cookie-banner__btn--secondary:hover, .cookie-banner__btn--secondary:focus {
  background: var(--gold);
  color: var(--green-dark);
}

.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(32,96,62,0.15);
  z-index: 4000;
  justify-content: center;
  align-items: center;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: var(--off-white);
  border-radius: 22px;
  max-width: 448px;
  min-width: 288px;
  box-shadow: 0 8px 44px rgba(32,96,62,0.18);
  padding: 36px 30px 30px 30px;
  border: var(--border-gold);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookieIn 0.37s cubic-bezier(.68,0,.17,1);
}
@keyframes cookieIn {
  from { transform: translateY(120px) scale(.9); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-modal-close {
  background: none;
  border: none;
  color: var(--green-main);
  font-size: 2rem;
  position: absolute;
  right: 28px;
  top: 22px;
  cursor: pointer;
}
.cookie-modal h3 {
  font-size: 1.22rem;
  color: var(--green-main);
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  margin-bottom: 14px;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--gold);
  width: 20px; height: 20px;
}
.cookie-category label {
  font-size: 1rem;
  color: var(--green-dark);
  font-weight: 600;
}
.cookie-category p {
  font-size: 0.97rem;
  margin-left: 19px;
  color: #777;
}
.cookie-essential {
  opacity: .65;
  font-style: italic;
}
.cookie-modal .cookie-banner__btn {
  margin-top: 16px;
  width: 100%;
  padding: 10px 0;
}

/* FORMS (future-proof) */
input, textarea, select {
  border: 1.2px solid #d9d3c2;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 1rem;
  outline: none;
  font-family: 'Roboto', Arial, sans-serif;
  transition: border-color 0.18s;
  margin-bottom: 16px;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
}

button {
  appearance: none;
  background: none;
}

/* MEDIA QUERIES - RESPONSIVE */
@media (max-width: 1000px) {
  .container {
    max-width: 97vw;
    padding: 0 6vw;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.35rem;
  }
  section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
  .content-wrapper { gap: 14px; }
  .feature-grid {
    flex-direction: column;
    gap: 15px;
  }
  .card-container {
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 630px) {
  .content-grid, .feature-grid, .footer-nav {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 10px;
  }
  footer .container {
    gap: 8px;
  }
  .cta-main-btn {
    width: 100%;
    display: block;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    margin-top: 8px;
    padding: 10px 0;
  }
}
@media (max-width: 540px) {
  .container { padding: 0 2vw; }
  .content-wrapper, .text-section {
    min-width: 0;
    width: 100%;
    font-size: 0.97rem;
  }
  .testimonial-card {
    padding: 16px 8px;
    font-size: 0.96rem;
  }
  .cookie-banner__text {
    font-size: 0.92rem;
  }
  .cookie-modal {
    min-width: 0;
    width: 96vw;
    padding: 30px 6vw 24px 6vw;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}

/* Micro-interactions (cards & buttons) */
.card, .cta-btn, .cta-main-btn, .testimonial-card {
  transition: box-shadow 0.17s, transform 0.17s;
}
.cta-btn:active, .cta-main-btn:active {
  transform: scale(0.98);
}
.card:active {
  transform: scale(0.985);
}

/* Details/disclosure for luxury */
.card, .feature-grid li, .testimonial-card {
  border: 1px solid #efe7d9;
  box-shadow: var(--shadow);
}

/* Visually hidden utility for a11y */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
  border: 0;
  padding: 0;
}

/* Scrollbars luxury styling */
::-webkit-scrollbar {
  width: 7px;
  background: #EFEFE2;
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}

/* End */
