/* 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, caption, tbody, tfoot, thead, tr, th, td, main, section, footer, nav, header, figure, figcaption, hr, input, textarea, button {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: #F4F4F2;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  background-color: #F4F4F2;
  color: #1A2851;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

*, *::before, *::after {
  box-sizing: inherit;
}

ul, ol {
  list-style: none;
}

a {
  color: #1A2851;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #D9A642;
  outline: none;
}

button, [type="submit"], [type="button"] {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

/* BRAND COLOR VARIABLES */
:root {
  --primary: #1A2851;
  --secondary: #D9A642;
  --accent: #F4F4F2;
  --card-bg: #fff;
  --border-radius: 18px;
  --shadow: 0 2px 24px 0 rgba(30,36,42,0.07), 0 1.5px 3px 0 rgba(216,166,66,0.10);
  --shadow-soft: 0 2px 12px 0 rgba(193,158,91,0.09);
  --shadow-hover: 0 6px 32px 0 rgba(30,36,42,0.14);
}

@media (max-width: 768px) {
  :root {
    --border-radius: 14px;
  }
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #1A2851;
  font-weight: 700;
  margin-bottom: 16px;
}
h1 { font-size: 2.7rem; line-height: 1.13; margin-bottom: 20px; }
h2 { font-size: 2rem; line-height: 1.18; margin-bottom: 16px; }
h3 { font-size: 1.25rem; line-height: 1.22; margin-bottom: 10px; }
h4, h5, h6 { font-size: 1.1rem; }
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
}
p, ul, ol, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #32343B;
  margin-bottom: 14px;
}
strong {
  color: #1A2851;
  font-weight: bold;
}
.subheadline {
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #D9A642;
  margin-bottom: 20px;
  font-weight: 500;
}

/* CONTAINER & LAYOUT */
.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}

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

@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 25px 8px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 28px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.02);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75em;
}

.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: 14px;
  }
}

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

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  margin-bottom: 24px;
  margin-top: 10px;
  transition: box-shadow 0.2s;
  border-left: 6px solid #D9A642;
  max-width: 700px;
}
.testimonial-card p {
  color: #1A2851;
  font-size: 1.13rem;
  margin-bottom: 6px;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.54;
}
.testimonial-author {
  font-style: italic;
  color: #7A6041;
  font-size: 1rem;
  margin-left: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
}

@media (max-width: 768px) {
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    margin-bottom: 18px;
  }
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid li {
  flex: 1 1 210px;
  background: #fff;
  padding: 26px 16px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.17s;
  min-width: 220px;
  max-width: 330px;
}
.feature-grid li:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.02);
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
}

