/* =====================
   CSS 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}

/* =====================
   BRAND VARIABLES/FONTS
===================== */
:root {
  --color-primary: #1B4D3E;
  --color-secondary: #86B049;
  --color-accent: #F9F7ED;
  --color-gold: #C7A156;
  --color-dark: #1B232A;
  --color-background: #fafafa;
  --color-white: #fff;
  --color-grey: #e7e5dc;
  --shadow-premium: 0 2px 24px 0 rgba(27, 77, 62, 0.07), 0 1.5px 16px 0 rgba(50,50,50,0.065);
  --radius-premium: 18px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --transition: 0.24s cubic-bezier(.5,.2,.1,1);
  --transition-fast: 0.13s cubic-bezier(.5,.8,.1,1);
}
@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat'), url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700&display=swap');
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: local('Roboto'), url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
  font-display: swap;
}

body {
  background: var(--color-accent);
  color: var(--color-dark);
  font-family: var(--font-body);
  font-size: 16px;
  min-height: 100vh;
  padding-bottom: 90px; /* space for cookies banner */
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.7rem; margin-bottom: 18px; line-height: 1.13; }
h2 { font-size: 2rem; margin-bottom: 15px; line-height: 1.18; }
h3 { font-size: 1.35rem; margin-bottom: 10px; font-weight: 600; }
h4, h5, h6 { font-size: 1.18rem; margin-bottom: 8px; }
p, li {
  color: var(--color-dark);
  font-weight: 400;
  line-height: 1.65;
  font-size: 1rem;
}
strong { color: var(--color-primary); font-weight: 700; }

/* ===============
  LUXURY PREMIUM SPACING & LAYOUT
=============== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-white);
  border-radius: var(--radius-premium);
  box-shadow: var(--shadow-premium);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-premium);
  box-shadow: var(--shadow-premium);
  padding: 32px 22px 26px 22px;
  min-width: 270px;
  flex: 1 1 280px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: 0 5px 32px 0 rgba(199,161,86,0.19);
  transform: translateY(-7px) scale(1.025);
  border: 1.5px solid var(--color-gold);
  z-index: 2;
}
.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;
  background: #ede7d0;
  color: #291f00;
  border-left: 5px solid var(--color-gold);
  padding: 20px;
  border-radius: var(--radius-premium);
  margin-bottom: 24px;
  box-shadow: 0 2px 14px 0 rgba(60,50,40,0.05);
  position: relative;
}
.testimonial-card p {
  color: #291f00;
  margin-bottom: 0;
  font-size: 1rem;
}
.testimonial-card span {
  font-style: italic;
  font-size: .99rem;
  color: var(--color-primary);
  margin-left: auto;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*********************
  HEADER & NAVIGATION
*********************/
header {
  width: 100%;
  background: var(--color-white);
  border-bottom: 1.6px solid var(--color-gold);
  box-shadow: 0 3px 12px 0 rgba(27,77,62,0.04);
  position: relative;
  z-index: 10;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}
header img {
  height: 52px;
  width: auto;
  border-radius: 15px;
  box-shadow: 0 1px 6px rgba(50,40,30,0.04);
  background: var(--color-accent);
  margin-right: 16px;
}
header nav {
  display: flex;
  gap: 20px;
}
header nav a {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: 0.005em;
  padding: 6px 13px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
header nav a:hover,
header nav a.active {
  color: var(--color-dark);
  background: var(--color-gold);
}
.button.primary {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.03rem;
  color: #fff;
  background: var(--color-gold);
  padding: 11px 28px;
  border: none;
  border-radius: 25px;
  box-shadow: 0 1px 8px rgba(199,161,86,.06);
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), color var(--transition);
  text-align: center;
  display: inline-block;
}
.button.primary:hover,
.button.primary:focus {
  background: #99723b;
  color: #fff;
  box-shadow: 0 3px 16px 0 rgba(199,161,86,0.16);
  outline: none;
}

