/* ==== 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,
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 { scroll-behavior: smooth; }
body { line-height: 1; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; border: 0; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}
button { cursor: pointer; }

/* ==== VINTAGE RETRO THEME VARIABLES ==== */
:root {
  --retro-primary: #23406D;
  --retro-secondary: #E6ECEF;
  --retro-accent: #FBC02D;
  --retro-red: #C96A4B;
  --retro-green: #4C9589;
  --retro-brown: #B69472;
  --retro-bg-main: #FAF4EC;
  --retro-bg-card: #FFF8E6;
  --retro-border: #B69472;
  --retro-dark-text: #2E2C24;
  --retro-muted-text: #827768;
  --retro-link-hover: #FBC02D;
  --retro-box-shadow: 0 2px 12px 0 rgba(70, 56, 39, 0.07);
}

/* ==== FONT-FACE LOADING ==== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,500,700&display=swap');

body {
  background: var(--retro-bg-main);
  color: var(--retro-dark-text);
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--retro-primary);
  font-weight: 900;
  line-height: 1.17;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 0 #fff6cc, 0 2px 6px rgba(186,148,103,.07);
}
h1 { font-size: 2.75rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; font-weight: 700;}
h4 { font-size: 1.1rem; margin-bottom: 10px; font-weight: 700;}

p, ul, ol, li {
  color: var(--retro-dark-text);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
strong { font-weight: 700; color: var(--retro-brown); }

/* ==== UTILITY CLASSES ==== */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
  max-width: 1140px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: var(--retro-bg-card);
  border-radius: 16px;
  box-shadow: var(--retro-box-shadow);
  border: 1.5px solid var(--retro-border);
  padding: 32px 24px;
  transition: transform .18s cubic-bezier(.46,.03,.52,.96), box-shadow .18s, border-color .18s;
}
.card:hover {
  transform: translateY(-3px) scale(1.012);
  box-shadow: 0 3px 24px 0 rgba(70, 56, 39, 0.13);
  border-color: var(--retro-primary);
}

.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;
  padding: 20px;
  border: 1.5px dashed var(--retro-brown);
  background: #FFFDF7;
  border-radius: 16px;
  box-shadow: var(--retro-box-shadow);
  max-width: 440px;
  margin-bottom: 20px;
  transition: box-shadow .18s, border-color .18s;
}
.testimonial-card:hover {
  border-color: var(--retro-primary);
  box-shadow: 0 3px 28px 0 rgba(70, 56, 39, 0.14);
}
.testimonial-card p {
  font-size: 1.12rem;
  font-style: italic;
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--retro-dark-text);
}
.testimonial-card strong {
  font-size: .95rem;
  color: var(--retro-brown);
  margin-left: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--retro-bg-card);
  border-radius: 14px;
  border: 1.5px solid var(--retro-brown);
  padding: 22px 16px 18px 16px;
  min-width: 216px;
  box-shadow: var(--retro-box-shadow);
  transition: border-color .2s, box-shadow .2s;
}
.feature-item img { width: 42px; height: 42px; }
.feature-item h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.feature-item p {
  font-size: .98rem;
  color: var(--retro-muted-text);
}
.feature-item:hover {
  border-color: var(--retro-primary);
  box-shadow: 0 3px 18px 0 rgba(35, 64, 109, 0.08);
}