@media (max-width: 992px) {
  .feature-grid {
    gap: 19px;
  }
  .feature-grid li {
    min-width: 178px;
    flex: 1 1 160px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 12px;
  }
  .feature-grid li {
    min-width: 0;
    width: 100%;
    padding: 18px 10px;
  }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(120deg, #FDF6EA 70%, #fff 100%);
  padding: 55px 0 38px 0;
  margin-bottom: 38px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.6rem;
  letter-spacing: -1px;
}
.hero .btn-primary {
  margin-top: 22px;
}
@media (max-width: 650px) {
  .hero {
    padding: 30px 0 24px 0;
    margin-bottom: 18px;
  }
}

/********** BUTTONS **********/
.btn-primary {
  display: inline-block;
  padding: 14px 30px;
  background: var(--secondary);
  color: #fff;
  border-radius: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px 0 rgba(216,166,66,0.18);
  transition: background 0.17s, box-shadow 0.22s, color 0.17s, transform 0.14s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover, .btn-primary:focus {
  background: #e7b758;
  color: #1A2851;
  box-shadow: 0 4px 18px 0 rgba(216,166,66,0.28);
  transform: translateY(-2px) scale(1.03);
  outline: none;
}

.btn-secondary {
  display: inline-block;
  padding: 11px 24px;
  background: #fff3e0;
  color: #7e5a00;
  border-radius: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  border: 2px solid #D9A642;
  transition: background 0.17s, color 0.14s, box-shadow 0.17s, border 0.14s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #D9A642;
  color: #fff;
  box-shadow: 0 2px 10px 0 rgba(216,166,66,0.10);
  border-color: #E6BA34;
}

/* CTA Banner */
.cta-banner {
  background: #fee6ae;
  border-radius: var(--border-radius);
  padding: 42px 20px;
  text-align: center;
  margin-bottom: 56px;
  box-shadow: var(--shadow-soft);
}
.cta-banner h2 {
  color: var(--primary);
  margin-bottom: 12px;
}
.cta-banner .btn-primary {
  margin-top: 16px;
}

@media (max-width: 768px) {
  .cta-banner {
    padding: 23px 8px;
    margin-bottom: 28px;
  }
}

/***** NAVIGATION *****/
header {
  background: #fff;
  box-shadow: 0 1px 8px 0 rgba(30,36,42,0.04);
  padding: 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 950;
}

.header-brand img {
  height: 42px;
  width: auto;
  margin-right: 22px;
  border-radius: 10px;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 18px;
  transition: background 0.14s, color 0.14s;
}
.main-nav a:hover:not(.btn-primary) {
  background: #FFEAC3;
  color: #D9A642;
}
.main-nav .btn-primary {
  margin-left: 12px;
}

.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: #fee6ae;
  color: #735e3e;
  border: none;
  border-radius: 12px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  transition: background 0.16s;
  z-index: 1300;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #ffe0a1;
}

@media (max-width: 1000px) {
  .main-nav {
    gap: 10px;
  }
}

@media (max-width: 870px) {
  .main-nav {
    gap: 0.2vw;
  }
  .header-brand img {
    height: 32px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .container {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #fffdfa;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.68,-0.55,.27,1.55);
  box-shadow: 2px 0 32px 0 rgba(30,36,42,0.14);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 28px 0 0 22px;
  font-size: 2.2rem;
  color: #af8232;
  background: none;
  border: none;
  border-radius: 14px;
  transition: background 0.15s;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #FFEAC3;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 30px;
  gap: 6px;
  padding-left: 30px;
}
.mobile-nav a {
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1A2851;
  padding: 15px 0px 12px 4px;
  border-radius: 11px;
  margin-bottom: 1px;
  transition: background 0.16s, color 0.16s;
  width: 90%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFEAC3;
  color: var(--secondary);
}

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

/*********** LISTS, TABLES, FORMS ***********/
ul, ol {
  margin-bottom: 14px;
  margin-left: 1.2em;
  padding-left: 0.9em;
}
ul li, ol li {
  margin-bottom: 5px;
  color: #414553;
  font-size: 1rem;
  position: relative;
}
ol {
  list-style-type: decimal;
}
ul {
  list-style-type: disc;
}
.service-list li {
  background: #fff6ea;
  margin-bottom: 12px;
  padding: 13px 16px 13px 16px;
  border-radius: 12px;
  font-size: 1rem;
  box-shadow: 0 2px 8px 0 rgba(245,222,183,0.09);
}
@media (max-width: 650px) {
  .service-list li {
    padding: 10px 6px;
    min-width: 0;
  }
}

.project-list li, .project-highlights li {
  padding-left: 0;
  margin-bottom: 11px;
  color: #33353d;
  background: #fff;
  border-radius: 11px;
  padding: 10px 16px 10px 16px;
  box-shadow: 0 1px 7px 0 rgba(200,180,100,0.08);
}


/*************** FORMS ***************/
form {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 500px;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #1A2851;
  margin-bottom: 4px;
  font-size: 1.06rem;
}
input, textarea {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 11px;
  border: 1.5px solid #e7d69d;
  padding: 12px 13px;
  background: #fff;
  transition: border 0.14s, box-shadow 0.15s;
  box-shadow: 0 2px 8px 0 rgba(245,222,183,0.07);
}
input:focus, textarea:focus {
  border-color: #D9A642;
  box-shadow: 0 2px 10px 0 rgba(216,166,66,0.08);
  outline: none;
}
textarea {
  resize: vertical;
  min-height: 68px;
}

/********** FOOTER *********/
footer {
  background: #fffdfa;
  box-shadow: 0 -1px 8px 0 rgba(30,36,42,0.04);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  margin-top: 60px;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding: 44px 18px 18px 18px;
}
.footer-brand img {
  height: 44px;
  margin-bottom: 16px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #7a6041;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 9px;
  padding: 3px 9px;
  transition: color 0.14s, background 0.13s;
}
.footer-nav a:hover {
  background: #fee6ae;
  color: #1A2851;
}
.footer-contact p {
  color: #685b44;
  font-size: 0.97rem;
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-contact img {
  width: 17px;
  height:17px;
  margin-right: 5px;
  vertical-align: middle;
}
.footer-credits {
  font-size: 0.98rem;
  color: #B0A992;
  margin-top: 14px;
  width: 100%;
}
@media (max-width: 950px) {
  footer .container {
    gap: 24px;
    flex-direction: column;
    padding: 29px 10px 10px 10px;
    align-items: flex-start;
  }
}

/************* COOKIE BANNER **********/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5000;
  background: #fffdfa;
  box-shadow: 0 -2px 22px 0 rgba(218,182,88,0.16);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 22px 25px 22px 22px;
  border-radius: 22px 22px 0 0;
  max-width: 650px;
  margin: 0 auto;
  left: 0; right: 0;
  transition: transform 0.33s, opacity 0.33s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__text {
  font-size: 1rem;
  color: #3c3221;
  flex: 1;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
}
.cookie-banner .btn-cookiesettings {
  background: #ffefcd;
  color: #D9A642;
  border-radius: 20px;
  padding: 9px 15px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  border: 1px solid #ffe5b2;
  box-shadow: 0 2px 8px rgba(245,222,183,0.12);
  transition: background 0.15s, color 0.16s;
}
.cookie-banner .btn-cookiesettings:hover, .cookie-banner .btn-cookiesettings:focus {
  background: #ffe9b3;
}
.cookie-banner .btn-accept {
  background: #D9A642;
  color: #fff;
  border-radius: 20px;
  padding: 9px 17px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  border: none;
  transition: background 0.16s;
}
.cookie-banner .btn-accept:hover, .cookie-banner .btn-accept:focus {
  background: #f0be56;
  color: #1A2851;
}
.cookie-banner .btn-reject {
  background: #fff6ea;
  color: #915200;
  border-radius: 20px;
  padding: 9px 15px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  border: 1.8px solid #ffe0aa;
  box-shadow: 0 2px 8px rgba(245,222,183,0.12);
  transition: background 0.15s, color 0.16s;
}
.cookie-banner .btn-reject:hover, .cookie-banner .btn-reject:focus {
  background: #FFD27C;
}

@media (max-width: 650px) {
  .cookie-banner, .cookie-banner__actions {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    padding: 15px 6vw 15px 7vw;
  }
  .cookie-banner {
    max-width: 96vw;
    font-size: 0.98rem;
  }
}

/************* COOKIE MODAL **********/
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 5500;
  align-items: center;
  justify-content: center;
  background: rgba(50,34,5,0.24);
}
.cookie-modal.open {
  display: flex;
  animation: fadeIn 0.4s;
}
@keyframes fadeIn { 0% { opacity:0; } 100% { opacity:1; } }

.cookie-modal__content {
  background: #fffdfa;
  min-width: 310px;
  max-width: 99vw;
  width: 420px;
  border-radius: 22px;
  box-shadow: 0 8px 38px 0 rgba(211,172,64,0.21);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal__close {
  position: absolute;
  top: 15px; right: 22px;
  background: #FFD79E;
  color: #966218;
  border: none;
  width: 38px; height: 38px;
  border-radius: 11px;
  font-size: 1.7rem;
  text-align: center;
  transition: background 0.13s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: #fac95b;
}
.cookie-modal__title {
  font-size: 1.28rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 12px;
  color: #1A2851;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.cookie-category-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.01rem;
}
.cookie-category-item input[type="checkbox"] {
  accent-color: var(--secondary);
  width: 19px; height: 19px;
  border-radius: 5px;
  margin-right: 4px;
}
.cookie-category-item .always-on {
  color: #7a6041;
  font-size: 0.93rem;
  margin-left: 4px;
  font-style: italic;
}
.cookie-modal__actions {
  display: flex;
  gap: 13px;
  margin-top: 14px;
}
.cookie-modal__actions .btn-primary,
.cookie-modal__actions .btn-secondary {
  width: 100%;
  padding: 12px 0;
  font-size: 1.06rem;
}

@media (max-width: 600px) {
  .cookie-modal__content {
    min-width: 0;
    width: 96vw;
    padding: 18px 5vw;
  }
}

/* MISC VISUAL ELEMENTS */
blockquote {
  border-left: 5px solid #FFD79E;
  padding-left: 11px;
  margin-bottom: 20px;
  color: #7c683d;
  font-style: italic;
  background: #FFF4E0;
  border-radius: 9px;
}

hr {
  border: none;
  border-top: 1.5px solid #f6e3ac;
  margin: 28px 0;
}

/* MICRO-INTERACTIONS/ANIMATIONS */
.btn-primary, .btn-secondary,
input, textarea, .card, .feature-grid li, .testimonial-card, .header-brand img {
  transition: box-shadow 0.17s, background 0.17s, transform 0.12s, color 0.13s;
}

.fadeIn { animation: fadeIn 0.28s; }

/* A11Y: skip link for accessibility */
.skip-link {
  position: absolute;
  left: -99vw;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 9999;
  background: #fff5cc;
  color: #1A2851;
  padding: 8px 24px;
  border-radius: 21px;
  font-size: 1rem;
}
.skip-link:focus {
  left: 20px;
  top: 12px;
  width: auto;
  height: auto;
  outline: 3px solid #D9A642;
}

/**************** RESPONSIVE SPACING - CRITICAL ****************/
/* Margin-bottom on content cards & sections (mandated) */
.card, .feature-grid li, .testimonial-card, .service-list li, .project-list li, .project-highlights li, .content-grid > * {
  margin-bottom: 20px;
}

/**************** UTILITIES ****************/
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mt-16 { margin-top: 16px !important; }
.mb-16 { margin-bottom: 16px !important; }

/******* PRINT ******/
@media print {
  header, nav, footer, .btn-primary, .btn-secondary, .mobile-menu, .cookie-banner, .cookie-modal {
    display: none !important;
  }
  body {
    background: #fff !important;
  }
}

/***** END *****
All styles use only flexbox for layout. No grid, columns, or absolute positioning (except cookie/modal). Responsive, consistent with 'warm_friendly' style. Brand fonts/colors throughout.
*/