/***************
   BURGER MENU
****************/
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 70;
  height: 44px;
  width: 44px;
  background: var(--color-gold);
  color: #1B232A;
  border: none;
  border-radius: 14px;
  font-size: 2.2rem;
  box-shadow: 0 2px 8px 0 rgba(199,161,86,.17);
  transition: background var(--transition);
  cursor: pointer;
  line-height: 44px;
}
.mobile-menu-toggle:active { background: #b49145; }
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 32px 28px 32px 32px;
  background: var(--color-white);
  box-shadow: -4px 0 28px rgba(27,77,62,0.10);
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 90vw; max-width: 330px;
  z-index: 110;
  transform: translateX(-102vw);
  transition: transform 0.32s cubic-bezier(.65,.09,.19,1);
  border-top-right-radius: 28px;
  border-bottom-right-radius: 28px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-gold);
  font-size: 2.0rem;
  margin-bottom: 28px;
  cursor: pointer;
  align-self: flex-end;
  transition: color var(--transition-fast);
}
.mobile-menu-close:hover { color: #99723b; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 23px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.17rem;
  font-weight: 600;
  color: var(--color-primary);
  padding: 10px 0;
  border-bottom: 1px solid var(--color-grey);
  transition: color var(--transition);
}
.mobile-nav a:hover, .mobile-nav a:active {
  color: var(--color-dark);
  background: var(--color-gold);
  border-radius: 8px;
}

/*****************
  HERO & CTA SECTION
******************/
.hero {
  background: linear-gradient(140deg, #FFF5E5 0%, var(--color-accent) 100%);
  padding: 68px 0 55px 0;
  border-bottom: 2px solid var(--color-gold);
  margin-bottom: 48px;
}
.hero .container, .cta .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper, .cta .content-wrapper {
  background: var(--color-white);
  border-radius: 30px;
  box-shadow: var(--shadow-premium);
  padding: 40px 24px;
  max-width: 700px;
  align-items: flex-start;
}
.cta {
  margin-top: 60px;
  background: var(--color-accent);
  border-top: 2px solid var(--color-gold);
}

/**************
   FEATURE GRIDS
***************/
.features .feature-grid,
.startup-listings .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.features .feature-grid > div,
.startup-listings .feature-grid > div {
  background: var(--color-accent);
  border-radius: var(--radius-premium);
  box-shadow: var(--shadow-premium);
  border: 1.3px solid var(--color-gold);
  padding: 28px 22px 24px 22px;
  min-width: 222px;
  flex: 1 1 260px;
  transition: box-shadow var(--transition), border var(--transition), transform var(--transition);
}
.features .feature-grid > div:hover {
  box-shadow: 0 7px 24px 0 rgba(199,161,86,0.17);
  border-color: #be9e54;
  transform: translateY(-6px) scale(1.015);
  z-index: 2;
}
.features .feature-grid img {
  height: 38px;
  margin-bottom: 10px;
}

/**********************
  SECTION SPACING & UTILS
***********************/
main section {
  margin-bottom: 60px;
  padding: 40px 0 36px 0;
}
main .container {
  padding-top: 0;
  padding-bottom: 0;
}
main .content-wrapper > ul,
main .content-wrapper > ol {
  margin-left: 0;
  padding-left: 20px;
  margin-bottom: 6px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
main .content-wrapper ul li, main .content-wrapper ol li {
  position: relative;
  padding-left: 16px;
  font-size: 1rem;
}
main .content-wrapper ul li:before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
}
main .content-wrapper ol {
  counter-reset: steps;
}
main .content-wrapper ol li {
  counter-increment: steps;
}
main .content-wrapper ol li:before {
  content: counter(steps) ".";
  position: absolute;
  left: -4px; top: 0;
  color: var(--color-gold);
  font-weight: 700;
}

.text-section {
  padding: 18px 0;
  background: transparent;
  border-radius: 0;
}
.map-placeholder {
  margin-top: 24px;
  background: var(--color-accent);
  border-radius: 18px;
  box-shadow: 0 1px 8px rgba(27,77,62,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 16px 0;
}

/*************
  FOOTER
**************/
footer {
  background: var(--color-primary);
  color: var(--color-accent);
  padding: 40px 0 28px 0;
  border-top: 2.5px solid var(--color-gold);
  box-shadow: 0 -4px 18px rgba(27, 77, 62, .10);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 19px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 9px;
}
.footer-nav a {
  color: var(--color-gold);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .01em;
  font-size: 1.08rem;
  border-bottom: 1.5px solid transparent;
  transition: border-bottom var(--transition);
}
.footer-nav a:hover { border-bottom: 1.7px solid var(--color-gold); }
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: .97rem;
  color: #f9f7ed;
  opacity: .85;
}

/*****************
 BUTTONS & STATES
******************/
.button,
.button.primary {
  display: inline-block;
  cursor: pointer;
  font-family: var(--font-display);
  border: none;
  border-radius: 25px;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 1rem;
  transition: box-shadow var(--transition), background var(--transition), color var(--transition);
  outline: none;
  text-align: center;
  box-shadow: 0 1px 7px 0 rgba(199,161,86,0.07);
}
.button.secondary {
  background: var(--color-primary);
  color: #fff;
}
.button.secondary:hover,
.button.secondary:focus {
  background: #123a2d;
  color: var(--color-gold);
}
.button[disabled],
.button.primary[disabled] {
  background: #cdbe96;
  color: #fff;
  cursor: not-allowed;
}

/**********************
  COOKIE CONSENT BANNER
**********************/
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--color-gold);
  color: #2c230f;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 24px 20px 18px 20px;
  z-index: 150;
  box-shadow: 0 -7px 22px 0 rgba(199,161,86, .09);
  gap: 26px;
  animation: slideBannerUp 0.6s cubic-bezier(.5,.8,.1,1);
}
@keyframes slideBannerUp {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .banner-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-left: 20px;
}
.cookie-consent-banner .button {
  padding: 9px 21px;
  border-radius: 18px;
  font-size: 0.97rem;
  font-family: var(--font-display);
}
.cookie-consent-banner .accept {
  background: var(--color-primary);
  color: #fff;
}
.cookie-consent-banner .accept:hover {
  background: #397359;
}
.cookie-consent-banner .reject {
  background: #fff;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.cookie-consent-banner .reject:hover {
  background: #ede7d0;
}
.cookie-consent-banner .settings {
  background: transparent;
  color: #5a4223;
  border: 1.1px solid #b49752;
}
.cookie-consent-banner .settings:hover {
  background: #f8f4e2;
}

