/* === 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;
}
html { box-sizing: border-box; scroll-behavior: smooth; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  background: #FAF6F2;
  color: #2C2323;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
}
img { max-width: 100%; height: auto; }
ul, ol { margin-left: 1.6em; }
a { color: #944B11; text-decoration: none; transition: color 0.15s; }
a:hover { color: #EFAD20; }
strong { font-weight: bold; }

/* === FONT FACES === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

/* === VINTAGE RETRO BRAND COLORS & TYPOGRAPHY === */
:root {
  --color-primary: #1A3D6D;
  --color-secondary: #EFAD20;
  --color-accent: #F2F6FA;
  --color-bg: #FAF6F2;
  --color-text-main: #2C2323;
  --color-card-bg: #F2EADA;
  --color-muted: #A29B92;
  --color-highlight: #E25A1C;
  --color-btn-txt: #372D1C;

  --font-display: 'Montserrat', Impact, Arial, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* === BASE SPACING === */
body {
  background: var(--color-bg);
  color: var(--color-text-main);
}
.container {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-card-bg);
  border-radius: 18px;
  box-shadow: 0 8px 16px rgba(100,50,20,0.06);
  border: 2px solid #D6CCB7;
  position: relative;
}
@media (max-width: 600px) {
  .section { padding: 28px 5vw; margin-bottom: 34px; }
}

/************ LAYOUT FLEXBOX PATTERNS ************/
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.card-container, .feature-grid, .team-list, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFF9F1;
  box-shadow: 0 4px 16px rgba(60, 40, 10, 0.08);
  border-radius: 14px;
  border: 1.5px solid #ECDDCB;
  margin-bottom: 20px;
  position: relative;
  padding: 28px 20px;
  flex: 1 1 290px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: #FFF;
  border-radius: 17px;
  box-shadow: 0 4px 16px rgba(60,50,30,0.12);
  border: 1.5px solid #EAD9C3;
  margin-bottom: 20px;
  max-width: 540px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FCF7ED;
  border-radius: 16px;
  border: 1.5px solid #E6D7B9;
  box-shadow: 0 2px 10px rgba(90,70,30,0.06);
  padding: 30px 24px;
  flex: 1 1 230px;
}

/************ TYPOGRAPHY ************/
h1, h2, h3, h4, .brand-title {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 900;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: -1px;
}
h2 {
  font-size: 2rem;
  letter-spacing: -0.5px;
}
h3 {
  font-size: 1.35rem;
  color: var(--color-highlight);
  font-weight: 700;
}
@media (max-width: 600px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.22rem; }
  h3 { font-size: 1.12rem; }
}
p, ul, ol, blockquote, address {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.08rem;
  color: var(--color-text-main);
}
blockquote {
  font-family: 'Montserrat', serif;
  color: #B76002;
  font-size: 1.15rem;
  background: #FAEBC3;
  border-left: 8px solid #EFAD20;
  border-radius: 8px;
  padding: 14px 19px;
  margin: 0 0 16px 0;
}
ul, ol { margin-bottom: 1em; }
ul > li, ol > li { margin: 0 0 8px 0; padding-left: 3px; }

/************ HEADER & NAVIGATION ************/
header {
  position: relative;
  background: #F6E6C7;
  border-bottom: 3px dotted #AF8C44;
}
nav {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.logo img {
  width: 55px;
  height: auto;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  align-items: center;
  margin-left: 16px;
}
.main-nav li { display: flex; }
.main-nav a {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 1.06rem;
  padding: 7px 15px 6px 15px;
  border-radius: 7px;
  transition: background 0.17s, color 0.17s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-secondary);
  color: #372D1C;
}
.cta-button {
  font-family: var(--font-display);
  font-size: 1.09rem;
  background: var(--color-secondary);
  color: var(--color-btn-txt);
  border: none;
  border-radius: 7px;
  padding: 10px 30px 9px 30px;
  margin-left: 14px;
  font-weight: bold;
  letter-spacing: 0.06em;
  cursor: pointer;
  box-shadow: 0 2px 9px rgba(80,60,10,0.04);
  transition: background 0.17s, color 0.17s, transform 0.15s;
  text-shadow: 1px 1px 0 rgba(250,245,230,0.12);
}
.cta-button:hover, .cta-button:focus {
  background: #ffd685;
  color: #423011;
  transform: translateY(-2px) scale(1.025);
}

/************ MOBILE NAVIGATION ************/
.mobile-menu-toggle {
  display: none;
}
.mobile-menu {
  display: none;
}
@media (max-width:900px) {
  nav { flex-direction: row; }
  .main-nav { display: none; }
  .cta-button { display: none; }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 18px;
    top: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--color-primary);
    z-index: 1200;
    cursor: pointer;
    transition: color 0.15s;
  }
  .mobile-menu-toggle:focus { outline: 2px solid var(--color-secondary); }
}
.mobile-menu {
  position: fixed;
  display: flex;
  flex-direction: column;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #ECE2D0;
  z-index: 1500;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.6,.13,.33,1.1);
  box-shadow: 6px 0 60px rgba(111,76,13,0.08);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #944B11;
  padding: 14px 18px 12px 10px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.14s;
  margin-top: 8px;
}
.mobile-menu-close:focus { outline: 2px solid var(--color-secondary); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-top: 36px;
  width: 100%;
}
.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  color: #633008;
  font-size: 1.23rem;
  padding: 12px 0;
  border-radius: 7px;
  width: 80%;
  text-align: center;
  background: none;
  transition: background 0.16s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: #1A3D6D;
}
@media (max-width:900px) {
  .mobile-menu {
    display: flex;
  }
}

