/* =============================================
   CSS RESET & BASE TYPOGRAPHY
   ============================================= */
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; }

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }
body {
  line-height: 1.5;
  background: #F6FBF2;
  color: #2B2B14;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

*, *::before, *::after {
  box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
main {word-break: break-word;}
/* =============================================
   VINTAGE RETRO COLOUR SCHEME & PATTERNS
   ============================================= */
:root {
  --brand-primary: #247836;
  --brand-secondary: #F6FBF2;
  --brand-accent: #EBB245;
  --retro-green: #8BAC4A;
  --retro-blue: #324267;
  --retro-orange: #E27F2E;
  --retro-cream: #FFF5E1;
  --retro-border: #E6DAC8;
  --dark-text: #2B2B14;
  --light-bg: #FFF8EE;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

body {
  background: var(--retro-cream);
  color: var(--dark-text);
}

/* =============
   TYPOGRAPHY
   ============= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--brand-primary);
  letter-spacing: 1px;
  text-shadow: 0 1px 0 #FFF8EE;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

p, ul, ol, dl, address {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark-text);
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
  color: var(--retro-blue);
}

/* Links */
a {
  color: var(--retro-blue);
  transition: color 0.2s;
}
a:hover, a:focus {
  color: var(--retro-orange);
  text-decoration: underline;
}

/* =============================================
   LAYOUT CONTAINERS & SPACING
   ============================================= */
.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1100px;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--retro-cream);
}
@media (max-width: 768px) {
  .section {
    padding: 24px 10px;
    margin-bottom: 36px;
  }
}

/* Flex layouts per requirements */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--brand-secondary);
  border: 2px solid var(--retro-border);
  border-radius: 15px;
  box-shadow: 0 4px 18px rgba(66,42,17,0.09);
  padding: 24px 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(66,42,17,0.15);
  transform: translateY(-4px) scale(1.03);
}

.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;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--brand-secondary);
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(50,66,103,0.11);
  border: 2px solid var(--retro-border);
  margin-bottom: 24px;
  flex-direction: column;
  max-width: 540px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* Lists as grids */
.feature-grid, .service-list, .service-category-list, .core-values, .included-services-list, .benefit-list,
.team-members-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  list-style: none;
  padding: 0;
}
.feature-grid li, .service-list li, .service-category-list li, .core-values li, .included-services-list li, .benefit-list li, .team-members-list li {
  background: var(--brand-secondary);
  border-radius: 14px;
  border: 1.5px solid var(--retro-border);
  box-shadow: 0 2px 12px rgba(235,178,69,0.06);
  padding: 20px 16px;
  flex: 1 1 240px;
  min-width: 200px;
  max-width: 320px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark-text);
  margin-bottom: 0; /* managed by gap */
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-grid li:hover,
.service-category-list li:hover,
.benefit-list li:hover {
  box-shadow: 0 8px 24px rgba(235,178,69,0.18);
  transform: translateY(-3px) scale(1.02);
}

.icon {
  width: 32px; height: 32px; display: flex; align-items: center; margin-right: 12px; }
.icon img { width: 32px; height: 32px; object-fit: contain; }

/* =============================================
   HEADER
   ============================================= */
header {
  width: 100%;
  background: var(--brand-primary);
  color: var(--brand-secondary);
  box-shadow: 0 4px 22px rgba(50,66,103,.12);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
}
.logo img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.5px;
  background: none;
  color: var(--brand-secondary);
  border-radius: 6px;
  padding: 4px 10px;
  position: relative;
  transition: color 0.23s, background 0.20s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--brand-accent);
  background: rgba(255, 255, 255, 0.16);
}
.main-nav .btn-primary {
  background: var(--brand-accent);
  color: var(--brand-primary) !important;
  border-radius: 8px;
  font-weight: 700;
  padding: 8px 18px;
  margin-left: 26px;
  transition: background 0.22s, color 0.20s, transform 0.14s;
  box-shadow: 0 3px 10px rgba(235,178,69,0.12);
}
.main-nav .btn-primary:hover,
.main-nav .btn-primary:focus {
  background: var(--retro-orange);
  color: #fff !important;
  transform: scale(1.05);
}