/************************
 COOKIE MODAL POPUP
*************************/
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(27,30,24,.65);
  z-index: 160;
  align-items: center;
  justify-content: center;
}
.cookie-modal.active {
  display: flex;
  animation: fadeInModal 0.4s cubic-bezier(.6,.1,.3,1);
}
@keyframes fadeInModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal .modal-content {
  background: var(--color-white);
  border-radius: 22px;
  max-width: 440px;
  width: calc(100vw - 38px);
  margin: 0 20px;
  padding: 35px 26px 30px 26px;
  box-shadow: 0 5px 45px rgba(199,161,86, .16);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h3 {
  color: var(--color-primary);
  font-size: 1.32rem;
  margin-bottom: 10px;
  font-family: var(--font-display);
}
.cookie-modal .modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: var(--color-gold);
  font-size: 1.9rem;
  font-family: var(--font-display);
  cursor: pointer;
}
.cookie-modal .modal-options {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-modal .modal-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.cookie-modal input[type=checkbox] {
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 7px;
  border: 1.5px solid var(--color-gold);
  background: #f4f2ed;
  margin-right: 8px;
  position: relative;
  transition: border var(--transition-fast), box-shadow var(--transition-fast);
}
.cookie-modal input[type=checkbox]:checked {
  background: var(--color-gold);
  border: 1.5px solid #967638;
}
.cookie-modal input[type=checkbox]:checked:after {
  content: "\2714";
  color: var(--color-primary);
  position: absolute;
  left: 2px; top: -2px;
  font-size: 1.08rem;
  font-weight: 700;
}
.cookie-modal .option-label {
  flex: 1 1 auto;
  color: var(--color-dark);
}
.cookie-modal .essential {
  color: #1B4D3E;
  font-weight: 600;
}
.cookie-modal .option-desc {
  display: block;
  font-size: .94rem;
  color: #7d733d;
  margin-left: 32px;
}
.cookie-modal .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 13px;
  margin-top: 9px;
}
.cookie-modal .button {
  font-size: .97rem;
  border-radius: 15px;
  padding: 9px 21px;
}

