/* RESET & NORMALIZATION */
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;
  background: none;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  color: #23402f;
  background: #FFF8ED; /* subtle paper vibe */
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #c69341;
  text-decoration: none;
  transition: color 0.22s;
}
a:hover, a:focus {
  color: #a97d4f;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 20px;
}
li {
  margin-bottom: 8px;
  font-size: 16px;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 32px;
  font-size: 16px;
  background: #fff;
}
th, td {
  border: 1px solid #dfd6ce;
  padding: 12px 16px;
  text-align: left;
}
th {
  background: #f7eddf;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 1px;
}

/* BRAND TYPOGRAPHY - Vintage Retro Style */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #23402f;
  letter-spacing: 0.5px;
  line-height: 1.14;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 2px 0 #e8f0e4;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  font-weight: 700;
  border-bottom: 3px dotted #c69341;
  padding-bottom: 4px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-weight: 700;
  color: #a97d4f;
  text-shadow: 0 1px 0 #fff8ed;
}
p, .container ul li, .container ol li {
  font-size: 16px;
  color: #23402f;
}
strong, b {
  font-weight: 700;
}

/* VINTAGE RETRO COLORS */
:root {
  --color-primary: #23402f;
  --color-secondary: #FFF8ED;
  --color-accent: #c69341;
  --color-secondary-alt: #E8F0E4;
  --color-dark: #23402f;
  --color-light: #fff;
  --shadow-card: 0 3px 18px 0 rgba(44,33,14,0.09);
}

/* PAGE CONTAINERS & GENERAL LAYOUT */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 700px) {
  .content-wrapper {
    gap: 32px;
  }
}

/* HEADER - Navigation - Retro Vibes */
header {
  background: var(--color-secondary);
  border-bottom: 3px solid #e2d6bd;
  box-shadow: 0 2px 12px 0 rgba(198,147,65,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  padding-bottom: 20px;
}
header nav {
  display: flex;
  gap: 20px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 7px 11px;
  border-radius: 4px;
  color: var(--color-primary);
  position: relative;
  transition: background 0.2s, color 0.2s;
}
header nav a.cta-btn {
  background: var(--color-accent);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(198,147,65,0.14);
  border-radius: 30px;
  padding: 7px 26px;
  margin-left: 14px;
  border: 2.5px solid var(--color-primary);
  text-shadow: 0 1px 0 #7d5521;
  letter-spacing: 1.5px;
}
header nav a.cta-btn:hover,
header nav a.cta-btn:focus {
  background: var(--color-primary);
  color: #fff8ed;
  border-color: var(--color-accent);
  transform: translateY(-2px) scale(1.03);
}
header nav a:hover,
header nav a:focus {
  background: var(--color-accent);
  color: #fff;
}

header img {
  max-height: 52px;
  width: auto;
  vertical-align: middle;
}

/* MOBILE NAVBURGER */
.mobile-menu-toggle {
  position: fixed;
  right: 20px;
  top: 13px;
  z-index: 201;
  background: var(--color-accent);
  color: #fff8ed;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  cursor: pointer;
  box-shadow: 0 2px 12px #d4be92bb;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.18s;
  outline: none;
}
.mobile-menu-toggle:active {
  background: var(--color-dark);
  transform: scale(0.96) rotate(-6deg);
}

/* Hide desktop nav on mobile */
@media (max-width: 900px) {
  header nav {
    display: none;
  }
}
@media (min-width: 900px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,64,47,0.96);
  color: #fff;
  z-index: 200;
  padding: 0;
  display: flex;
  flex-direction: column;
  transform: translateX(100vw);
  transition: transform 0.36s cubic-bezier(0.57,0.13,0.12,0.96);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 12px 18px 0 0;
  background: none;
  border: none;
  color: #c69341;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.18s;
  padding: 0 8px;
}
.mobile-menu-close:hover {
  color: #e6bb71;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  margin: 30px 0 0 32px;
}
.mobile-nav a {
  font-size: 20px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #fff8ed;
  font-weight: 700;
  background: none;
  letter-spacing: 2.5px;
  padding: 7px 0;
  border-radius: 4px;
  transition: background 0.1s, color 0.15s;
  width: 220px;
  box-sizing: border-box;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #c69341;
  color: #fff;
  outline: none;
}
@media (max-width: 390px) {
  .mobile-nav a {
    width: 80vw;
  }
}

