/* ==========================================================================
   CSS RESET & NORMALIZE (mobile-first)
   ========================================================================== */
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;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F6F3ED;
  color: #352813;
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: repeating-linear-gradient(135deg, #EBDEC8 0, #EBDEC8 2px, transparent 2px, transparent 40px), repeating-linear-gradient(45deg, #E6B07B 0, #E6B07B 2px, transparent 2px, transparent 40px);
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
}
a { color: inherit; text-decoration: underline; transition: color 0.2s; }
a:hover, a:focus { color: #B04A1B; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; } 
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Impact, Arial, sans-serif;
  font-weight: 700;
  color: #194672;
  letter-spacing: 0.03em;
}
h1 { font-size: 2.375rem; margin-bottom: 24px; }
h2 { font-size: 1.5rem; margin-bottom: 20px; }
h3 { font-size: 1.125rem; margin-bottom: 12px; }
strong { color: #B04A1B; font-weight: 700; }

/* ==========================================================================
   VINTAGE RETRO COLORS & VIBES
   ==========================================================================
   Palette: #194672 (primary blue), #E9ECEF/#F6F3ED/#FFFAF3 (vintage off-white), #B04A1B/#DF6325 (burned orange/caramel), #687F8D (desaturated blue-grey), #DAC89D/#E6B07B (beige/yellow)
   ==========================================================================
*/
:root {
  --primary: #194672;
  --primary-dark: #112e41;
  --secondary: #fff8ec;
  --accent: #B04A1B;
  --accent2: #DF6325;
  --background: #F6F3ED;
  --surface: #fff;
  --retro-beige: #EBDEC8;
  --retro-yellow: #E6B07B;
  --retro-bluegrey: #687F8D;
  --retro-shadow: #DAC89D;
  --font-display: 'Montserrat', Impact, Arial, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* Vintage card & shadow style */
.card, .testimonial-card, .content-wrapper {
  background: var(--surface);
  border-radius: 18px;
  border: 2px solid var(--retro-beige);
  box-shadow: 0 7px 28px 0 rgba(194,172,117,0.13), 0 2px 7px 0 rgba(44,32,18,0.03);
}

/* ==========================================================================
   LAYOUT WRAPPERS, SECTIONS, CONTAINERS
   ==========================================================================
*/
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  margin-bottom: 24px;
  padding: 24px 20px 24px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section {
  max-width: 760px;
  margin: 0 auto;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/****** Testimonials ******/
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: #fff8ec;
  color: #26324c;
  border: 2px solid var(--retro-yellow);
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 3px 12px 0 rgba(176,74,27,0.07);
  font-size: 1.08rem;
  position: relative;
  min-width: 0;
  z-index: 1;
}
.testimonial-card strong {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 1.08em;
}
.testimonial-card p {
  font-style: italic;
  line-height: 1.625;
  color: #352813;
}

/****** Price / Service Highlight ******/
.service-price {
  background: var(--retro-yellow);
  color: var(--primary);
  font-family: var(--font-display);
  border-radius: 8px;
  margin-left: 18px;
  padding: 3px 14px 3px 12px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 2px 3px rgba(176,74,27,0.08);
}

/* ==========================================================================
   HEADER, NAVIGATION, LOGO, CTA
   ==========================================================================
*/
header {
  background: var(--retro-yellow);
  border-bottom: 2px solid var(--accent);
  padding: 0 0 0 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  padding-top: 13px;
  padding-bottom: 13px;
  min-height: 60px;
}
header img {
  height: 46px;
  width: auto;
  /* retro border effect */
  filter: sepia(0.08) contrast(1.02);
}
header nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-family: var(--font-display);
  font-size: 1.08rem;
  position: relative;
  letter-spacing: 0.03em;
  color: var(--primary);
  padding: 7px 12px;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
  text-transform: uppercase;
}
header nav a:hover, header nav a:focus {
  background: var(--accent);
  color: #fff;
  outline: none;
}
.cta, .cta.primary {
  font-family: var(--font-display);
  background: var(--accent);
  color: #fff;
  border-radius: 28px;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 11px 36px 11px 28px;
  box-shadow: 0 2px 10px 0 rgba(176,74,27,0.13);
  border: 2px solid var(--accent2);
  letter-spacing: 1.8px;
  cursor: pointer;
  margin-left: 10px;
  display: inline-block;
  text-decoration: none;
  position: relative;
  transition: background 0.2s, color 0.2s, border 0.2s, transform 0.13s;
}
.cta:hover, .cta:focus {
  background: var(--primary);
  color: #fff8ec;
  border-color: var(--primary);
  transform: translateY(-2px) scale(1.04) skew(-1deg, 1deg);
}

/* ==========================================================================
   MOBILE MENU / BURGER NAVIGATION
   ==========================================================================
*/
.mobile-menu-toggle {
  display: block;
  background: var(--accent);
  color: #fff8ec;
  font-size: 2rem;
  border: none;
  border-radius: 10px;
  padding: 5px 12px 3px 12px;
  cursor: pointer;
  margin-left: 14px;
  transition: background 0.18s, color 0.16s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(34,34,34,0.08);
  z-index: 100;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--primary);
  color: #fff;
  outline: 2px solid #194672;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 92vw;
  max-width: 370px;
  height: 100vh;
  background: var(--retro-yellow);
  color: var(--primary);
  box-shadow: -2px 0 22px 1px rgba(40,32,16,0.17);
  z-index: 500;
  transform: translateX(102%);
  transition: transform 0.32s cubic-bezier(.57,.1,.48,.99);
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #763506;
  align-self: flex-end;
  margin: 14px 16px 7px 0;
  cursor: pointer;
  z-index: 501;
  padding: 0;
  line-height: 1;
  transition: color 0.22s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color: var(--primary); outline: none; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 35px 0 0 35px;
}
.mobile-nav a {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.18rem;
  letter-spacing: 0.05em;
  padding: 13px 0 13px 0;
  transition: color 0.17s, background 0.19s;
  border-radius: 7px;
  text-decoration: none;
  width: max-content;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--secondary);
}
@media (min-width: 901px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
  header nav { display: flex !important; }
}
@media (max-width: 900px) {
  header nav { display: none !important; }
  .mobile-menu-toggle { display: block; }
}

