/* -------------------------
CSS 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;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section { display: block; }
body {
  line-height: 1.5;
  background: #FEF8F4;
  color: #29443b;
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; background: transparent; }
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
}

/* ---------------------------------------
WEBFONTS
--------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
@font-face {
  font-family: 'Libre Baskerville';
  font-style: normal;
  font-weight: 700;
  src: local('Libre Baskerville Bold'), local('LibreBaskerville-Bold'),
    url('https://fonts.gstatic.com/s/librebaskerville/v8/kmKnZrc3Hgbbcjq75U4uslyuy4kn0qNXaxM.woff2') format('woff2');
  unicode-range: U+0000-00FF;
}

/* ------------------------
CUSTOM PROPERTIES
------------------------ */
:root {
  --primary: #25645B;
  --secondary: #E3DED8;
  --accent: #A05A00;
  --accent-light: #C9892B;
  --background: #FEF8F4;
  --card-bg: #FAF4EA;
  --text-main: #28332d;
  --text-dark: #25322b;
  --text-muted: #91897E;
  --shadow: 0 3px 20px 0 rgba(60,47,25,.14);
  --border-radius: 18px;
  --vintage-pattern-color: #e3ded8;
}

/* -------------------------
LAYOUT CONTAINER
------------------------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 2px solid #e3ded8;
  overflow: hidden;
}
.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 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(50,40,18,0.08);
  border: 2px dashed var(--accent-light);
  min-width: 260px;
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* -------------------------
RETRO/VINTAGE COLORS & PATTERNS
------------------------- */
body {
  background: var(--background),
    repeating-linear-gradient(135deg, var(--vintage-pattern-color), var(--vintage-pattern-color) 24px, transparent 24px, transparent 48px);
}

/* Patterned header underline for vintage style headings */
.vintage-underline {
  border-bottom: 4px dotted var(--accent);
  padding-bottom: 8px;
  display: inline-block;
}

/* Retro borders for cards */
.card, .testimonial-card {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

/* ------------------------------
TYPOGRAPHY – RETRO FLAVOR
------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Libre Baskerville', serif;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
h1 {
  font-size: 2.7rem;
  line-height: 1.13;
  margin-bottom: 18px;
  font-family: 'Libre Baskerville', 'Montserrat', serif;
  color: var(--accent);
  text-shadow: 1px 2px 0 #e3ded8;
  text-transform: uppercase;
}
h2 {
  font-size: 2rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
  color: var(--accent);
  letter-spacing: 0.04em;
}
h4, h5, h6 {
  font-size: 1.08rem;
  color: var(--text-main);
}
p, li, ul, ol {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: var(--text-main);
}
strong {
  font-weight: 700;
  color: var(--primary);
}
.text-muted {
  color: var(--text-muted);
  font-style: italic;
}

/* 
--- LISTS (with vintage disc/circle styling)
*/
ul {
  list-style: disc inside;
  margin-top: 10px;
  margin-bottom: 14px;
}
ol {
  list-style: decimal inside;
  margin-top: 10px;  
  margin-bottom: 14px;
}
li {
  margin-bottom: 8px;
  padding-left: 4px;
  line-height: 1.68;
}

/* Links retro underline on hover */
a {
  color: var(--accent);
  transition: color .2s;
  text-decoration-thickness: 2px;
}
a:hover, a:focus {
  color: var(--primary);
  text-decoration: underline wavy var(--secondary);
  text-underline-offset: 3px;
}

/* 
--- BUTTONS 
*/
.button-primary {
  background: var(--accent);
  color: #fff;
  border-radius: 35px;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 2px 12px 0 rgba(145,137,126,0.07);
  font-size: 1.11rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  padding: 0.9em 2.1em;
  border: 2px solid var(--primary);
  transition: all .28s cubic-bezier(.37,.39,.37,1.21);
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 10px;
  box-shadow: 2px 4px 0 var(--primary), 0 2px 24px rgba(145,137,126,0.11);
  position: relative;
}
.button-primary:hover, .button-primary:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: 2px 4px 0 var(--accent-light), 0 4px 24px rgba(37,100,91,0.07);
  text-decoration: none;
}
.button-secondary {
  background: var(--secondary);
  color: var(--primary);
  border: 2px solid var(--accent);
  border-radius: 35px;
  padding: 0.8em 1.9em;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  transition: all .2s;
  font-weight: 600;
  cursor: pointer;
}
.button-secondary:hover, .button-secondary:focus {
  background: var(--primary);
  color: #fff;
}

