/* ---------------------------------------------------
   CSS 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,
u, b, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  min-height: 100vh;
  background: #FFF7F0;
  color: #1A2747;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, svg {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}
a {
  color: #1A2747;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: #eb6a32; }
ul, ol { margin-left: 1.5em; margin-bottom: 1em; }
li { margin-bottom: 0.5em; }
strong { font-weight: 700; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #1A2747;
  font-weight: 700;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
  letter-spacing: -1px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
p, .text-section p, .subheadline {
  font-size: 1rem;
  margin-bottom: 14px;
}
.subheadline {
  color: #543824;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.1px;
}
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
section {
  padding: 40px 0 0 0;
  margin-bottom: 60px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-section {
  margin-bottom: 20px;
}
.usp-list {
  margin: 0 0 0 18px;
  padding: 0;
  font-size: 1.03em;
  list-style: disc inside none;
}
.usp-list li {
  background: none;
  margin-bottom: 10px;
  padding-left: 0;
  color: #54442c;
}

/* ---------------------------------------------------
   HEADER & MAIN NAVIGATION
-----------------------------------------------------*/
header {
  background: #FFF7F0;
  box-shadow: 0 3px 20px 0 rgba(233,168,99,0.10);
  transition: box-shadow 0.2s;
  z-index: 101;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}
.logo-link {
  display: flex;
  align-items: center;
  height: 52px;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #7d4c2f;
  font-weight: 500;
  letter-spacing: 0.07em;
  border-radius: 8px;
  padding: 6px 10px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .footer-nav a:hover {
  background: #f6dbc9;
  color: #eb6a32;
}
.cta-btn {
  background: #eb6a32;
  color: #fff;
  font-family: 'Montserrat', Arial,sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  border: none;
  border-radius: 28px;
  padding: 13px 30px;
  margin-left: 12px;
  box-shadow: 0 2px 18px 0 rgba(230,143,43,0.13);
  cursor: pointer;
  transition: background 0.16s, box-shadow 0.16s, transform 0.15s;
  outline: none;
  display: inline-block;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #1A2747;
  color: #fff;
  box-shadow: 0 6px 32px 0 rgba(185,111,30,0.16);
  transform: translateY(-2px) scale(1.02);
}

/* ---------------------------------------------------
   MOBILE MENU
-----------------------------------------------------*/
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #eb6a32;
  cursor: pointer;
  display: none;
  position: relative;
  z-index: 125;
  margin-left: 14px;
  transition: color 0.18s, transform 0.16s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #1A2747;
  outline: none;
  transform: scale(1.08) rotate(-2deg);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255,247,240,0.99);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.30s cubic-bezier(.33,1,.68,1), opacity 0.22s;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  border: none;
  background: none;
  color: #eb6a32;
  font-size: 2.4rem;
  align-self: flex-end;
  margin: 22px 26px 0 0;
  cursor: pointer;
  transition: color 0.2s, transform 0.18s;
  z-index: 1201;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #1A2747;
  transform: rotate(5deg) scale(1.11);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 32px;
  padding-left: 36px;
  padding-right: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  color: #1A2747;
  font-weight: 700;
  border-radius: 12px;
  padding: 12px 10px 12px 3px;
  transition: background 0.15s, color 0.14s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover {
  background: #f6dbc9;
  color: #eb6a32;
}

/* Hide nav/cta-btn on mobile, show menu button */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 600px) {
  .mobile-menu-close {
    margin: 16px 14px 0 0;
  }
  .mobile-nav {
    padding-left: 20px;
    padding-right: 16px;
  }
}