/* Backdrop for mobile menu */
.mobile-menu.open::before {
  content: '';
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(48,36,11,0.27);
  z-index: 490;
  pointer-events: inherit;
  display: block;
}


/* ==========================================================================
   MAIN, SECTION, ARTICLE STRUCTURE
   ==========================================================================
*/
main { 
  min-height: 61vh;
  margin-bottom: 44px;
}
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
  width: 100%;
}
section:last-child {
  margin-bottom: 0;
}
@media (max-width: 600px){
  .section { padding: 24px 4px; }
}

/* ==========================================================================
   LISTS, ICONS, LIST LAYOUT
   ==========================================================================
*/
ul, ol {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}
.content-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.content-wrapper ul li {
  padding-left: 0px;
  position: relative;
  font-size: 1.07rem;
  color: #6a4b27;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 14px;
  line-height: 1.58;
}
.content-wrapper ul li img {
  height: 30px;
  width: 30px;
  filter: sepia(0.14) hue-rotate(-13deg) saturate(0.73);
}

/******** Address ********/
address {
  font-style: normal;
  font-size: 1.03rem;
  color: #26324c;
  margin: 6px 0 16px 0;
  line-height: 1.6;
}
address strong { color: #B04A1B; }

/* ==========================================================================
   FOOTER
   ==========================================================================
*/
footer {
  background: var(--retro-yellow);
  color: var(--primary);
  border-top: 2px solid var(--accent);
  padding: 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 16px 20px 22px 20px;
}
footer img {
  height: 38px;
  width: auto;
  margin-bottom: 6px;
  filter: sepia(0.18) contrast(1.12);
}
footer nav {
  display: flex;
  gap: 18px;
}
footer nav a {
  font-family: var(--font-display);
  font-size: 0.97rem;
  color: var(--primary);
  padding: 5px 11px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  opacity: 0.93;
}
footer nav a:hover, footer nav a:focus {
  background: var(--accent);
  color: #fff;
  outline: none;
}
footer p {
  font-size: 0.83rem;
  margin-top: 4px;
  color: #7b5b26;
}

/* ==========================================================================
   BUTTONS
   ==========================================================================
*/
button, .cta {
  outline: none;
  border: none;
  cursor: pointer;
}
button:active, button:focus, .cta:focus {
  outline: 2px solid #194672;
}

/* ==========================================================================
   RETRO TYPOGRAPHY & MICRO-DETAILS
   ==========================================================================
*/
.text-section {
  font-family: var(--font-body);
  color: #45300f;
  font-size: 1.12em;
  line-height: 1.7;
  letter-spacing: 0.01em;
  margin-bottom: 0;
}
.text-section h3 { color: var(--accent); font-size: 1.13em; }

hr {
  border: 0;
  border-top: 1.5px dashed #EBDEC8;
  margin: 36px 0 32px 0;
}

/* ==========================================================================
   RESPONSIVE
   ==========================================================================
*/
@media (max-width: 900px) {
  .container {
    max-width: 99vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .content-wrapper, .card {
    padding: 17px 7px;
  }
  .feature-item {
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .container { padding-left: 3vw; padding-right: 3vw; }
  header .container { flex-direction: row; }
  .text-image-section { flex-direction: column; gap:18px; }
  .content-grid, .card-container { flex-direction: column; gap: 20px; }
  .content-wrapper, .card, .testimonial-card { padding: 13px 6vw; }
  .section { padding: 22px 0 0 0; }
}
@media (max-width: 500px){
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.18rem; }
  .service-price { margin-left: 6px; font-size: 0.96rem; }
}

/* ==========================================================================
   MICRO-INTERACTIONS & HOVER EFFECTS
   ==========================================================================
*/
.card, .testimonial-card, .content-wrapper, .cta, .mobile-menu-toggle, .mobile-menu-close, .mobile-nav a {
  transition: box-shadow 0.22s, transform 0.16s, background 0.185s, color 0.18s, border 0.13s;
}
.card:hover, .testimonial-card:hover, .content-wrapper:hover {
  box-shadow: 0 12px 36px 0 rgba(176,74,27,0.16), 0 2px 7px 0 rgba(44,32,18,0.03);
  transform: translateY(-2px) scale(1.012);
}

.cta:active, .mobile-menu-toggle:active {
  transform: scale(0.98);
}

/****** ul li hover for retro underline effect *****/
.content-wrapper ul li:hover {
  background: #f5edd9;
  border-radius: 5px;
  color: #b46b25;
}

/* ==========================================================================
   RETRO-INSPIRED DECOR (Optional; only subtle UI details)
   ==========================================================================
*/
section {
  position: relative;
  overflow: visible;
}
section::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -30px;
  left: 25px;
  width: 90px;
  height: 13px;
  border-radius: 8px / 6px;
  background: linear-gradient(87deg, #EBDEC8 80%, #fff0d1 100%);
  opacity: 0.38;
  z-index: 0;
}
@media (max-width:680px) { section::after{ display: none } }

/* ==========================================================================
   COOKIE CONSENT - BANNER & MODAL
   ==========================================================================
*/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: var(--retro-yellow);
  color: #2d2430;
  border-top: 3px solid var(--accent2);
  box-shadow: 0 -6px 28px #B04A1B20;
  z-index: 9999;
  padding: 19px 8vw 15px 8vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  animation: slideUp 0.4s cubic-bezier(.4,0,.2,1);
}
@keyframes slideUp {
  from { transform: translateY(110%); opacity:0; } to { transform: translateY(0); opacity:1;}
}
.cookie-banner p {
  font-size: 1rem;
  color: #2d2430;
  line-height: 1.7;
  margin-bottom: 0px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 5px;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-size: 0.97rem;
  padding: 9px 22px;
  border-radius: 20px;
  border: 2px solid var(--primary);
  background: #fff8ec;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.02em;
  margin-right: 8px;
  transition: background 0.17s, color 0.17s, border 0.19s, box-shadow 0.11s;
  box-shadow: 0 2px 8px rgba(34,34,34,0.06);
}
.cookie-banner button.accept {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent2);
}
.cookie-banner button.reject {
  background: #fff;
  color: #B04A1B;
  border-color: var(--accent2);
}
.cookie-banner button.settings {
  background: var(--primary);
  color: #fff8ec;
  border-color: var(--primary);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--primary-dark);
  color: #fff;
  border-color: #194672;
}