/* ------------------------
HEADER & NAVIGATION
------------------------ */
header {
  width: 100%;
  background: #FAF4EA;
  border-bottom: 4px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 5px 32px -16px #0001;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 32px;
  padding: 0 20px;
  min-height: 70px;
  justify-content: flex-start;
}
header nav {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-left: 30px;
  font-family: 'Montserrat',sans-serif;
  font-weight: 600;
}
header nav a {
  color: var(--primary);
  font-size: 1rem;
  padding: 4px 9px 3px 9px;
  border-radius: 8px;
  transition: background .15s, color .18s;
  margin-right: 3px;
  position: relative;
}
header nav a:hover, header nav a:focus {
  background: var(--accent-light);
  color: #fff;
}
header a img, header .container > a img {
  height: 48px;
  width: auto;
}
header .button-primary {
  margin-left: auto;
  margin-right: 0;
}

/* ---------------------------------
HERO/INTRO SECTIONS
--------------------------------- */
.hero {
  background: repeating-linear-gradient(135deg, var(--secondary) 0 14px, #DAC6B2 14px 28px);
  background-size: 70px 70px;
  padding: 52px 0 48px 0;
}
.hero .container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.hero h1 {
  color: var(--primary);
  font-family: 'Libre Baskerville', serif;
  font-size: 2.3rem;
  text-shadow: none;
  border-bottom: 5px solid var(--accent-light);
  letter-spacing: 0.06em;
  background: none;
  border-radius: 0;
}
.hero p {
  color: var(--text-dark);
  font-size: 1.18rem;
  margin-bottom: 5px;
}

/* -------------------------
FEATURES (Icon) Section
------------------------- */
.features {
  background: var(--secondary);
  border-top: 5px double var(--accent-light);
  border-bottom: 3px dashed var(--primary);
  margin-bottom: 40px;
}
.features h2 {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.07em;
  color: var(--text-main);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 18px;
  justify-content: center;
}
.feature-grid > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #FFF8EE;
  border-radius: 14px;
  box-shadow: var(--shadow);
  border: 2px solid var(--accent-light);
  width: 230px;
  min-height: 230px;
  padding: 30px 20px 18px 20px;
  position: relative;
  transition: transform .19s, box-shadow .18s;
}
.feature-grid > div:hover {
  transform: translateY(-8px) scale(1.025);
  box-shadow: 0 8px 24px 0 rgba(160,90,0,0.12);
  border-color: var(--primary);
}
.feature-grid img {
  width: 48px;
  margin-bottom: 16px;
}
.feature-grid h3 {
  color: var(--accent);
  font-size: 1.13rem;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}
.feature-grid p {
  color: var(--text-main);
  font-size: 0.97rem;
}

/* -----------------
ABOUT SECTION
----------------- */
.about {
  background: none;
  margin-bottom: 60px;
}
.about h2, .about h3 {
  color: var(--primary);
  letter-spacing: 0.07em;
}

/* -------
TESTIMONIALS
------- */
.testimonials {
  background: var(--card-bg);
  border-top: 2px dotted var(--accent);
  border-bottom: 5px double var(--primary);
  padding-top: 48px;
  margin-bottom: 60px;
}
.testimonials h2 {
  text-align: center;
  color: var(--accent);
  letter-spacing: 0.11em;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 24px;
}
.testimonial-card {
  max-width: 362px;
  min-width: 220px;
  color: #25322b;
  background: #fff;
  border-left: 14px solid var(--accent);
  border-radius: 16px;
  box-shadow: 0 6px 18px 0 rgba(160,90,0,0.10);
  margin-bottom: 20px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
}
.testimonial-card p {
  font-style: italic;
  color: #3a312b;
  font-size: 1.12rem;
  line-height: 1.66;
  margin-bottom: 10px;
}
.testimonial-card strong {
  color: var(--primary);
}