/* ==== HEADER, NAVIGATION & HERO ==== */
header {
  background: var(--retro-secondary);
  border-bottom: 3px double var(--retro-brown);
  box-shadow: 0 2px 14px 0 rgba(186, 148, 103, 0.06);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 40;
}
.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 80px;
}
.logo img {
  height: 44px;
  width: auto;
  filter: sepia(0.28) contrast(1.13);
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--retro-primary);
  padding: 8px 0;
  transition: color .14s;
  letter-spacing: 0.04em;
  position: relative;
}
.main-nav a::after {
  content: '';
  display: block;
  width: 0%;
  height: 2.5px;
  background: var(--retro-accent);
  transition: width .18s;
  margin-top: 3px;
  border-radius: 2px;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--retro-accent);
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 90%;
}
.cta-btn {
  background: var(--retro-accent);
  color: var(--retro-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.08rem;
  padding: 13px 32px;
  border-radius: 30px 10px 30px 10px/10px 30px 10px 30px;
  box-shadow: 0 2px 14px 0 rgba(251, 192, 45, 0.13);
  border: 1.5px solid var(--retro-brown);
  margin-left: 14px;
  display: inline-block;
  letter-spacing: 0.05em;
  transition: background .17s, color .17s, box-shadow .17s;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--retro-primary);
  color: #fff5e0;
  box-shadow: 0 4px 20px 0 rgba(35,64,109,0.18);
}

.hero {
  background: linear-gradient(103deg, #FFF4C3 60%, var(--retro-secondary) 100%);
  padding: 64px 0 36px 0;
  border-bottom: 2px dashed var(--retro-brown);
}
.hero .container { max-width: 960px; }
.hero .content-wrapper { gap: 18px; align-items: flex-start; }
.hero h1 {
  font-size: 2.55rem;
  color: var(--retro-primary);
  margin-bottom: 12px;
}
.hero p { font-size: 1.15rem; color: var(--retro-brown); margin-bottom: 24px; max-width: 520px; }

/* ==== MOBILE MENU ==== */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: var(--retro-accent);
  color: var(--retro-primary);
  border-radius: 50%;
  padding: 7px 13px;
  box-shadow: 0 2px 8px 0 rgba(251,192,45,0.28);
  border: 1.5px solid var(--retro-brown);
  position: absolute;
  top: 22px;
  right: 16px;
  z-index: 51;
  transition: background .13s, color .13s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--retro-primary);
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: #F5E9C4;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.86,.03,.2,.97);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 28px 32px 28px 20px;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  font-size: 2.4rem;
  background: var(--retro-accent);
  color: var(--retro-primary);
  padding: 3px 13px;
  border-radius: 50%;
  box-shadow: 0 2px 8px 0 rgba(234,182,90,.24);
  position: absolute;
  top: 24px; right: 22px;
  z-index: 1011;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 70px;
}
.mobile-nav a {
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 16px 0 7px 18px;
  color: var(--retro-primary);
  position: relative;
  border-left: 4px solid transparent;
  transition: border-color .16s, background .17s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--retro-dark-text);
  border-left: 4px solid var(--retro-accent);
  background: #FFF3D4;
}

/* ==== SECTION LAYOUTS ==== */
.features .feature-grid,
.core-values-grid,
.service-cards,
.service-list-grid,
.post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
}
.feature-grid .feature-item,
.core-values-grid .values-card,
.service-cards .service-card,
.service-list-grid .service-list-item,
.post-list .post-item {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 360px;
}

.service-card,
.values-card,
.post-item,
.service-list-item {
  background: var(--retro-bg-card);
  border-radius: 14px;
  border: 1.5px solid var(--retro-brown);
  box-shadow: var(--retro-box-shadow);
  padding: 26px 18px;
  transition: border-color .18s, box-shadow .16s;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: flex-start;
}
.service-card:hover, .values-card:hover, .service-list-item:hover, .post-item:hover {
  border-color: var(--retro-red);
  box-shadow: 0 3px 18px 0 rgba(201,106,75,0.13);
}

.service-list-item h2{
  font-size: 20px;
}

.values-card img {
  width: 38px; height: 38px; margin-bottom: 9px;
}
.values-card h3 { color: var(--retro-green); }

.benefits-list ul,
.values-list ul,
.client-reviews ul,
.next-steps-info ul,
.quick-links ul,
.popular-categories ul,
.usp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
  font-size: 1.04rem;
}
.benefits-list ul li:before,
.values-list ul li:before,
.client-reviews ul li:before,
.next-steps-info ul li:before,
.quick-links ul li:before,
.usp-list li:before {
  content: '\272A';
  font-size: 1.2em;
  color: var(--retro-red);
  margin-right: 9px;
  vertical-align: middle;
}
.usp-list li:before { content: '\2713'; color: var(--retro-green); }