/****** Cookie Modal Popup ******/
.cookie-modal-backdrop {
  position: fixed; left:0; top:0; width:100vw; height:100vh;
  background: rgba(26,33,44,0.20);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.17s cubic-bezier(.4,0,.2,1);
}
@keyframes fadeIn { from{opacity:0;} to{opacity:1;} }
.cookie-modal {
  background: var(--surface);
  border-radius: 15px;
  box-shadow: 0 7px 38px 0 rgba(194,142,87,0.21);
  padding: 32px 26px 21px 26px;
  max-width: 430px;
  width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: var(--font-body);
  color: #3d2e13;
  position: relative;
  z-index: 10001;
}
.cookie-modal h2 {color:var(--primary); font-size:1.18rem; margin-bottom: 10px; }
.cookie-modal .close-btn {
  position: absolute;
  right: 22px;
  top: 14px;
  background: none;
  border: none;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--accent2);
  cursor: pointer;
}
.cookie-modal-category {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 15px;
}
.cookie-modal-category label {
  display: flex; align-items: center; gap: 12px;
  font-size: 1.05rem;
  position: relative;
  color: var(--primary-dark);
}
.cookie-modal-category input[type="checkbox"] {
  accent-color: var(--accent2);
  width: 18px; height: 18px;
  border-radius: 4px;
  cursor: pointer;
  margin: 0 3px 0 0;
}
.cookie-modal-category .essential {
  font-weight: 700; opacity: 0.67;
}
.cookie-modal .cookie-actions { margin-top: 12px; }