/* ---------------------------------------------------
   HERO SECTION
-----------------------------------------------------*/
.hero {
  background: linear-gradient(96deg, #FFF7F0, #FCEBD8 85%);
  border-bottom: 1px solid #f6dbc9;
  box-shadow: 0 1px 18px 0 rgba(235,106,50,0.04);
  width: 100%;
  min-height: 360px;
  padding-bottom: 40px;
  margin-bottom: 48px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 42px;
  gap: 14px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.hero h1 {
  color: #1A2747;
  font-size: 2.3rem;
  margin-bottom: 10px;
}
.hero .subheadline {
  color: #bc5e09;
  font-size: 1.2rem;
}
.hero .cta-btn {
  margin-top: 18px;
}

@media (max-width: 768px) {
  .hero {
    min-height: 200px;
    padding-bottom: 20px;
  }
  .hero .container {
    padding-top: 22px;
  }
  .hero h1 {
    font-size: 1.55rem;
  }
}

/* ---------------------------------------------------
   FEATURES / CARDS / FLEX SECTIONS
-----------------------------------------------------*/
.features, .services {
  margin-bottom: 60px;
}
.features .content-wrapper, .services .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 6px;
}
.feature-item {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 4px 20px 0 rgba(233,168,99,0.11);
  border: 1px solid #fde1be;
  padding: 26px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 230px;
  max-width: 310px;
  flex: 1 1 265px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.20s, transform 0.18s;
}
.feature-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  border-radius: 8px;
  background: #fff2e1;
  box-shadow: 0 1px 6px 0 rgba(210, 143, 64, 0.10);
  object-fit: contain;
}
.feature-item h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  color: #1A2747;
  font-weight: 600;
}
.feature-item p {
  color: #54442c;
  margin-bottom: 0;
}
.feature-item strong {
  color: #eb6a32;
}
.feature-item:hover, .feature-item:focus {
  box-shadow: 0 10px 34px 0 rgba(230,143,43,0.13);
  transform: translateY(-2px) scale(1.03);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(233,168,99,0.09);
  border: 1px solid #fde1be;
  margin-bottom: 20px;
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.19s, transform 0.16s;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 32px 0 rgba(185,111,30,0.19);
  transform: translateY(-2px) scale(1.02);
}

.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: 900px) {
  .feature-grid, .card-container, .content-grid {
    gap: 16px;
  }
  .feature-item {
    max-width: 100%;
    flex: 1 1 100%;
    padding: 22px 12px;
  }
}
@media (max-width: 768px) {
  .feature-grid, .card-container, .content-grid, .footer-content {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}

/* ---------------------------------------------------
   TESTIMONIAL CARDS
-----------------------------------------------------*/
.testimonials {
  background: #fcf3e7;
  border-radius: 18px;
  padding: 40px 0 20px 0;
  box-shadow: 0 4px 20px 0 rgba(233,168,99,0.09);
  margin-bottom: 60px;
}
.testimonials .container {
  padding: 0 20px;
}
.testimonials .content-wrapper {
  gap: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 26px 20px 18px;
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 3px 18px 0 rgba(233,168,99,0.12);
  margin-bottom: 20px;
  border-left: 6px solid #eb6a32;
  position: relative;
}
.testimonial-card p {
  color: #1A2747;
  font-size: 1.07rem;
  margin-bottom: 0;
}
.testimonial-meta {
  color: #7d4c2f;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-style: italic;
  margin-left: auto;
}
.testimonial-card:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .testimonials {
    padding: 25px 0 12px 0;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 14px 12px 14px 12px;
    border-left-width: 4px;
    font-size: 0.98rem;
  }
  .testimonial-meta {
    margin-left: 0;
    margin-top: 4px;
  }
}

/* ---------------------------------------------------
   CONTACT SECTION
-----------------------------------------------------*/
.contact .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact .text-section {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(230,143,43,0.08);
  padding: 24px 12px;
  color: #1A2747;
}
@media (max-width: 768px) {
  .contact .container {
    padding: 0 10px;
  }
}

/* ---------------------------------------------------
   FOOTER
-----------------------------------------------------*/
footer {
  background: #FFF7F0;
  border-top: 1px solid #f6dbc9;
  margin-top: 40px;
  padding-top: 38px;
  font-size: 1rem;
  color: #7d4c2f;
}
.footer-content {
  display: flex;
  flex-direction: row;
  gap: 28px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.footer-logo {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: flex-start;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #7d4c2f;
  font-size: 1rem;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.12s, color 0.14s;
}
.footer-address {
  font-size: 0.99rem;
  color: #54442c;
}
.footer-address address {
  font-style: normal;
  line-height: 1.55;
}
.footer-note {
  color: #9c7e51;
  font-size: 0.97rem;
  text-align: center;
  margin-top: 14px;
  margin-bottom: 10px;
}
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
}