/* Hamburger (mobile-menu-toggle) */
.mobile-menu-toggle {
  background: var(--brand-accent);
  border: none;
  color: var(--brand-primary);
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 2rem;
  display: none;
  cursor: pointer;
  margin-left: 18px;
  transition: background 0.18s;
  z-index: 44;
  box-shadow: 0 2px 14px rgba(235,178,69,0.08);
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--retro-orange);
  color: #fff;
}

/* ===========
   MOBILE NAV
   =========== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: var(--brand-primary);
  color: var(--brand-secondary);
  transform: translateX(-104vw);
  transition: transform 0.30s cubic-bezier(0.60,0,0.38,1);
  z-index: 50;
  display: flex;
  flex-direction: column;
  padding: 30px 26px 0 26px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: var(--brand-accent);
  font-size: 2.1rem;
  border: none;
  cursor: pointer;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 7px;
  transition: background 0.19s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--retro-orange);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 20px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 1px;
  color: var(--brand-secondary);
  background: none;
  padding: 10px 0;
  border-radius: 6px;
  transition: color 0.20s, background 0.22s;
  width: 100%;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(235,178,69,0.14);
  color: var(--brand-accent);
}

/* Hide main nav, show hamburger on mobile */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 901px) {
  .mobile-menu { display: none !important; }
}

/* =====================
   HERO & CTA SECTIONS
   ===================== */
.hero {
  background: repeating-linear-gradient(-45deg, #FFF8EE, #F6FBF2 36px, #FFF8EE 48px, #EBB24511 60px);
  padding: 56px 0 46px 0;
  text-align: center;
  border-bottom: 3.5px dashed var(--retro-green);
}
.hero h1 {
  color: var(--brand-primary);
  font-family: var(--font-display);
  font-size: 2.1rem;
  text-shadow: 0 2px 0 #FFF5E1;
}
.hero p {
  color: var(--retro-blue);
  font-size: 1.17rem;

}

.cta-offer {
  background: var(--brand-accent);
  color: var(--brand-primary);
  border-radius: 18px;
  margin-bottom: 54px;
  box-shadow: 0 3px 18px rgba(235,178,69,0.12);
  text-align: center;
  padding: 48px 20px;
}
.cta-offer a.btn-primary {
  margin-top: 22px;
}

@media (max-width: 768px) {
  .hero, .cta-offer {
    padding: 32px 8px;
    font-size: 1rem;
  }
}

/* =====================
   BUTTONS & LINKS
   ===================== */
.btn-primary, a.btn-primary, .btn-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.11rem;
  letter-spacing: 1.2px;
  border: none;
  outline: none;
  display: inline-flex;
  align-items: center;
  background: var(--brand-accent);
  color: var(--brand-primary) !important;
  border-radius: 9px;
  padding: 12px 30px;
  margin-top: 10px;
  margin-bottom: 10px;
  box-shadow: 0 4px 16px rgba(235,178,69,0.13);
  cursor: pointer;
  transition: background 0.19s, color 0.17s, box-shadow 0.10s, transform 0.14s;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--retro-orange);
  color: #fff !important;
  box-shadow: 0 8px 34px rgba(235,178,69,0.23);
  transform: scale(1.045);
}
.btn-link {
  background: none;
  color: var(--brand-primary);
  font-size: 1.05rem;
  text-decoration: underline;
  border-radius: 6px;
  margin-top: 18px;
  padding: 8px 8px;
  box-shadow: none;
  transition: background 0.14s, color 0.16s;
}
.btn-link:hover, .btn-link:focus {
  color: var(--retro-orange);
  background: rgba(235,178,69,0.09);
}