/* -------------------
CTA / CALL TO ACTION
------------------- */
.cta {
  background: var(--primary);
  color: #ffffff;
  padding: 45px 0 55px 0;
  border-radius: 0 0 38px 38px;
  box-shadow: 0 4px 30px -18px #29443b0f;
}
.cta .content-wrapper {
  align-items: center;
  text-align: center;
}
.cta h2 {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}
.cta .button-primary {
  background: var(--accent);
  color: #fff;
  border-color: #fff;
  margin-top: 22px;
}
.cta .button-primary:hover {
  background: #fff;
  color: var(--primary);
  border-color: var(--accent);
}

/* -------------------
CARDS (Generic)
------------------- */
.card, .feature-grid > div, .testimonial-card {
  transition: box-shadow .18s, border-color .19s, transform .18s;
}
.card:hover, .feature-grid > div:hover, .testimonial-card:hover {
  box-shadow: 0 6px 36px 0 rgba(160,90,0,0.14);
  border-color: var(--primary);
}

/* ----------------------
CONTACT SECTION
---------------------- */
.contact {
  background: #FAF4EA;
  border-radius: 0 0 32px 32px;
  border-bottom: 5px dashed var(--primary);
  margin-bottom: 42px;
}
.contact h1 {
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  text-shadow: none;
}
.contact h2 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-family: 'Montserrat', sans-serif;
}
.contact .cta-wrapper {
  margin-top: 23px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.text-section ul {
  padding-left: 12px;
}
.text-section li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1rem;
  margin-bottom: 8px;
}
.text-section li img {
  width: 22px;
  flex-shrink: 0;
}

/* Pricing badge style */
.service-pricing {
  display: inline-block;
  background: var(--accent-light);
  color: #fff;
  font-family: 'Montserrat',sans-serif;
  font-size: 1.08rem;
  border-radius: 13px;
  padding: 6px 15px 6px 15px;
  margin: 15px 0 13px 0;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 10px 0 rgba(160,90,0,0.07);
}

/* ------------------
MAP SECTION
------------------ */
.map {
  background: #fcf8f6;
  border-radius: 20px;
  margin-bottom: 30px;
  padding-top: 24px;
  border-bottom: 1px solid var(--secondary);
}

/* THANK YOU PAGE STYLES */
.thank-you {
  background: var(--card-bg);
  border-radius: 0 0 32px 32px;
  padding-top: 45px;
  padding-bottom: 38px;
}
.thank-you h1 {
  color: var(--accent);
  font-size: 2rem;
  text-align: center;
}
.thank-you p {
  margin: 20px 0 20px 0;
  color: var(--primary);
  text-align: center;
  font-size: 1.15rem;
}

/* -----------------------
FOOTER
----------------------- */
footer {
  background: #FAEFD5;
  border-top: 5px double var(--primary);
  padding: 36px 0 18px 0;
}
footer .container {
  gap: 24px;
}
footer .footer-top {
  display: flex;
  align-items: center;
  gap: 38px;
  justify-content: space-between;
  margin-bottom: 18px;
}
footer .footer-top nav {
  display: flex;
  gap: 21px;
  flex-wrap: wrap;
}
footer .footer-top a img {
  width: 60px;
  height: 60px;
}
footer .footer-top nav a {
  color: var(--accent);
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  letter-spacing: 0.02em;
}
footer .footer-top nav a:hover {
  color: var(--primary);
  text-decoration: underline wavy var(--primary);
}
footer .footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  font-size: 0.97rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
footer .footer-bottom p {
  font-size: 0.97rem;
  color: var(--primary);
  margin-bottom: 6px;
}