/* ---------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
-----------------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: #fcf3e7;
  color: #1A2747;
  border-top: 3px solid #eb6a32;
  box-shadow: 0 -3px 24px 0 rgba(235,106,50,0.10);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 26px 24px;
  font-size: 1rem;
  min-height: 70px;
  animation: banner-slide-up 0.43s;
}
.cookie-banner p {
  margin: 0;
  color: #68421B;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
}
.cookie-btn {
  padding: 11px 22px;
  border-radius: 30px;
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.13s, color 0.13s, box-shadow 0.15s;
}
.cookie-btn.accept {
  background: #eb6a32;
  color: #fff;
  box-shadow: 0 2px 12px 0 rgba(230,143,43,0.13);
}
.cookie-btn.accept:hover {
  background: #bc5e09;
}
.cookie-btn.reject {
  background: #1A2747;
  color: #fff;
  margin-left: 0;
}
.cookie-btn.reject:hover {
  background: #324fae;
}
.cookie-btn.settings {
  background: #f6dbc9;
  color: #1A2747;
  border: 1px solid #fde1be;
}
.cookie-btn.settings:hover {
  background: #ffd9a6;
}
@keyframes banner-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* Cookie modal */
.cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(40, 26, 18, 0.30);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  animation: modal-fade-in 0.27s;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 28px 0 rgba(233,168,99,0.18);
  padding: 38px 27px 23px 27px;
  max-width: 384px;
  width: 94vw;
  min-width: 240px;
  color: #1A2747;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal-close {
  border: none;
  background: none;
  font-size: 1.8rem;
  color: #eb6a32;
  position: absolute;
  top: 10px;
  right: 13px;
  cursor: pointer;
  z-index: 3200;
}
.cookie-modal-close:hover {
  color: #1A2747;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
}
.cookie-category label {
  font-size: 1rem;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.essential-toggle {
  opacity: 0.66;
  pointer-events: none;
}
@keyframes modal-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 17px 10px;
    font-size: 0.96rem;
  }
  .cookie-modal-content {
    padding: 21px 7px 15px 9px;
    max-width: 98vw;
  }
}

/* ---------------------------------------------------
   FORM ELEMENTS, BUTTONS, INTERACTIVES
-----------------------------------------------------*/
button, input[type="submit"] {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  cursor: pointer;
  outline: none;
}
input[type="text"], input[type="email"], input[type="number"],
textarea, select {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  border: 1px solid #fde1be;
  border-radius: 7px;
  padding: 9px 12px;
  font-size: 1rem;
  margin-bottom: 9px;
  color: #1A2747;
  background: #FFF7F0;
  box-shadow: 0 1px 6px 0 rgba(230,143,43,0.06);
  transition: border 0.14s;
}
input:focus, textarea:focus, select:focus {
  border-color: #eb6a32;
}

/* Confirmation/thanks message */
.confirmation-message, .next-steps-info {
  font-size: 1.08rem;
  color: #1A2747;
}
.next-steps-info {
  color: #7d4c2f;
  font-style: italic;
  margin-bottom: 10px;
}

/* ---------------------------------------------------
   TYPOGRAPHY SCALE
-----------------------------------------------------*/
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.33rem; }
  h3 { font-size: 1.07rem; }
  body, p, .subheadline { font-size: 1rem; }
}

/* ---------------------------------------------------
   GENERAL UTILITIES
-----------------------------------------------------*/
.hide { display: none !important; }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mb-20 { margin-bottom: 20px !important; }
.mt-0 { margin-top: 0 !important; }

/* ---------------------------------------------------
   VISUAL MICRO-INTERACTIONS & TRANSITIONS
-----------------------------------------------------*/
input, textarea, select, button, .cta-btn, .cookie-btn, .main-nav a, .footer-nav a, .mobile-nav a, .feature-item, .card, .testimonial-card {
  transition: box-shadow 0.18s, background 0.14s, color 0.13s, transform 0.12s;
}

/* Accent color selection for radio/check toggles (cookie modal) */
input[type="checkbox"], input[type="radio"] {
  accent-color: #eb6a32;
}

/**********************
   MODAL BACKDROP BLOCK 
***********************/
.modal-backdrop {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(34,24,9,0.13);
  z-index: 30;
}

/**********************
   PRINT MEDIA
***********************/
@media print {
  header, footer, .cookie-banner, .cookie-modal { display: none !important; }
  section, .section { margin: 0 !important; padding: 0 !important; }
}

/* END */