/* =====================
   TABLES
   ===================== */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  background: var(--brand-secondary);
  border-radius: 14px;
  overflow: hidden;
  font-family: var(--font-body);
}
th, td {
  text-align: left;
  padding: 12px 16px;
}
th {
  background: var(--brand-primary);
  color: var(--brand-secondary);
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--retro-border);
}
td {
  border-bottom: 1px solid var(--retro-border);
}
tr:last-child td {
  border-bottom: none;
}
.pricing-table tr:nth-child(even) td {
  background: #FAF4E0;
}
.opening-hours-table th, .opening-hours-table td {
  background: #FFF5E1;
  color: var(--brand-primary);
}

@media (max-width: 700px) {
  table, th, td {
    font-size: 0.97rem;
    padding: 8px 8px;
  }
}

/* =========================
   TEXT BLOCKS & INFO BLOCKS
   ========================= */
.text-section {
  background: var(--brand-secondary);
  border: 1.5px solid var(--retro-border);
  border-radius: 12px;
  padding: 24px 18px;
  margin-bottom: 22px;
  box-shadow: 0 2px 10px rgba(36,120,54,0.04);
  font-size: 1rem;
}

.mini-team-intro {
  font-family: var(--font-body);
  font-size: 1.04rem;
  background: var(--retro-green);
  border-radius: 9px;
  color: #fff;
  padding: 10px 18px;
  margin: 16px 0 4px 0;
  box-shadow: 0 1px 3px rgba(36,120,54,0.09);
}

/* ==========================================
   TESTIMONIALS/GALERIE - CARDS & HIERARCHY
   ========================================== */
.testimonials {
  background: var(--light-bg);
  border-top: 4px dotted var(--retro-green);
  border-bottom: 4px dotted var(--retro-orange);
  padding: 48px 0 32px 0;
}
.testimonial-card {
  background: var(--brand-secondary);
  color: var(--dark-text) !important;
  border: 2px solid var(--brand-primary);
  box-shadow: 0 6px 32px rgba(36,120,54,0.09);
  font-family: var(--font-body);
}
.testimonial-card p {
  font-size: 1.13rem;
  font-style: italic;
  color: var(--dark-text);
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .testimonial-card {
    padding: 18px 7px;
    font-size: 1rem;
  }
}

.project-description {
  background: #fffbe8;
  border-radius: 10px;
  border: 1px dashed var(--retro-green);
  padding: 14px 18px 14px 18px;
  margin-bottom: 24px;
  font-size: 1rem;
}
.project-description h3 {color: var(--brand-primary); font-size: 1.14rem; margin: 0 0 6px 0;}
.project-description ul {
  margin-left: 12px;
}

/* =============================================
   ACCORDION FAQ
   ============================================= */
.accordion-faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.accordion-faq-list dt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.09rem;
  color: var(--brand-primary);
  margin-bottom: 3px;
  cursor: pointer;
  background: var(--retro-green);
  color: #fff;
  padding: 10px 16px;
  border-radius: 7px 7px 0 0;
  transition: background 0.20s;
  box-shadow: 0 2px 6px rgba(36,120,54,0.04);
}
.accordion-faq-list dt.open {
  background: var(--retro-orange);
}
.accordion-faq-list dd {
  background: var(--brand-secondary);
  border: 1.5px solid var(--retro-border);
  border-radius: 0 0 8px 8px;
  margin-left: 0;
  padding: 12px 18px;
  margin-bottom: 3px;
  display: block;
}

/* =============================================
   FORMS (For future-proofness)
   ============================================= */
input[type=text],
input[type=email],
input[type=tel],
input[type=password],
textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark-text);
  padding: 10px;
  border: 1.5px solid var(--brand-primary);
  border-radius: 7px;
  background: #fffbe8;
  box-shadow: 0 1px 4px rgba(235,178,69,0.07);
  outline: none;
  width: 100%;
  margin-bottom: 14px;
  transition: border 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--brand-accent);
}

