/* =========================
   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, main, 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; }
* { box-sizing: inherit; }
body {
  line-height: 1.5;
  background: #F9F7F3;
  color: #44342C;
  -webkit-font-smoothing: antialiased;
}
ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
}
:focus-visible {
  outline: 2px dashed #b18e72;
  outline-offset: 2px;
}

/* ==========================
   FONT IMPORTS
============================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Montserrat:wght@400;600&display=swap');

:root {
  --color-primary: #2D3846;
  --color-secondary: #E9BBCF;
  --color-accent: #FFFFFF;
  --color-heading: #34291B; /* deep brown for vintage headings */
  --color-bg: #F9F7F3;
  --color-bg-card: #FFF8F2;
  --color-border: #E8D0B9;
  --color-shadow: rgba(82,64,51,0.10);
  --color-warning: #F8D9BC;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Montserrat', Arial, sans-serif;
}

/* ==========================
     GENERAL LAYOUT
============================ */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1180px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
main {
  flex: 1;
  background: var(--color-bg);
}

section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  background: none;
  position: relative;
}
@media (max-width: 768px) {
  section {
    padding: 32px 0 32px 0;
    margin-bottom: 40px;
  }
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-start;
}
.text-section { max-width: 820px; margin: 0 auto; }

/* ==========================
     TYPOGRAPHY
============================ */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  color: var(--color-heading);
  font-weight: 700;
  letter-spacing:0.01em;
  line-height: 1.15;
  margin-bottom: 8px;
}
h1 { font-size: 2.75rem;  }
h2 { font-size: 2rem;  }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; }
@media (max-width: 768px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.5rem; }
}
p, ul li, ol li, dd {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #44342C;
  font-weight: 400;
  line-height: 1.7;
}
.subheadline {
  font-family: var(--font-body);
  font-size: 1.17rem;
  color: #72553e;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
strong { font-weight: 600; color: #795548; }

ul, ol {
  margin-left: 0;
  margin-bottom: 24px;
  padding-left: 22px;
}
ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 22px;
}
ul li:before {
  content: '\2713';
  color: var(--color-secondary);
  position: absolute;
  left: 0; top: 1px;
  font-size: 1rem;
  font-family: var(--font-display);
}
.text-section ul li:before { color: #D57A4A; font-size: 1.2rem; }

ol {
  list-style-type: decimal;
  padding-left: 28px;
  color: #946c50;
}
dt {
  font-weight: 600;
  margin: 10px 0 2px 0;
  color: #58391f;
}
dd {
  margin-bottom: 14px;
}

blockquote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #5C4335;
  padding-left: 20px;
  border-left: 4px solid var(--color-secondary);
  margin-bottom: 8px;
  background: none;
}

.client-name {
  display: block;
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: #907C6C;
  font-style: italic;
}

/* ===============
   BUTTONS
================ */
.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  border-radius: 36px;
  padding: 12px 35px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  box-shadow: 0 2px 12px var(--color-shadow);
  outline: none;
  cursor: pointer;
  border: 2px solid transparent;
  min-width: 170px;
  transition: all 0.17s cubic-bezier(.4,0,.2,1);
}
.button-primary {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: 2px solid var(--color-secondary);
}
.button-primary:hover, .button-primary:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 4px 18px 0 var(--color-shadow);
}
.button-secondary {
  background:transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.button-secondary:hover, .button-secondary:focus {
  background: var(--color-accent);
  color: var(--color-secondary);
  border-color: var(--color-secondary);
  box-shadow: 0 4px 18px 0 var(--color-shadow);
}
a.button-primary, a.button-secondary {
  text-decoration: none;
}

/* ===============
   HEADER & NAV
================ */
header {
  background: var(--color-accent);
  border-bottom: 2px solid var(--color-border);
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  height: 88px;
}
header img {
  height: 52px;
  width: auto;
  margin-right: 18px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  margin-left: auto;
}
.main-nav a {
  color: var(--color-primary);
  font-weight: 500;
  background: none;
  padding: 3px 4px;
  border-radius: 8px;
  transition: background 0.17s, color 0.17s;
  position: relative;
  z-index: 10;
}
.main-nav a:not(.button-primary):hover, .main-nav a:not(.button-primary):focus {
  background: var(--color-secondary);
  color: #693412;
}
.main-nav .button-primary {
  margin-left: 15px;
}
.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 2px 7px var(--color-shadow);
  transition: background 0.17s;
  z-index: 1201;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #f9dde7;
}
@media(max-width: 1080px) {
  .main-nav {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .main-nav { gap: 8px; font-size: 0.97rem; }
  header img { height: 42px; }
}
@media (max-width: 825px) {
  header .container {
    height: 66px;
  }
  header img { height: 36px; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: flex;
  }
  header .container {
    height: 60px;
  }
}

/* ================
   MOBILE MENU
================== */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: var(--color-secondary);
  box-shadow: 0 16px 64px rgba(77,55,36,0.15);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.76,0,.24,1);
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 4px 42px rgba(62,43,32,0.13);
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.7rem;
  margin: 22px 24px 8px 0;
  box-shadow: 0 2px 8px var(--color-shadow);
  transition: background 0.2s;
  z-index: 1400;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #fbe4ec;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 18px 32px 0 32px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.22rem;
  padding: 11px 4px;
  color: #333;
  border-radius: 8px;
  text-align: left;
  font-weight: 700;
  letter-spacing: .01em;
  background: none;
  transition: background 0.2s, color 0.18s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #f4ccdd;
  color: #7a4441;
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ==============================
   SECTION & CARD LAYOUTS