/* MAIN LAYOUT SECTIONS (WITH SPACING) */
main {
  padding-bottom: 80px;
}
section {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (min-width: 900px) {
  section {
    padding: 52px 36px;
    margin-bottom: 70px;
  }
}

/* FLEX UTILITIES & PATTERNS */
.card-container, .card-grid, .features-list, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fffef8;
  border-radius: 12px;
  box-shadow: 0 3px 11px 0 #e6dbba96;
  padding: 24px 18px;
}
.content-grid {
  gap: 20px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FEATURED LISTS - vintage icon retro accents */
.features-list {
  gap: 28px;
  margin-top: 14px;
}
.feature {
  background: #f7eddf;
  border: 2px dashed #c69341;
  border-radius: 18px;
  padding: 24px 16px 28px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 180px;
  flex: 1 1 240px;
  box-shadow: 0 2px 14px 0 #e6dbba44;
  position: relative;
  transition: box-shadow 0.19s, transform 0.16s;
}
.feature img {
  width: 52px;
  height: 52px;
  margin-bottom: 10px;
  filter: sepia(0.3) hue-rotate(-18deg) saturate(0.92);
  opacity: 0.89;
}
.feature h3 {
  color: #3c6d4f;
  font-size: 22px;
  text-shadow: 0 1px 0 #fff;
}
.feature .price {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #a97d4f;
  font-size: 18px;
  margin-top: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}
.feature:hover,
.feature:focus-within {
  box-shadow: 0 8px 24px -1px #c6934144, 0 1.5px 8px #fffbe5;
  transform: translateY(-2px) scale(1.025);
  z-index: 2;
}

/* CALL-TO-ACTION BUTTONS - Retro Rounded */
.cta-btn,
button.cta-btn,
input[type="submit"].cta-btn {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 10px 34px;
  border: 3px solid var(--color-primary);
  border-radius: 29px;
  box-shadow: 0 2px 8px 0 #e6dbba99;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.17s, box-shadow 0.22s;
}
.cta-btn:hover,
.cta-btn:focus {
  background: var(--color-primary);
  color: #fff8ed;
  border-color: var(--color-accent);
  transform: scale(1.075);
  box-shadow: 0 6px 25px #c6934130, 0 2px 12px #fffbe5;
  outline: none;
}

/* TESTIMONIALS  */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff8ed;
  border-radius: 12px;
  box-shadow: 0 4px 20px 0 #cdbe9e5e;
  margin-bottom: 22px;
  border-left: 6px solid var(--color-accent);
  font-style: italic;
  color: #222;
  font-size: 18px;
  line-height: 1.35;
  position: relative;
}
.testimonial-card p {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: #31271a;
  margin-bottom: 0;
  flex: 1;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #a97d4f;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.6px;
}

/* FOR TABLES WITH TRANSPARENT BACKS */
table {
  background: #fffbf4;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px #e6dbba40;
}