label {
  font-family: var(--font-body);
  color: var(--brand-primary);
  font-weight: 500;
  margin-bottom: 3px;
  display: block;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--brand-primary);
  color: var(--brand-secondary);
  padding: 32px 0 26px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 4px;
  margin-top: 4px;
}
.footer-nav a {
  color: var(--brand-secondary);
  font-family: var(--font-display);
  font-size: 0.93rem;
  padding: 2px 8px;
  border-radius: 4px;
  transition: background 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--retro-orange);
  color: #fff;
}
.brand-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 0.96rem;
}
.brand-footer img {
  height: 32px;
  width: auto;
}
address {
  font-style: normal;
  font-family: var(--font-body);
  color: var(--retro-cream);
  font-size: 1rem;
  margin-top: 8px;
  padding: 0 8px;
}
address a {
  color: var(--brand-accent);
  text-decoration: underline;
}

@media (max-width: 700px) {
  footer .container { gap: 10px; }
  .footer-nav { gap: 14px; }
  .brand-footer { gap: 10px; }
}

/* =============================================
   COOKIE CONSENT BANNER & MODAL
   ============================================= */
#cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--brand-secondary);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 18px 18px 14px 18px;
  box-shadow: 0 -2px 24px rgba(36,120,54,0.13);
  z-index: 1010;
  font-family: var(--font-body);
  font-size: 1.02rem;
  animation: fadeInBottom 0.33s cubic-bezier(0.67,0,0.34,1);
}
#cookie-banner .cookie-buttons {
  display: flex;
  gap: 18px;
}
#cookie-banner button {
  padding: 9px 18px;
  border-radius: 7px;
  font-family: var(--font-display);
  font-size: 1rem;
  border: none;
  font-weight: 600;
  cursor: pointer;
  margin-left: 0;
  background: var(--brand-accent);
  color: var(--brand-primary);
  box-shadow: 0 2px 6px rgba(235,178,69,0.09);
  transition: background 0.18s, color 0.13s;
}
#cookie-banner button.accept {
  background: var(--retro-green);
  color: #fff;
}
#cookie-banner button.reject {
  background: #e53a00;
  color: #fff;
}
#cookie-banner button.settings {
  background: var(--retro-orange);
  color: #fff;
}
#cookie-banner button:hover, #cookie-banner button:focus {
  background: var(--retro-blue);
  color: #fff;
}

@media (max-width: 600px) {
  #cookie-banner { flex-direction: column; gap: 16px; align-items: flex-start; font-size: 0.97rem; }
  #cookie-banner .cookie-buttons { gap: 10px; }
}
@keyframes fadeInBottom {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Cookie Settings Modal */
#cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(50,66,103,0.64);
  z-index: 2015;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeInOverlay 0.28s cubic-bezier(.77,0,.18,1);
}
#cookie-modal-overlay.open {
  display: flex;
}
@keyframes fadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}
#cookie-modal {
  background: var(--retro-cream);
  color: var(--brand-primary);
  border-radius: 17px;
  width: 98%;
  max-width: 420px;
  box-shadow: 0 10px 50px rgba(50,66,103,0.11);
  padding: 38px 24px 24px 24px;
  font-family: var(--font-body);
  position: relative;
  animation: fadeInModal 0.22s cubic-bezier(.67,0,.36,1);
}
@keyframes fadeInModal {
  from { opacity: 0; transform: scale(.93); }
  to { opacity: 1; transform: scale(1); }
}
#cookie-modal h2 {
  color: var(--retro-orange);
  font-family: var(--font-display);
  font-size: 1.22rem;
  margin-bottom: 10px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 14px 0 20px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--brand-primary);
  width: 23px;
  height: 23px;
  cursor: pointer;
}
.cookie-category.essential label {
  opacity: .58;
  cursor: not-allowed;
}
#cookie-modal .modal-close {
  position: absolute;
  top: 13px; right: 16px;
  background: none;
  font-size: 1.7rem;
  border: none;
  color: var(--retro-orange);
  cursor: pointer;
  padding: 3px 7px;
  border-radius: 6px;
  transition: background 0.15s;
}
#cookie-modal .modal-close:hover, #cookie-modal .modal-close:focus { background: var(--retro-orange); color: #fff; }
#cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 16px;
  align-items: center;
}
#cookie-modal .cookie-modal-actions button {
  padding: 10px 18px;
  font-family: var(--font-display);
  background: var(--brand-accent);
  color: var(--brand-primary);
  font-weight: 700;
  border-radius: 7px;
  border: none;
  transition: background 0.15s, color 0.16s;
  cursor: pointer;
}
#cookie-modal .cookie-modal-actions button.save {
  background: var(--retro-green);
  color: #fff;
}
#cookie-modal .cookie-modal-actions button:focus, #cookie-modal .cookie-modal-actions button:hover {
  background: var(--retro-orange);
  color: #fff;
}