=============================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.card {
  background: var(--color-bg-card);
  border-radius: 19px;
  box-shadow: 0 2px 14px var(--color-shadow);
  padding: 32px 24px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.17s;
  border: 1.7px solid var(--color-border);
  position: relative;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 28px 0 var(--color-shadow);
  transform: translateY(-2px) scale(1.017);
  border-color: var(--color-secondary);
}
.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;
}
@media (max-width: 850px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
}

/* Features Section */
.feature-grid, .feature-list, .features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature {
  background: var(--color-bg-card);
  border-radius: 18px;
  padding: 28px 20px 24px 20px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 1.5px 10px var(--color-shadow);
  border: 1.4px solid var(--color-border);
  transition: box-shadow 0.15s, border 0.13s, transform 0.13s;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 8px 28px 0 var(--color-shadow);
  border-color: var(--color-secondary);
  transform: scale(1.03);
}
.feature img {
  height: 38px;
  margin-bottom: 15px;
  filter: sepia(0.24) contrast(1.04) brightness(0.97); /* retro feel */
}
.feature h3 {
  font-size: 1.17rem;
  color: #967054;
  margin-bottom: 6px;
}
.feature p {
  font-size: 0.99rem;
  color: #5B4639;
}

/* Team Section */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.team-member {
  flex: 1 1 260px;
  background: #f3eadc;
  border-radius: 13px;
  padding: 22px 17px;
  box-shadow: 0 2px 7px var(--color-shadow);
  border: 1px solid #e7c9b7;
}
.team-member h3 { color: #7f5642; font-size: 1.15rem; }

/* Services Section */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-card {
  flex: 1 1 240px;
  background: #f7ede8;
  border-radius: 16px;
  box-shadow: 0 2px 12px var(--color-shadow);
  padding: 28px 18px;
  min-width: 220px;
  border: 1px solid #e3c8b8;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, border 0.12s, transform 0.13s;
  position: relative;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 6px 22px var(--color-shadow);
  border-color: #ebbcb1;
  transform: translateY(-1px) scale(1.01);
}
.service-card h3 { color: #977462; }

/* Package Section (pricing) */
.package-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 15px;
}
.package-item {
  flex: 1 1 230px;
  background: #fffaff;
  border-radius: 19px;
  box-shadow: 0 2px 13px var(--color-shadow);
  padding: 32px 20px 24px 20px;
  border: 1.2px solid #e4c6b2;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, border 0.11s, transform 0.12s;
  position: relative;
}
.package-item:hover, .package-item:focus-within { box-shadow: 0 6px 22px var(--color-shadow); border-color: var(--color-secondary); }
.package-item h3 { color: #82484E; font-size: 1.1rem; }
.package-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #a57b58;
  margin-top: 8px;
  letter-spacing: 0.01em;
}

/* ==============================
   TESTIMONIALS & CARDS
=============================== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #FFF2EA;
  border-radius: 18px;
  padding: 20px 26px;
  margin-bottom: 24px;
  box-shadow: 0 2px 16px var(--color-shadow);
  border: 1.7px solid #efdede;
  transition: box-shadow 0.15s, border 0.11s;
  position: relative;
  max-width: 620px;
}
.testimonial-card blockquote {
  margin-bottom: 8px;
  padding-left: 15px;
  border-left: 3.2px solid #eeb4b0;
  color: #62381E;
  font-weight: 600;
  background: none;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 22px var(--color-shadow);
  border-color: var(--color-secondary);
}
@media (max-width: 650px) {
  .testimonial-card { padding: 14px 12px; }
}

/* =====================
   TABLES
====================== */
.comparison-table {
  border-collapse: collapse;
  width: 100%;
  background: #fff8f2;
  border-radius: 13px;
  overflow: hidden;
  margin-bottom: 32px;
  margin-top: 7px;
  font-family: var(--font-body);
  font-size: 1rem;
  box-shadow: 0 1.4px 10px var(--color-shadow);
  border: 1px solid #e7c7b4;
}
.comparison-table th, .comparison-table td {
  border: 1px solid #e7cfdc;
  padding: 13px 11px;
  text-align: center;
}
.comparison-table th {
  background: #f7ded6;
  color: #744f35;
  font-family: var(--font-display);
  font-size: 1.03rem;
}
.comparison-table td {
  color: #664932;
}
.comparison-table tr:nth-child(even) td {
  background: #f8f8ec;
}

/* =========================
   FAQ ACCORDION (dl)
========================= */
.faq-list dt {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #91644D;
  margin-top: 20px;
  background: #f9ece9;
  padding: 9px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.faq-list dt:hover, .faq-list dt:focus {
  background: #efc3c9;
  color: #7D404E;
}
.faq-list dd {
  margin-bottom: 12px;
  padding-left: 19px;
  padding-top: 6px;
  color: #63503a;
  max-width: 640px;
}

/* =====================
   FOOTER
====================== */
footer {
  background: #F3E9E1;
  border-top: 2.5px solid #e7c6b3;
  padding: 0;
  margin-top: 34px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 36px 20px 22px 20px;
}
.footer-brand img {
  height: 45px;
  margin-bottom: 7px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-family: var(--font-display);
  font-size: 1rem;
}
.footer-menu a {
  color: #775847;
  background: none;
  border-radius: 8px;
  padding: 3px 7px;
  font-weight: 600;
  transition: background 0.13s, color 0.13s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #efd6d6;
  color: #6b3c2c;
}
.footer-contact > div {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  color: #665652;
  padding: 2px 0;
}
.footer-contact img { width: 19px; height: 19px; }
.footer-social {
  margin-top: 10px;
  font-size: 0.99rem;
  color: #a55a60;
}
.footer-copyright {
  font-family: var(--font-body);
  font-size: 0.93rem;
  width: 100%;
  margin-top: 28px;
  text-align: center;
  color: #907C6C;
}
@media (max-width: 900px) {
  footer .container { flex-direction: column; gap: 18px; align-items: flex-start; }
}

/* =========================================
   COOKIE CONSENT BANNER & MODAL
========================================== */
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #FFF8F2;
  box-shadow: 0 -3px 13px rgba(37,24,20,0.16);
  border-top: 3px solid #e3ba90;
  z-index: 2000;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 22px 14px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #442e27;
  transition: transform 0.35s cubic-bezier(.62,0,.37,1);
}
#cookie-banner.hide {
  transform: translateY(110%);
}
#cookie-banner .banner-buttons {
  display: flex;
  gap: 16px;
  margin-left: 16px;
}
#cookie-banner button {
  font-family: var(--font-display);
  font-size: 1rem;
  border-radius: 24px;
  padding: 8px 22px;
  margin: 0 0 0 0;
  border: 2px solid var(--color-secondary);
  background: #ffdbe8;
  color: var(--color-primary);
  transition: background 0.16s, color .15s, border .15s;
}
#cookie-banner button:hover, #cookie-banner button:focus {
  background: var(--color-secondary);
  color: #741b44;
}
#cookie-banner .settings-btn {
  background: transparent;
  border: 2px solid var(--color-secondary);
  color: var(--color-primary);
  font-weight: 700;
}
#cookie-banner .settings-btn:hover, #cookie-banner .settings-btn:focus {
  background: #f7e1f5;
  color: #613f46;
}
@media(max-width: 650px) {
  #cookie-banner { flex-direction: column; align-items: stretch; gap:10px; }
  #cookie-banner .banner-buttons { margin-left: 0; gap:13px; }
  #cookie-banner { padding: 18px 7px; font-size: 0.96rem; }
}