/* -----------------------------
MOBILE BURGER MENU
----------------------------- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 16px;
  right: 18px;
  z-index: 100;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  border: 3px solid var(--primary);
  font-size: 2.2rem;
  cursor: pointer;
  box-shadow: 1px 2px 16px 0 rgba(37,100,91,0.18);
  transition: background .17s, color .19s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--primary);
  color: #fff;
}

/* Hidden by default; shown on mobile below 1024px */
@media (max-width: 1023px) {
  .mobile-menu-toggle {
    display: block;
  }
  header nav, header .button-primary {
    display: none;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 99vw;
  background: #f4ecd3ee;
  box-shadow: 0 8px 60px 0 rgba(37,100,91,0.28);
  z-index: 999;
  transform: translateX(-100%);
  transition: transform .38s cubic-bezier(.86,.06,.21,1.15);
  padding: 28px 30px 22px 30px;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--accent);
  font-size: 2.2rem;
  align-self: flex-end;
  border: none;
  cursor: pointer;
  margin-bottom: 34px;
  margin-right: 0;
  padding: 6px;
  border-radius: 8px;
  transition: background .19s, color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--primary);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.22rem;
  color: var(--primary);
  border-radius: 12px;
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 15px 6px 15px 8px;
  margin-bottom: 0;
  background: none;
  transition: color .18s, background .15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent-light);
  color: #fff;
  text-decoration: none;
}