/* FOOTER */
footer {
  background: #ede2c6;
  color: #152819;
  border-top: 3px solid #e2d6bd;
  margin-top: 42px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 36px 14px 22px 14px;
}
footer img {
  margin-bottom: 8px;
  max-width: 80px;
  height: auto;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
footer nav a {
  color: #3c6d4f;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 15px;
}
footer nav a:hover,
footer nav a:focus {
  color: var(--color-accent);
  text-decoration: underline 1.5px dotted #c69341;
}
footer p {
  margin: 8px 0 0 0;
  font-size: 14px;
  text-align: center;
  color: #726244;
}

/* MAP PLACEHOLDER & LOCATION */
.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  background: repeating-linear-gradient(135deg,#f7eddf 0 10px,#e3dacb 10px 20px);
  border: 2px dashed #c69341;
  border-radius: 9px;
  margin-top: 16px;
  color: #665326;
  font-size: 16px;
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2500;
  background: #fff8ed;
  border-top: 3px solid #c69341;
  box-shadow: 0 -3px 22px 0 #c6934120;
  color: #23402f;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 14px;
  font-size: 16px;
  flex-wrap: wrap;
  justify-content: center;
  transition: transform 0.22s cubic-bezier(.69,0,.18,1);
}
.cookie-consent-banner.hide {
  transform: translateY(180px);
  pointer-events: none;
  opacity: 0;
}
.cookie-consent-banner .cookie-consent-actions {
  display: flex;
  gap: 18px;
}
.cookie-consent-banner button {
  background: var(--color-accent);
  color: #fff8ed;
  border: 2px solid #23402f;
  border-radius: 20px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 7px 23px;
  margin: 0;
  cursor: pointer;
  transition: background 0.15s, color 0.17s, border 0.18s, transform 0.18s;
  box-shadow: 0 2px 8px #dec19533;
}
.cookie-consent-banner button:hover, 
.cookie-consent-banner button:focus {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-accent);
  transform: scale(1.04);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 2600;
  background: rgba(35, 64, 47, 0.86);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInModal 0.32s;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  min-width: 334px;
  max-width: 96vw;
  background: #fff8ed;
  border-radius: 14px;
  box-shadow: 0 24px 48px 0 #c6934130;
  padding: 34px 22px 28px 22px;
  text-align: left;
  position: relative;
  color: #23402f;
}
.cookie-modal-content h3 {
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 11px;
}
.cookie-category input[type="checkbox"] {
  accent-color: #c69341;
  width: 21px; height: 21px;
}
.cookie-category label {
  font-size: 16px;
}
.cookie-modal-content .modal-actions {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 7px; right: 14px;
  background: none;
  border: none;
  color: #a97d4f;
  font-size: 2rem;
  cursor: pointer;
}
.cookie-modal .cookie-modal-close:hover {
  color: #c69341;
}
@media (max-width: 480px) {
  .cookie-modal-content {
    min-width: 220px;
    padding: 18px 7vw 16px 7vw;
    font-size: 15px;
  }
}

/* Responsive Typography */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.2rem; }
}

/* RESPONSIVE FLEX + LAYOUT */
@media (max-width: 900px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  section { padding: 28px 5px; }
  .card-container, .card-grid, .features-list, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}

@media (max-width: 700px) {
  .features-list { gap: 14px; }
  section { margin-bottom: 40px; }
  .testimonial-card { font-size: 15px; padding: 13px; }
}

/* UTILITIES & MICROINTERACTIONS */
hr { border: none; height: 2px; background: #e8f0e4; margin: 22px 0; }

::-webkit-scrollbar {
  width: 10px;
  background: #ede2c6;
}
::-webkit-scrollbar-thumb {
  background: #c69341;
  border-radius: 4px;
}

/* FORM INPUTS, FOCUSES */
input, textarea, select {
  font-size: 16px;
  border-radius: 6px;
  border: 1.7px solid #d6c59f;
  padding: 7px 13px;
  background: #fff;
  margin-bottom: 14px;
  transition: border 0.18s;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
input:focus, textarea:focus, select:focus {
  border-color: #a97d4f;
  outline: none;
}

/* Z-INDEXES FOR MENUS BANNERS ETC */
.mobile-menu, .mobile-menu-toggle, .mobile-menu-close { z-index: 200; }
.cookie-consent-banner { z-index: 2500; }
.cookie-modal { z-index: 2600; }

/* VINTAGE NOSTALGIA - SUBTLE DECORATIVE BORDERS & PATTERNS */
section {
  border: 3px solid #e2d6bd;
  background: repeating-linear-gradient(135deg,#fff8ed 0 24px,#ede2c6 24px 48px);
}
@media (max-width: 600px) {
  section { border-width: 2px; }
}
.feature, .card, .testimonial-card, table {
  border-radius: 14px;
}
.content-wrapper > ul > li::before {
  content: '\2724';
  font-size: 13px;
  color: #c69341;
  margin-right: 9px;
  vertical-align: 1px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* Card-like Elements */
.card {
  background: #fffef8;
  border: 2px solid #e8f0e4;
  box-shadow: 0 2px 12px #cdbe9e17;
  margin-bottom: 20px;
  padding: 22px 14px;
  position: relative;
}
.card:last-child { margin-bottom: 0; }

/* Accessibility - Focus States */
:focus-visible {
  outline: 2.5px dotted #a97d4f;
  outline-offset: 2px;
}

/* --- END OF CSS --- */