/* COOKIE MODAL */
#cookie-modal {
  display: none;
  position: fixed;
  z-index: 2100;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(81,62,52,0.28);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#cookie-modal.open {
  display: flex;
  animation: modalAppear .34s cubic-bezier(.45,0,.31,1);
}
@keyframes modalAppear { from{opacity:0; transform:translateY(25px);} to{opacity:1; transform:translateY(0);} }

.cookie-modal-content {
  background: #fff7ed;
  border-radius: 19px;
  box-shadow: 0 4px 27px var(--color-shadow);
  padding: 38px 28px 34px 28px;
  max-width: 420px;
  width: 96vw;
  font-family: var(--font-body);
  font-size: 1.04rem;
  color: #473123;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
#cookie-modal .modal-close-btn {
  position: absolute;
  right: 18px; top: 17px;
  background: var(--color-secondary);
  color: #6b3546;
  font-size: 1.3rem;
  border-radius: 50%;
  width: 33px;
  height: 33px;
  border: none;
  box-shadow: 0 1px 6px var(--color-shadow);
  transition: background 0.13s;
  z-index: 1;
}
#cookie-modal .modal-close-btn:hover, #cookie-modal .modal-close-btn:focus {
  background: #fbe4ec;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 15px 0 14px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category label {
  font-weight: 600;
  color: #49392d;
  font-family: var(--font-body);
  font-size: 1.06rem;
  margin-right: 10px;
}
.cookie-toggle {
  width: 38px;
  height: 24px;
  background: #e3bfa7;
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle .slider {
  position: absolute; left: 4px; top: 4px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.18s;
  box-shadow: 0 1px 3px rgba(40,24,9,0.14);
}
.cookie-toggle input:checked + .slider {
  left: 18px;
  background: #b4927d;
}
.cookie-category .always-on {
  font-size: 0.92rem;
  margin-left: 7px;
  color: #987a60;
}
.cookie-modal-actions {
  display: flex;
  gap: 19px;
  margin-top: 23px;
}
.cookie-modal-actions button {
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 8px 17px;
  border-radius: 18px;
  border: 2px solid var(--color-secondary);
  background: var(--color-secondary);
  color: var(--color-primary);
  min-width: 120px;
  transition: background 0.13s, color 0.13s, border 0.13s;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: var(--color-accent);
  color: #7f3446;
  border-color: #eb94bb;
}
@media(max-width: 510px) {
  .cookie-modal-content {
    padding: 17px 4vw 20px 4vw;
    font-size: 0.97rem;
  }
}

/* =====================
   RESPONSIVE LAYOUTS
====================== */
@media (max-width: 1100px) {
  .feature-grid, .service-list, .team-list, .package-list {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .content-grid { flex-direction: column; gap: 13px; }
}
@media (max-width: 768px) {
  .container {
    max-width: 98vw;
    padding: 0 6vw;
  }
  .card, .package-item, .service-card, .feature {
    padding: 18px 10px 18px 10px;
    min-width: unset;
  }
  .testimonial-card { max-width: 98vw; }
}
@media (max-width: 540px) {
  .container { padding: 0 2.5vw; }
  h1 { font-size: 1.46rem; }
  section { padding: 13px 0 20px 0; }
}

/* For .feature-item & demos */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

/* For callout/CTA sections */
.cta-section {
  background: var(--color-secondary);
  border-radius: 23px;
  box-shadow: 0 1.5px 8px var(--color-shadow);
  padding: 40px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
}
@media(max-width:600px) {
  .cta-section { padding: 25px 8px; }
}

/* Micro-interaction: hover image shadow */
img:hover, img:focus {
  filter: sepia(0.09) brightness(0.98) drop-shadow(0 2px 5px #e6d0ac88);
  transition: filter 0.18s;
}

/* Decorative retro patterns (Vintage feel) */
section::before, section::after {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
section::before {
  left: 0; top: -17px;
  width: 84px; height: 14px;
  background: repeating-linear-gradient(90deg, #E9BBCF, #E9BBCF 12px, #fff8f2 12px, #fff8f2 22px);
  opacity: 0.32;
  border-radius: 11px;
}
section::after {
  right: 0; bottom: -17px;
  width: 64px; height: 12px;
  background: repeating-linear-gradient(90deg, #a67a64 0, #a67a64 9px, #fff8f2 9px, #fff8f2 19px);
  opacity: 0.2;
  border-radius: 7px;
}

/* Remove retro decorators on mobile */
@media (max-width: 500px) {
  section::before, section::after { display: none; }
}

/* Hidden (js) */
.hidden { display: none !important; }

/* =====================
   SPECIALS & UTILITIES
====================== */
.text-center { text-align: center; }
.align-right { text-align: right; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }
.gap-2 { gap: 16px; }
.gap-4 { gap: 32px; }

/* Retro nostagic drop-shadow highlight for headings */
h1, h2 {
  text-shadow: 0px 1.5px 0.5px #E9BBCF44, 0px 4px 8px #2d384608;
}

/* ===============
   FORM ELEMENTS
================ */
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: 12px;
  border: 1.7px solid #e5bbad;
  background: #fff9f7;
  color: #3d2722;
  padding: 13px 13px;
  margin-bottom: 19px;
  width: 100%;
  box-shadow: 0 1px 7px #d7b4a822;
  transition: border 0.15s, box-shadow 0.15s;
}
input:focus, textarea:focus, select:focus {
  border: 2px solid var(--color-secondary);
  box-shadow: 0 1px 16px #ebbcc166;
  outline: none;
}
label {
  font-family: var(--font-display);
  color: #795843;
  font-size: 1.13rem;
  margin-bottom: 7px;
  display: inline-block;
}

/* ================
   TRANSITIONS
================== */
*, *:before, *:after {
  transition-property: background-color, color, box-shadow, border, filter;
  transition-duration: 0.13s;
  transition-timing-function: cubic-bezier(.4,0,.2,1);
}

/* ========================
   Z-INDEX CLARITY
========================= */
header, .mobile-menu, #cookie-banner, #cookie-modal { z-index: 200; }
footer { z-index: 10; }

/* ============= END ============= */