/* Remove modal on desktop sticky if needed */
@media (max-width: 900px){
  .cookie-banner {padding: 13px 2vw;}
  .cookie-modal{padding:18px 4vw;}
}

/* ==========================================================================
   FORM ELEMENTS, FOCUS, ETC. (General Styles)
   ==========================================================================
*/
input, textarea, select {
  font-family: var(--font-body);
  background: #fbf8f3;
  color: #2c1917;
  border-radius: 8px;
  border: 1.5px solid #e0c795;
  font-size: 1rem;
  padding: 9px 13px;
  margin-bottom: 17px;
  box-shadow: 0 1px 4px #dac89d28;
  transition: box-shadow .17s, border .15s;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--primary);
  border-color: var(--primary);
}

/* ==========================================================================
   UTILITY CLASSES
   ==========================================================================
*/
.align-center { text-align: center; }
.flex { display: flex !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-col { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.gap-8 { gap: 8px !important; }
.gap-16 { gap: 16px !important; }
.gap-24 { gap: 24px !important; }
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }

/* ==========================================================================
   PRINT: basic type fixes
   ==========================================================================
*/
@media print {
  html, body { background: #fff !important; color: #000 !important; }
  .cookie-banner, .mobile-menu { display: none !important; }
}

/****** END OF FILE ******/