/* Hide mobile menu on desktop */
@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ---------------------------
COOKIE BANNER + MODAL
--------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #FFF7E9;
  color: #25322b;
  z-index: 1500;
  box-shadow: 0 -4px 40px 0 rgba(37,100,91,0.13);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  padding: 22px 16px 24px 28px;
  font-family: 'Open Sans',sans-serif;
  font-size: 1rem;
  border-top: 3px solid var(--primary);
  animation: fadeInBottom .38s cubic-bezier(.57,.05,.39,1.08);
}
@keyframes fadeInBottom {
  from {
    opacity:0;
    transform: translateY(80px);
  }
  to {
    opacity:1;
    transform: translateY(0);
  }
}
.cookie-text {
  flex: 2 1 360px;
  margin-right: 18px;
  color: var(--text-dark);
}
.cookie-actions {
  flex: 1 0 220px;
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner button {
  min-width: 120px;
  border-radius: 22px;
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  padding: 9px 17px;
  font-size: 1rem;
  border: 2px solid var(--accent);
  margin-left: 0;
  transition: background .16s, color .14s;
  margin-bottom: 0px;
}
.cookie-banner .accept-btn {
  background: var(--accent);
  color: #fff;
}
.cookie-banner .accept-btn:hover, .cookie-banner .accept-btn:focus {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.cookie-banner .reject-btn {
  background: #fff;
  color: var(--accent);
  border-color: var(--accent);
}
.cookie-banner .reject-btn:hover, .cookie-banner .reject-btn:focus {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--primary);
}
.cookie-banner .settings-btn {
  background: none;
  color: var(--primary);
  border-color: var(--primary);
}
.cookie-banner .settings-btn:hover, .cookie-banner .settings-btn:focus {
  background: var(--accent-light);
  color: #fff;
}

/* Cookie Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(30,30,30,0.47);
  z-index: 1600;
  align-items: center;
  justify-content: center;
  animation: fadeInOverlay .33s cubic-bezier(.67,.16,.39,1.05);
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes fadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fffdfa;
  color: var(--primary);
  border-radius: 18px;
  box-shadow: 0 8px 34px 0 rgba(37,100,91,0.19);
  padding: 34px 36px 28px 36px;
  max-width: 420px;
  width: 92vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeInTop .39s cubic-bezier(.57,.09,.32,1.12);
  font-size:1.04rem;
  position: relative;
  z-index: 2000;
}
@keyframes fadeInTop {
  from {
    opacity:0;
    transform: translateY(-60px);
  }
  to {
    opacity:1;
    transform: translateY(0);
  }
}
.cookie-modal h3 {
  margin-bottom: 11px;
  font-size: 1.23rem;
  color: var(--accent);
  font-family: 'Montserrat',sans-serif;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
}
.cookie-category label {
  font-size: 1rem;
  font-family: 'Open Sans',sans-serif;
  font-weight: 600;
  color: var(--primary);
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--accent);
  width: 18px;
  height: 18px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal button, .cookie-modal .button-primary {
  font-family: 'Montserrat',sans-serif;
  border-radius: 18px;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: 600;
  border: 2px solid var(--accent);
}
.cookie-modal .button-primary {
  background: var(--accent);
  color: #fff;
}
.cookie-modal .button-secondary {
  background: #fff;
  color: var(--primary);
}
.cookie-modal .button-primary:hover {
  background: var(--primary);
  color: #fff;
}
.cookie-modal .button-secondary:hover {
  background: var(--accent-light);
  color: #fff;
  border-color: var(--primary);
}
.cookie-modal .close-modal {
  position: absolute;
  top: 15px;
  right: 16px;
  background: none;
  color: var(--accent);
  font-size: 1.3rem;
  border: none;
  padding: 1px 6px;
  cursor: pointer;
  border-radius: 8px;
  transition: background .19s, color .18s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: var(--primary);
  color: #fff;
}

/* ----------------------------------
MEDIA QUERIES - RESPONSIVE DESIGN
---------------------------------- */
@media (max-width: 1200px) {
  .container { max-width: 97vw; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
@media (max-width: 1023px) {
  header .container {
    padding: 0 9px;
    gap: 17px;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .container { padding: 0 8px; }
  .section { padding: 32px 6px; margin-bottom: 38px; }
  .feature-grid {
    flex-direction: column;
    align-items: center;
    gap: 19px;
  }
  .feature-grid > div { width: 98%; max-width: 380px; }
  .testimonial-list {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .hero, .cta { padding: 36px 0 24px 0; }
  .hero h1, .thank-you h1 { font-size: 1.51rem; padding-bottom: 0; border-bottom-width: 3px; }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.15rem; }
  h3 { font-size: 1rem; }
  .footer-bottom { flex-direction: column; gap: 6px; align-items: flex-start; }
  .text-image-section { flex-direction: column; gap: 18px; }
  .content-grid { flex-direction: column; gap: 17px; }
  .card { min-width: 90vw; }
  .contact .content-wrapper { gap: 17px; }
  .cta .button-primary { margin-top: 15px; }
  .map { border-radius: 12px; margin-bottom: 12px; padding-top: 14px; }
  footer .container { gap: 14px; }
  .service-pricing { font-size: 0.97rem; padding: 6px 13px; }
  .about h2, .about h3 { font-size: 1.02rem; }
}
@media (max-width: 600px) {
  .container { padding: 0 4px; }
  .section { padding: 20px 1px; margin-bottom: 28px; }
  .hero, .cta { padding: 30px 0 16px 0; }
  .feature-grid > div {
    min-width: 0;
    max-width: 100%;
    padding: 16px 6px 12px 6px;
  }
  .testimonial-card {
    max-width: 98vw;
    min-width: 0;
    padding: 13px 8px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 15px;
    padding: 16px 5px;
    font-size: .98rem;
  }
  .cookie-actions {
    flex-wrap: wrap;
    gap: 8px;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
}

/* ---------------------------
SUBTLE ANIMATIONS
--------------------------- */
.button-primary, .button-secondary {
  transition: background .17s, color .19s, box-shadow .19s, border-color .16s;
}
input, textarea, select {
  box-shadow: none;
  transition: box-shadow .14s;
}
input:focus, textarea:focus, select:focus {
  box-shadow: 0 0 0 2px var(--accent-light);
}
.card, .testimonial-card, .feature-grid > div {
  transition: box-shadow .16s, border-color .18s, transform .15s;
}
.card:hover, .testimonial-card:hover, .feature-grid > div:hover {
  transform: translateY(-6px) scale(1.021);
}

/* Other minor vintage details */
.card:before, .testimonial-card:before {
  content: "";
  display: block;
  position: absolute;
  top: -16px;
  left: 24px;
  width: 50px;
  height: 8px;
  background: repeating-linear-gradient(90deg,var(--accent-light),var(--accent-light) 14px,transparent 14px,transparent 28px);
  opacity: .12;
  pointer-events: none;
}
.card:after, .testimonial-card:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -16px;
  right: 28px;
  width: 40px;
  height: 7px;
  background: repeating-linear-gradient(90deg,var(--primary),var(--primary) 6px,transparent 6px,transparent 16px);
  opacity: .07;
  pointer-events: none;
}

/* ------------------
ACCESSIBILITY FOCUS
------------------ */
a, button {
  outline: none;
}
a:focus-visible, button:focus-visible {
  outline: 3px dotted var(--accent-light);
  outline-offset: 2px;
}

/* ------------------
PRINT / NO JS SAFETY
------------------ */
@media print {
  .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
}