/* ==========================================
   RESPONSIVE UTILITIES & FLEX WRAPS
   ========================================== */
@media (max-width: 900px) {
  .card-container, .content-grid, .feature-grid, .service-list, .service-category-list, .team-members-list, .benefit-list,
  .included-services-list, .core-values {
    gap: 14px;
    justify-content: flex-start;
  }
  .feature-grid li, .service-list li, .service-category-list li, .core-values li, .included-services-list li, .benefit-list li, .team-members-list li {
    min-width: 140px;
    max-width: 100%;
    padding: 15px 10px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 6px;
  }
  .card, .testimonials, .text-section, .cta-offer {
    padding: 10px 5px;
  }
  .hero h1 { font-size: 1.2rem; }
}

/* ===============================================
   RETRO/NOSTALGIC VISUAL DECORATIVE ELEMENTS
   =============================================== */
.section, .feature-grid li, .team-members-list li, .testimonial-card, .project-description, .content-wrapper, .card {
  /* faux retro paper effect using subtle background */
  background-image: repeating-linear-gradient(120deg, transparent, transparent 34px, #FFF5E188 39px, transparent 42px)
}

.section {
  border-radius: 14px;
  border: 1.5px solid var(--retro-border);
  box-shadow: 0 3px 18px rgba(235,178,69,0.05);
}

/* Retro corner pattern (classic folded top) */
.section::before {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #F6FBF2 60%, #E6DAC8 100%);
  border-top-left-radius: 14px;
  z-index: 1;
}
.section {
  position: relative;
  overflow: hidden;
}

/* Retro dashed lines for dividers */
.divider {
  border-top: 2.7px dashed var(--retro-green);
  margin: 34px 0 34px 0;
}

/* =============================================
   Z-INDEX & LAYERING
   ============================================= */
header { z-index: 20; }
.main-nav { z-index: 22; }
.mobile-menu, .mobile-menu-toggle, .mobile-menu-close { z-index: 50; }
#cookie-banner, #cookie-modal-overlay, #cookie-modal { z-index: 1000; }

/* =============================================
   ANIMATIONS + MICRO-INTERACTIONS
   ============================================= */
:not(button):focus {
  outline: 2px dashed var(--retro-blue);
  outline-offset: 2px;
  background: #FFF5E199;
}
.btn-primary, .btn-link, .mobile-menu-toggle, .mobile-menu-close, .footer-nav a, .main-nav a {
  transition: color 0.15s, background 0.18s, box-shadow 0.13s, transform 0.12s;
}
.card, .feature-grid li, .service-category-list li, .testimonial-card {transition: box-shadow 0.20s, transform 0.15s;}

.card:active, .feature-grid li:active, .service-category-list li:active, .testimonial-card:active {
  transform: scale(.98);
}

@media (max-width: 480px) {
  h1 { font-size: 1.52rem; }
  h2 { font-size: 1.22rem; }
  .btn-primary, .btn-link { font-size: 1rem; padding: 9px 13px; }
  .section { padding: 18px 4px; }
}

/*
  END OF FILE: style.css
*/