/* ---- Testimonials Slider & Cards ---- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 16px;
}
.client-logos img { max-height: 44px; opacity: 0.94; filter: grayscale(0.25); }

.review-section {
  background: var(--retro-secondary);
  border-radius: 14px;
  padding: 30px 18px;
  margin-bottom: 36px;
}
.review-section h2 { color: var(--retro-primary); }

/* ---- Property Cards on Properties Page ---- */
.property-listings .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.property-card {
  background: var(--retro-bg-card);
  border: 1.5px solid var(--retro-border);
  border-radius: 14px;
  padding: 24px 18px;
  width: 100%;
  max-width: 330px;
  margin-bottom: 20px;
  box-shadow: var(--retro-box-shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: flex-start;
  transition: border-color .17s, box-shadow .17s;
}
.property-card:hover {
  border-color: var(--retro-primary);
  box-shadow: 0 4px 24px 0 rgba(35,64,109,0.12);
}
.property-card a {
  margin-top: 8px;
  color: var(--retro-primary);
  background: var(--retro-secondary);
  border-radius: 8px;
  font-weight: bold;
  display: inline-block;
  padding: 7px 18px;
  border: 1px solid var(--retro-primary);
  transition: background .13s, color .13s;
}
.property-card a:hover { background: var(--retro-accent); color: var(--retro-primary); }

.property-filter {
  background: #F6F1E7;
  border: 1.5px solid var(--retro-brown);
  border-radius: 13px;
  padding: 22px 16px;
  margin-bottom: 34px;
  box-shadow: var(--retro-box-shadow);
}
.property-filter h2 {
  font-size: 1.16rem;
  margin-bottom: 18px;
  color: var(--retro-brown);
}
.filter-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
}
.filter-grid div {
  min-width: 170px;
  color: var(--retro-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.filter-grid label {
  font-weight: bold;
  color: var(--retro-brown);
  margin-right: 4px;
}
.filter-grid span {
  color: var(--retro-green);
  font-weight: 500;
}

/* ---- Blog Post List ---- */
.post-list { gap: 32px; margin-top: 10px; }
.post-item a { color: var(--retro-primary); text-decoration: underline dotted var(--retro-accent); }
.post-item a:hover { color: var(--retro-accent); text-decoration: underline solid var(--retro-accent) 2px; }

.read-more-links {
  margin-top: 16px;
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: flex-end;
}
.read-more-links a {
  color: var(--retro-brown);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  transition: color .16s;
}
.read-more-links a:hover { color: var(--retro-accent); }

/* ---- CTA/Promo Section ---- */
.cta-banner {
  background: linear-gradient(104deg, #FBC02D 52%, #fff4c4 100%);
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(251, 192, 45,0.09), var(--retro-box-shadow);
  margin: 44px 0 38px 0;
  padding: 38px 20px;
  border: 1.5px dashed var(--retro-brown);
  position: relative;
}
.cta-banner h2 {
  color: var(--retro-primary);
  margin-bottom: 20px;
}
.cta-banner .cta-btn {
  background: var(--retro-primary);
  color: #fff;
  margin-left: 0;
  margin-top: 10px;
}
.cta-banner .cta-btn:hover {
  background: var(--retro-accent);
  color: var(--retro-primary);
}

/* ----- Footer styles ----- */
footer {
  background: var(--retro-primary);
  color: #fcf2de;
  border-top: 3px double var(--retro-accent);
  margin-top: 32px;
  font-size: 1rem;
}
.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 40px 20px 26px 20px;
}
.footer-links,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: #FFF4C0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: color .16s;
  margin-bottom: 2px;
}
.footer-links a:hover { color: var(--retro-accent); text-decoration: underline dotted var(--retro-accent); }
.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.footer-contact img {
  width: 42px; height: 42px; margin-right: 8px;
  filter: sepia(.31) contrast(1.15) brightness(1.18);
}
.footer-contact .contact-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #fff6ed;
  font-size: 0.98rem;
  margin-top: 2px;
}
.footer-social {
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.footer-social a img { width: 26px; height: 26px; opacity: 0.88; transition: opacity .13s; }
.footer-social a:hover img { opacity: 1; }
.footer-copyright {
  width: 100%;
  text-align: center;
  margin-top: 20px;
  font-size: .92rem;
  color: #E6ECEF;
  opacity: .85;
}

/* ---- Other Elements ---- */
.trust-badges {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 17px;
  align-items: center;
  flex-wrap: wrap;
}
.trust-badges img {
  width: 37px; height: 37px; filter: sepia(.19) contrast(1.18);
}

.map-location {
  font-size: 1.1rem;
  color: var(--retro-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 14px 0;
}

/*********************
  COOKIE BANNER
*********************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 1410;
  background: #fff8e6;
  color: var(--retro-dark-text);
  border-top: 2.5px solid var(--retro-accent);
  box-shadow: 0 -3px 28px 0 rgba(35,64,109,0.07);
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 14px 14px 14px;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.19s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-message {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--retro-dark-text);
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 2px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  padding: 9px 22px;
  border-radius: 12px 28px 12px 28px/28px 12px 28px 12px;
  font-weight: 700;
  border: 1.5px solid var(--retro-accent);
  background: var(--retro-accent);
  color: var(--retro-primary);
  margin-right: 2px;
  margin-left: 2px;
  transition: background .14s, color .14s, border-color .14s;
}
.cookie-btn.settings {
  background: #fff;
  color: var(--retro-brown);
  border-color: var(--retro-brown);
}
.cookie-btn.reject {
  background: #fff2dc;
  color: var(--retro-red);
  border-color: var(--retro-red);
}
.cookie-btn.settings:hover,
.cookie-btn.reject:hover {
  background: var(--retro-brown);
  color: #fff8e6;
}
.cookie-btn.accept:hover {
  background: var(--retro-primary);
  color: #fffbe2;
}

/******** COOKIE MODAL/PREFS ********/
.cookie-modal {
  position: fixed;
  left: 0; right:0; top:0; bottom:0;
  z-index: 1412;
  background: rgba(232,207,133,0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity .22s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal .modal-inner {
  background: #fff8e6;
  border-radius: 18px;
  box-shadow: 0 2px 32px 0 rgba(186,148,103,0.12);
  border: 1.5px solid var(--retro-accent);
  padding: 34px 28px 32px 28px;
  min-width: 310px;
  max-width: 97vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 16px;
  top: 12px;
  font-size: 2rem;
  background: var(--retro-accent);
  color: var(--retro-primary);
  padding: 2px 10px;
  border-radius: 50%;
  border: none;
  z-index: 1413;
}
.cookie-modal h3 {
  color: var(--retro-primary);
  margin-bottom: 10px;
}
.cookie-categories {
  display: flex; flex-direction: column; gap: 17px;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex; align-items: center;
  gap: 18px;
  font-size: 1.03rem;
  color: var(--retro-dark-text);
  padding: 7px 0;
}
.cookie-category .toggle {
  margin-left: auto;
}
.toggle {
  width: 34px; height: 20px; background: #f5e8c0; border-radius: 10px; position: relative; border: 1.5px solid var(--retro-brown); cursor: pointer; display: inline-block;
  transition: background .14s, border-color .14s;
}
.toggle[data-checked="true"] {
  background: var(--retro-green);
  border-color: var(--retro-green);
}
.toggle:after {
  content: '';
  display: block;
  position: absolute;
  left: 2px; top: 2px;
  width: 16px; height: 16px;
  background: #fffdf7;
  border-radius: 50%;
  box-shadow: 0 1px 7px 0 rgba(230,206,157,0.20);
  transition: left .14s, background .13s;
}
.toggle[data-checked="true"]:after { left: 16px; background: #fff5e4; }
.toggle[aria-disabled='true'], .toggle.disabled {
  opacity: .58; cursor: not-allowed;
}

.cookie-category label { font-weight: 700; margin-right: 8px; color: var(--retro-primary); }
 

/*********************
   RESPONSIVE DESIGN
*********************/
@media (max-width: 1172px) {
  .container { max-width: 99vw; }
}
@media (max-width: 1024px) {
  .main-nav { gap: 14px; }
  .card,
  .service-card,
  .values-card,
  .property-card,
  .post-item,
  .testimonial-card {
    padding: 20px 11px;
    min-width: 180px;
    max-width: 99vw;
  }
}
@media (max-width: 900px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.6rem; }
  .footer-wrap { flex-direction: column; gap: 18px; padding: 30px 8px 14px 8px; }
  .footer-contact { gap: 16px; align-items: flex-start; }
}
@media (max-width: 768px) {
  .header-wrap { flex-direction: row; gap: 16px; }
  .main-nav { display: none; }
  .cta-btn { margin-left: 0; padding: 11px 22px; font-size: 1rem; }
  .mobile-menu-toggle { display: block; }

  .container, .section, .hero, .cta-banner {
    padding-left: 8px; padding-right: 8px;
  }
  .content-wrapper { gap: 14px; }

  .features .feature-grid,
  .core-values-grid,
  .service-cards,
  .service-list-grid,
  .testimonial-slider,
  .property-listings .content-wrapper,
  .client-logos,
  .post-list {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .feature-grid .feature-item,
  .core-values-grid .values-card,
  .service-cards .service-card,
  .service-list-grid .service-list-item,
  .post-list .post-item {
    max-width: 99vw;
  }
  .footer-contact { flex-direction: column; gap: 3px; }
}
@media (max-width: 540px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.1rem; }
  .cookie-modal .modal-inner { min-width: 96vw; padding: 9vw 3vw 8vw 3vw; }
  .feature-item, .property-card, .testimonial-card, .card, .values-card, .service-card {
    padding: 12px 5.5vw;
    font-size: .94rem;
  }
  .cta-btn { font-size: .98rem; padding: 9px 13vw; }
  .footer-wrap { padding: 8vw 2vw 8vw 2vw; font-size: .95rem; }
}
@media (max-width: 400px) {
  .cookie-modal .modal-inner { min-width: 99vw; padding: 3vw 2vw 3vw 2vw; }
}

/*********************
    ANIMATIONS
*********************/
@keyframes fadeInDown { 0% { opacity: 0; transform: translateY(-24px); } to { opacity:1; transform: none; } }
@keyframes fadeInUp { 0% { opacity: 0; transform: translateY(28px); } to { opacity:1; transform: none; } }
@keyframes fadeIn { 0% { opacity:0; } to { opacity:1; } }
.hero, .cta-banner, .card, .feature-item, .service-card, .testimonial-card, .post-item {
  animation: fadeInDown 0.75s cubic-bezier(.28,.73,.59,.9) both;
}
.cookie-banner, .cookie-modal { animation: fadeInUp .79s cubic-bezier(.19,.6,.12,.84) both; }

/*********************
    MISC DECORATIVE
*********************/
body {
  background: repeating-linear-gradient(135deg, #f8ecb5 0 4px, #faf4ec 4px 36px);
}
section {
  border-radius: 15px;
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fffdf8;
  box-shadow: 0 1.5px 16px 0px rgba(236,197,100,.11);
}
.about, .privacy-policy, .gdpr, .terms, .cookie-policy, .thank-you {
  background: linear-gradient(93deg, #fffbe3 68%, #f7e7c4 96%);
}
.blog-intro, .latest-posts, .quick-links, .client-process, .office-info {
  background: #FFF8E6;
  border-radius: 13px;
  box-shadow: var(--retro-box-shadow);
}
div[role="status"], .alert, [aria-live] {
  background: #fff5e8;
  border-left: 5px solid var(--retro-red);
  padding: 14px 18px;
  margin: 23px 0 17px 0;
  border-radius: 8px;
  color: var(--retro-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
}

/* ==== END ==== */