/********************
  ANIMATIONS, EFFECTS
*********************/
.card, .features .feature-grid > div, .testimonial-card {
  transition: box-shadow var(--transition), border var(--transition), transform var(--transition), outline-color var(--transition);
}
a, .button, button {
  transition: color var(--transition), background var(--transition), border var(--transition), box-shadow var(--transition);
}

/********************
  RESPONSIVE DESIGN
********************/
@media (max-width: 1020px) {
  .container {
    max-width: 98vw;
  }
  header .container,
  .footer-nav, .footer-info {
    flex-wrap: wrap;
    gap: 12px;
  }
}
@media (max-width: 900px) {
  .features .feature-grid, .startup-listings .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .content-grid {
    flex-direction: column;
    gap: 21px;
  }
  header .container {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .footer-nav {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .container { max-width: 100vw; padding: 0 8px; }
  main section { padding: 28px 0 24px 0; margin-bottom: 34px; }
  .section, .hero .content-wrapper, .cta .content-wrapper {
    padding: 26px 6px 26px 6px;
    border-radius: 15px;
  }
  h1 { font-size: 2.04rem; }
  h2 { font-size: 1.46rem; }
  h3 { font-size: 1.13rem; }
  .hero, .cta { padding: 27px 0 25px 0; }
  .footer-info { font-size: 0.95rem; }
  .map-placeholder { padding: 9px 0; min-height: 80px; }
}
@media (max-width: 600px) {
  .footer-info, .footer-nav {
    padding-left: 0;
    font-size: .93rem;
    flex-direction: column;
    gap: 9px;
    align-items: flex-start;
  }
  .hero .content-wrapper, .cta .content-wrapper {
    padding: 14px 3px 14px 3px;
  }
}
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    gap: 4px;
    font-size: .99rem;
    align-items: flex-start;
  }
}
@media (max-width: 900px) {
  .text-image-section { flex-direction: column; gap: 20px; }
}
@media (max-width: 900px) {
  .mobile-menu { max-width: 97vw; }
}
@media (max-width: 900px) {
  .card-container { flex-direction: column; }
}

@media (max-width: 900px) {
  .testimonials .content-wrapper {
    gap: 17px;
  }
}
@media (max-width: 900px) {
  header nav { display: none !important; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 901px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/***************************
  LUXURY ACCENTS/DETAILS
****************************/
.section, .card, .features .feature-grid > div,
.hero .content-wrapper, .cta .content-wrapper, .testimonial-card, .cookie-modal .modal-content {
  border: 1.6px solid #e0cfa2;
  box-shadow: 0 2px 16px 0 rgba(199,161,86,.06) , var(--shadow-premium);
}
h1, h2, h3, .button, .footer-nav a {
  letter-spacing: 0.012em;
}
hr {
  border: 0; height: 1.2px; background: var(--color-gold); margin: 38px 0;
}

/**************
  MISC/OVERRIDES
***************/
main .content-wrapper > div:not(:last-child),
main .content-wrapper > ul:not(:last-child),
main .content-wrapper > ol:not(:last-child) {
  margin-bottom: 22px;
}
main .content-wrapper > h1, main .content-wrapper > h2 {
  margin-bottom: 19px;
}
@media (max-width: 600px) {
  .cookie-consent-banner { flex-direction: column; gap: 12px; }
  .cookie-consent-banner .banner-buttons { margin-left: 0; gap: 10px; }
}

/**************
  Accessibility: focus ring
**************/
a, button, .button {
  outline-color: var(--color-gold);
}
a:focus, .button:focus, button:focus {
  box-shadow: 0 0 0 3px #e0cfa2;
  outline: none;
}
/***************
  UTILS
**************/
::-webkit-input-placeholder { color: #bab5ab; }
::-moz-placeholder { color: #bab5ab; }
:-ms-input-placeholder { color: #bab5ab; }
::placeholder { color: #bab5ab; }

/************
  Print
************/
@media print {
  .cookie-consent-banner, .cookie-modal, .mobile-menu {
    display: none !important;
  }
}
