/* 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: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #342D2A;
  background: #FFFDF8;
  line-height: 1.6;
  font-size: 1rem;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
}
a {
  color: #07365C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #DB5719;
  outline: none;
}
ul, ol {
  padding-left: 24px;
}
li {
  margin-bottom: 12px;
}

/* VINTAGE RETRO COLOR PALETTE */
:root {
  --color-primary: #1F2937;
  --color-secondary: #F4B860;
  --color-accent: #FAFAFA;
  --color-retro1: #DB5719;  /* orange */
  --color-retro2: #6C423D;  /* brown */
  --color-retro3: #C6AC8F;  /* tan */
  --color-retro4: #F9E7D7;  /* pale */
  --color-link: #2075AF;
  --color-gray: #EDE0D2;
  --color-border: #D3A076;
  --color-vintage-shadow: rgba(100, 51, 36, 0.08);
  --color-dark: #342D2A;
}

/* VINTAGE RETRO FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;900&family=Roboto:wght@400;500;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.3rem;
  letter-spacing: 0.06em;
  color: var(--color-retro1);
  text-shadow: 2px 2px 0 #F9E7D7, 0 6px 12px var(--color-vintage-shadow);
}
h2 {
  font-size: 2rem;
  color: var(--color-primary);
  text-shadow: 1px 1px 0 #F9E7D7;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  color: var(--color-retro2);
  margin-bottom: 10px;
}

p {
  font-size: 1.07rem;
  margin-bottom: 18px;
}
strong {
  font-weight: 700;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFDF8;
  border-bottom: 2px dashed var(--color-border);
  border-radius: 20px;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-retro4);
  border: 2px solid var(--color-border);
  margin-bottom: 20px;
  position: relative;
  border-radius: 20px;
  box-shadow: 0 5px 20px var(--color-vintage-shadow);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.23s, transform 0.23s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 10px 32px var(--color-retro2), 0 0 0 4px #FAD8B0;
  transform: translateY(-4px);
}

.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 {
  background: #FFFDF8;
  border: 2px solid #FAD8B0;
  border-radius: 18px;
  box-shadow: 0 4px 15px rgba(53,30,25,0.11);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  margin-bottom: 20px;
  max-width: 540px;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card p {
  color: #342D2A;
  font-size: 1.13rem;
  font-style: italic;
  font-weight: 500;
}
.testimonial-card span {
  color: #A1815B;
  font-size: 1rem;
  font-weight: 700;
}
.testimonial-card div {
  color: #DB5719;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FAF7ED;
  border: 2px solid #EAD7B1;
  border-radius: 16px;
  padding: 18px 18px 14px 18px;
  box-shadow: 0 2px 10px rgba(180,108,57,0.05);
}

/* BUTTONS & CTA */
.cta, .cta.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  border-radius: 25px;
  padding: 12px 34px;
  font-size: 1.18rem;
  margin-top: 12px;
  transition: background 0.20s, color 0.18s, box-shadow 0.19s, transform 0.22s;
  text-shadow: 1px 1px 0 #F9E7D7;
  box-shadow: 1px 3px 16px rgba(85, 65, 37, 0.07);
  border: 0;
  outline: none;
  cursor: pointer;
  background: linear-gradient(90deg, var(--color-retro1) 60%, var(--color-retro2) 100%);
  color: #fff;
}
.cta {
  background: linear-gradient(90deg, #f9ce8b 75%, #E9A551 100%);
  color: #483419;
  border: 2px solid #FAE2C3;
}
.cta.primary {
  background: linear-gradient(90deg, #DB5719 75%, #A04B1F 100%);
  color: #FFFDF8;
  border: 2px solid #FBBB87;
}
.cta:hover, .cta:focus {
  background: linear-gradient(90deg, #A04B1F 90%, #DB5719 100%);
  box-shadow: 0 0 0 5px #FAD8B0;
  color: #FFFDF8;
  transform: translateY(-2px) scale(1.03);
}
.cta.primary:hover, .cta.primary:focus {
  background: linear-gradient(90deg, #C94B0D 15%, #DB5719 100%);
  color: #FFFDF8;
}

button {
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #F9E7D7;
  border-bottom: 3px solid #DFB68B;
  padding: 0 0 0 0;
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 24px;
}
header a img {
  height: 48px;
  width: auto;
  margin-right: 20px;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.07rem;
  color: #6C423D;
  padding: 6px 16px;
  position: relative;
  border-radius: 6px;
  transition: background 0.14s, color 0.14s;
}
nav a.cta.primary {
  margin-left: 24px;
}
nav a:hover, nav a:focus {
  background: #FAD8B0;
  color: #DB5719;
}
nav a.cta.primary:hover, nav a.cta.primary:focus {
  background: #DB5719;
  color: #fff !important;
}
.mobile-menu-toggle {
  display: none;
  margin-left: auto;
  font-size: 2.1rem;
  background: #FAF3DF;
  border-radius: 50%;
  padding: 6px 12px;
  color: #6C423D;
  border: 2px solid #FAD8B0;
  transition: background 0.12s, color 0.15s, box-shadow 0.2s;
  z-index: 1100;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #DB5719;
  color: #fff;
  box-shadow: 0 0 0 3px #FAE2C3;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #F9E7D7;
  z-index: 2000;
  overflow-y: auto;
  transition: transform 0.33s cubic-bezier(0.44, 0.13, 0.59, 0.95);
  transform: translateX(-100vw);
}
.mobile-menu.active {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(0);
  box-shadow: 0 0 40px #BC8B5D;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.5rem;
  background: none;
  color: #6C423D;
  border: none;
  margin: 12px 20px 0 0;
  transition: color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #DB5719;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 8px;
  margin: 32px 28px;
}
.mobile-nav a {
  width: 100%;
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 14px 8px;
  border-radius: 12px;
  color: #6C423D;
  background: none;
  border: 0;
  margin-bottom: 4px;
  transition: background 0.14s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FAD8B0;
  color: #DB5719;
}

/* --- MAIN LAYOUT SPACING --- */
main {
  margin-top: 0;
  margin-bottom: 40px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* --- CTA SECTIONS --- */
section.cta {
  background: repeating-linear-gradient(135deg, #F9E7D7, #F4B860 14px, #FFFDF8 24px, #FFFDF8 34px);
  border-radius: 24px;
  box-shadow: 0 6px 28px rgba(213,144,124,0.09);
  margin-bottom: 0;
  text-align: center;
  padding: 56px 18px;
  border: 3px solid #FBBB87;
}
section.cta h2 {
  color: #DB5719;
  text-shadow: 1px 1px 0 #fff8ed;
  font-weight: 900;
  font-size: 2.2rem;
}
section.cta p {
  font-size: 1.16rem;
}

/* --- FOOTER --- */
footer {
  background: #6C423D;
  color: #FFFDF8;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding-top: 42px;
  padding-bottom: 28px;
  margin-top: 40px;
}
footer .container {
  flex-direction: row;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}
.footer-menu a {
  color: #FAD8B0;
  font-weight: 600;
  font-size: 1rem;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #fff;
  text-decoration: underline;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #FFFDF8;
  margin-bottom: 12px;
}
.contact-info a {
  color: #FAE2C3;
  font-weight: 500;
}
.social-links {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 14px;
}
.footer-brand-logo img {
  height: 36px;
  filter: sepia(0.25) hue-rotate(-18deg);
  opacity: 0.98;
}

/* --- CARDS and LISTS --- */
ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
ul li {
  display: flex;
  gap: 13px;
  align-items: center;
  background: none;
  color: #342D2A;
  font-size: 1.07rem;
  letter-spacing: 0.01em;
}
ul li img {
  height: 28px;
  width: 28px;
  margin-right: 6px;
  min-width: 28px;
}
.price {
  font-weight: 700;
  color: #DB5719;
  margin-top: 8px;
  font-size: 1.21rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

ol {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 30px;
  padding-left: 26px;
}
ol li {
  font-size: 1.08rem;
}

.text-section {
  background: #F7EEE0;
  border: 2px solid #DFB68B;
  border-radius: 11px;
  padding: 13px 17px;
  font-size: 1.08rem;
  font-weight: 500;
  margin-bottom: 18px;
}

.map {
  margin-top: 17px;
  padding: 12px 16px;
  border-radius: 8px;
  background: #FAD8B0;
  color: #342D2A;
  font-size: 1.07rem;
  font-weight: 500;
}
.map img {
  height: 24px;
  margin-right: 7px;
  vertical-align: middle;
}

/* --- FORM STYLES --- */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border: 2px solid #DFB68B;
  border-radius: 10px;
  background: #FFFDF8;
  padding: 12px;
  margin-bottom: 14px;
  width: 100%;
  color: #342D2A;
  box-shadow: 0 1px 7px #EBDDC6;
  transition: border 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #DB5719;
  outline: none;
}

label {
  font-size: 1.07rem;
  font-weight: 600;
  margin-bottom: 6px !important;
  color: #342D2A;
}

/* ---- COOKIE CONSENT FIXED BANNER ---- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 3300;
  background: #F8E4C5;
  color: #6C423D;
  box-shadow: 0 -2px 22px #B19C85;
  padding: 24px 16px 18px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 1.01rem;
  font-family: 'Roboto', Arial, sans-serif;
  border-top: 2px solid #FAE2C3;
  animation: cookieSlideUp 0.45s cubic-bezier(0.34,0.71,0.56,1.13);
}
@keyframes cookieSlideUp {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btns {
  display: flex; gap: 10px;
}
.cookie-banner button {
  padding: 9px 18px;
  border-radius: 17px;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-left: 4px;
  transition: background 0.17s, color 0.13s;
  border: 2px solid #DB5719;
}
.cookie-banner .accept {
  background: #DB5719;
  color: #fff;
  border-color: #DB5719;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus{
  background: #FAD8B0;
  color: #DB5719;
}
.cookie-banner .reject {
  background: #fff7ef;
  color: #A1815B;
  border-color: #DFB68B;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus{
  background: #DB5719;
  color: #fff;
}
.cookie-banner .settings {
  background: #F9E7D7;
  color: #6C423D;
  border-color: #FAE2C3;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus{
  background: #DB5719;
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(52, 45, 42, 0.62);
  z-index: 3400;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.26s linear;
  animation: fadeInPop 0.33s cubic-bezier(0.64,0.02,0.51,1.36);
}
@keyframes fadeInPop {
  0% { opacity: 0; transform: scale(0.92); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal {
  background: #FFFDF8;
  border: 2.5px solid #F4B860;
  border-radius: 20px;
  max-width: 410px;
  width: 98%;
  padding: 36px 30px 29px 30px;
  color: #342D2A;
  font-family: 'Roboto', Arial, sans-serif;
  box-shadow: 0 8px 48px #B99B79;
  position: relative;
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  margin-bottom: 15px;
}
.cookie-modal p {
  font-size: 1.02rem;
  margin-bottom: 14px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 18px 0 21px 0;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FAD8B0;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 1.04rem;
}
.cookie-category input[type=checkbox] {
  accent-color: #DB5719;
  width: 23px;
  height: 23px;
}
.cookie-modal .save-cookies {
  background: #DB5719;
  color: #fff;
  border-radius: 16px;
  border: 0px;
  padding: 11px 30px;
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-top: 14px;
  transition: background 0.13s;
}
.cookie-modal .save-cookies:hover, .cookie-modal .save-cookies:focus{
  background: #A04B1F;
  color: #fff;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 13px; right: 22px;
  font-size: 1.7rem;
  color: #6C423D;
  background: none;
  border: none;
}
.cookie-modal .close-cookie-modal:hover, .cookie-modal .close-cookie-modal:focus {
  color: #DB5719;
}

/* --- MEDIA QUERIES --- */
@media (max-width: 1200px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 1000px) {
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px !important;
  }
}
@media (max-width: 768px) {
  :root { font-size: 15px; }

  header .container {
    flex-direction: row;
    align-items: center;
    padding: 4px 10px;
    gap: 8px;
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-menu {
    flex-direction: column;
    gap:10px;
    margin-bottom:8px;
  }
  .container {
    max-width: 100vw;
    padding: 0 10px;
  }
  section {
    padding: 30px 6px 28px 6px;
    margin-bottom: 36px;
  }
  .cta {
    padding: 10px 9px;
    font-size: 1.07rem;
  }
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.18rem; }
  h3 { font-size: 1.01rem; }
  .testimonial-card {
    padding: 15px 8px;
    font-size: 1rem;
  }
  .footer-brand-logo img {
    margin-top: 20px;
    height: 24px;
  }
  .social-links {
    gap:10px;
  }
  .cookie-modal {
    padding: 22px 6.5vw;
    max-width: 97vw;
  }
  .cookie-banner {
    padding: 15px 2vw 12px 2vw;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    font-size: 0.98rem;
  }
  .feature-item, .card {
    padding: 17px 10px !important;
  }
  .testimonial-card {
    max-width: 99vw;
  }
  .card-container, .content-grid {
    gap: 10px;
  }
}
@media (max-width: 500px) {
  :root { font-size: 14px; }
  h1 { font-size: 1.14rem; }
  h2 { font-size: 1.06rem; }
  .footer-menu a, .contact-info {
    font-size: 0.95rem;
  }
}

@media (max-width: 900px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

/* --- UTILITIES --- */
.hide { display: none !important; }
.show { display: block !important; }

/* Utility border for retro card edges and headlines */
h1, h2 {
  border-bottom: 2px dotted #EAD7B1;
  padding-bottom: 6px;
  background-image: repeating-linear-gradient(90deg, #F9E7D7 0 15px, transparent 15px 20px);
  background-repeat: repeat-x;
  background-size: auto 2px;
  border-radius: 0 0 16px 16px;
}

/* Micro-interaction for hover on cards */
.card, .testimonial-card {
  transition: transform 0.25s, box-shadow 0.23s;
}
.card:hover, .testimonial-card:hover {
  transform: translateY(-5px) scale(1.011);
  box-shadow: 0 4px 28px #DB571950;
}

/* --- END --- */