/************ HERO SECTION ************/
.text-section {
  align-items: flex-start;
  text-align: left;
  gap: 17px;
}
.text-section h1, .text-section h2 {
  color: var(--color-primary);
  text-shadow: 1px 2px 0 rgba(250,235,185,0.19);
  font-weight: 900;
}
.text-section p {
  font-size: 1.16rem;
  color: var(--color-text-main);
}

/************ TEAM AND ICONS ************/
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.team-member {
  background: #FAF4E5;
  border: 1.5px solid #F3DFB3;
  border-radius: 13px;
  box-shadow: 0 2px 8px rgba(160,120,40,0.10);
  padding: 23px 17px;
  min-width: 180px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
}
.team-member img { width: 47px; height: 47px; }

.value-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
}
.value-list li {
  background: #F9EECF;
  border: 1.5px solid #E0CEAC;
  border-radius: 9px;
  padding: 11px 16px 11px 12px;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  color: #684311;
}
.value-list img { width: 22px; height: 22px; }

.icon-area, .lifestyle-icons, .amenities-overview ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  margin-top: 6px;
}
.icon-area img, .lifestyle-icons img { width: 33px; height: 33px; }
.amenities-overview h3 { margin-right: 16px; }

/************ CARDS ************/
.card {
  transition: box-shadow 0.15s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 7px 30px rgba(150,120,40,0.13);
  transform: translateY(-2px) scale(1.02);
}

/************ CTA BUTTONS ************/
.cta-button:active {
  background: #ECBE46;
  color: #24201B;
}

/************ TESTIMONIALS ************/
.testimonial-card {
  border-left: 5px solid var(--color-secondary);
  background: #FFF;
  color: #1A2616;
  box-shadow: 0 5px 15px rgba(80,80,80,0.07);
}
.testimonial-card span {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #7A5924;
  margin-left: 8px;
  opacity: 0.89;
}

/************ FAQ ************/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-list h2 {
  font-family: var(--font-display);
  font-size: 1.24rem;
  color: #C5621B;
  margin-bottom: 4px;
}
.faq-list p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #3D3022;
}

/************ MAP PLACEHOLDER ************/
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0 10px 0;
  background: #F4EDD8;
  border: 1.2px dashed #B59F6B;
  padding: 13px 17px;
  border-radius: 11px;
  color: #5A4F3A;
  font-size: 1.02rem;
}
.map-placeholder img { width: 40px; height: 40px; }

/************ FOOTER ************/
footer {
  background: #1A3D6D;
  color: #FADDAA;
  padding: 42px 0 20px 0;
  margin-top: 65px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #FADDAA;
  font-family: var(--font-display);
  font-size: 0.96rem;
  text-decoration: underline 1.5px dashed #FFD294;
  font-weight: 700;
  transition: color 0.15s;
}
.footer-nav a:hover {
  color: #FFD294;
}
footer address {
  font-style: normal;
  font-size: 1.04rem;
  color: #FFD294;
  margin-bottom: 10px;
  text-align: center;
}
footer div:last-child {
  font-size: 0.96rem;
  color: #EFC55E;
  text-align: center;
  margin-top: 14px;
}

/************ COOKIE CONSENT BANNER ************/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  background: #FFF9EB;
  border-top: 3px dotted #CC9733;
  box-shadow: 0 -2px 16px rgba(90,65,10,0.09);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 12px;
  gap: 14px;
  font-family: var(--font-body);
}
.cookie-banner p {
  color: #3A2D19;
  font-size: 1.04rem;
  text-align: center;
  margin-bottom: 2px;
}
.cookie-actions {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}
.cookie-btn, .cookie-settings-btn {
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 8px 19px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  background: var(--color-secondary);
  color: #674008;
  font-weight: 700;
  transition: background 0.14s, color 0.14s, transform 0.10s;
}
.cookie-btn.reject {
  background: #E25A1C;
  color: #fff4e2;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #FFD062;
  color: #2D2309;
  transform: translateY(-2px) scale(1.035);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #C44E0A;
  color: #FFDAB9;
}
.cookie-btn, .cookie-settings-btn { min-width: 118px; }

/************ COOKIE MODAL ************/
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(60,28,6,0.19);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  animation: fadein 0.19s;
}
.cookie-modal-overlay.open { display: flex; }
@keyframes fadein { 0% { opacity: 0; } 100% { opacity: 1; } }
.cookie-modal {
  background: #FFF1CE;
  padding: 34px 19px;
  border-radius: 16px;
  box-shadow: 0 9px 42px rgba(180,100,40,0.12);
  min-width: 320px;
  max-width: 92vw;
  border: 2px solid #DDCA91;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: var(--font-body);
}
.cookie-modal h3 { font-family: var(--font-display); font-size: 1.17rem; }
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 8px 0;
}
.cookie-category label {
  font-size: 1rem;
  color: #7B601B;
}
.cookie-category input[type='checkbox'] { accent-color: var(--color-secondary); width: 19px; height: 19px; }
.cookie-category.essential label { color: #AA8A37; font-weight: 700; }
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

/************ RESPONSIVE ************/
@media (max-width:600px) {
  .container { padding: 0 6px; }
  .main-nav, .footer-nav { gap: 10px; font-size: 0.93rem; }
  .feature-grid, .team-list, .card-container { gap: 13px; }
  .testimonial-card { padding: 16px 9px; }
  .feature-item { padding: 17px 11px; }
}
@media (max-width: 500px) {
  .section { padding: 22px 3vw; margin-bottom: 23px; }
}

/************ OTHER UTILITIES (SPACING, ETC.) ************/
.mb20 { margin-bottom: 20px !important; }
.mb32 { margin-bottom: 32px !important; }
.mt20 { margin-top: 20px !important; }
.mt40 { margin-top: 40px !important; }
.gap20 { gap: 20px !important; }

/* --- END OF STYLE.CSS --- */
