/* RESET & BASIC STYLES ----------------------------------- */
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 {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #f4ede2;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #f4ede2;
  color: #403A27;
  line-height: 1.6;
  min-height: 100vh;
}

*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #193463;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B36948;
  text-decoration: underline;
}

/* BRAND & RETRO VARIABLES ------------------------------------ */
:root {
  --primary: #193463;
  --primary-dark: #102245;
  --secondary: #54A8B6;
  --accent: #F6FAFD;
  --brand-sand: #f4ede2;
  --retro-brown: #B36948;
  --retro-yellow: #EAC97A;
  --retro-teal: #55BCC9;
  --retro-dark-green: #345E4D;
  --retro-peach: #F7CAAF;
  --shadow-main: 0 4px 24px rgba(87, 70, 49, 0.08), 0 1.5px 8px 0px #eac97a44;
  --font-display: 'Montserrat', 'Arial Rounded MT Bold', 'Trebuchet MS', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --border-radius: 16px;
  --header-height: 80px;
  --shadow-retro: 0 8px 28px rgba(186, 117, 33, 0.09);
  --transition: .25s cubic-bezier(.47,1.64,.41,.8);
}

/* CONTAINER & GENERAL LAYOUT --------------------------------- */
.container {
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff7ea;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-main);
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 38px;
    padding: 24px 6px;
    border-radius: 10px;
  }
}

/* TYPOGRAPHY ------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  letter-spacing: 0.5px;
  font-weight: 700;
}
h1 {
  font-size: 2.9rem;
  line-height: 1.11;
  margin-bottom: 12px;
  letter-spacing: 1.2px;
  color: var(--retro-brown);
  text-shadow: 0 2px 0 #fadf8a70,0 9px 16px #b3694830;
  font-family: var(--font-display);
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  color: var(--retro-brown);
  margin-bottom: 10px;
}
h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.subheadline {
  font-size: 1.25rem;
  color: var(--retro-dark-green);
  font-weight: 400;
  font-family: var(--font-body);
  margin-bottom: 18px;
}
p,li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #403A27;
}
ul,ol {
  padding-left: 26px;
  margin-bottom: 18px;
}
ul li, ol li {
  margin-bottom: 8px;
}
strong {
  color: var(--primary);
}

/* BUTTONS ---------------------------------------------------- */
.button, .primary-cta, .secondary-cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  padding: 14px 32px;
  border: 2.5px solid var(--primary);
  border-radius: 50px;
  background: var(--retro-yellow);
  color: var(--primary);
  margin-top: 12px;
  cursor: pointer;
  box-shadow: 0 2px 12px #B3694833;
  transition: background var(--transition), transform 0.16s cubic-bezier(.52,.1,.18,1.12), color var(--transition), box-shadow 0.19s cubic-bezier(.12,.84,.28,1.01);
  text-shadow: 0 1px 0 #faf3c2dd;
  outline: none;
  display: inline-block;
}
.button.primary-cta {
  background: var(--retro-brown);
  color: #fff;
  border: 2.5px solid var(--retro-brown);
  box-shadow: 0 3px 18px #b3694844;
}
.button.secondary-cta {
  background: #fff7ea;
  color: var(--retro-brown);
  border: 2px solid var(--primary);
  box-shadow: none;
}
.button:hover, .button:focus {
  background: var(--retro-teal);
  color: var(--primary);
  transform: translateY(-1.5px) scale(1.028) rotate(-0.5deg);
  box-shadow: 0 8px 32px #345E4D33;
  border-color: var(--retro-dark-green);
  text-decoration: none;
}
.primary-cta:active, .button:active {
  transform: scale(0.97);
}

/* HEADER ----------------------------------------------------- */
header {
  background: var(--accent);
  border-bottom: 4px solid var(--retro-yellow);
  box-shadow: 0 7px 32px #baa36414;
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  font-family: var(--font-display);
  padding: 0 0 2px 0;
}
header .container {
  min-height: var(--header-height);
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  display: flex;
  position: relative;
  padding-top: 6px;
  gap: 16px;
}
header nav {
  display: flex;
  gap: 24px;
}
header nav a {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 1.05rem;
  letter-spacing: 1px;
  padding: 12px 0;
  border-bottom: 3px solid transparent;
  transition: border-color 0.27s, color 0.21s;
  position: relative;
  text-shadow: 0 1px 0 #faf3c299;
}
header nav a:hover, header nav a:focus {
  color: var(--retro-brown);
  border-bottom: 3px solid var(--retro-yellow);
}
header img {
  height: 54px;
  width: auto;
}
header .button {
  margin-left: 16px;
  margin-right: 0;
  padding: 12px 26px;
  font-size: 1rem;
}

/* MOBILE MENU ------------------------------------------------ */
.mobile-menu-toggle {
  display: none;
  background: var(--retro-brown);
  color: #fff;
  font-size: 2.1rem;
  border: none;
  border-radius: 16px;
  width: 52px;
  height: 52px;
  margin-left: 6px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  transition: background var(--transition), color var(--transition);
  box-shadow: 0 2px 10px #b369487d;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--primary);
  color: var(--retro-yellow);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 1200;
  background: #f4ede2ee;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-110vw);
  transition: transform 0.35s cubic-bezier(.48,1.8,.31,.94);
  box-shadow: 0 10px 40px #b3694845;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.6rem;
  color: var(--retro-brown);
  position: absolute;
  top: 22px;
  right: 26px;
  cursor: pointer;
  z-index: 1201;
  transition: color 0.22s;
}
.mobile-menu-close:focus,.mobile-menu-close:hover {
  color: var(--retro-dark-green);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 86px 0 0 32px;
}
.mobile-nav a {
  font-size: 1.3rem;
  color: var(--primary);
  padding: 16px 2px;
  border-radius: 6px;
  background: none;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background 0.15s, color 0.15s;
  box-shadow: none;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--retro-peach);
  color: var(--retro-brown);
  text-decoration: underline;
}
@media (max-width: 1024px) {
  header nav, header .button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
}
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* HERO SECTION ---------------------------------------------- */
.hero {
  background: var(--retro-peach) url(../assets/retro-bg.svg) repeat-x top center;
  box-shadow: var(--shadow-retro);
  border-radius: var(--border-radius);
  margin-bottom: 64px;
  padding-top: 56px;
}
.hero .container {
  min-height: 300px;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .hero {
    margin-bottom: 32px;
    padding-top: 24px;
    border-radius: 10px;
    min-height: 0;
  }
}

/* FLEXBOX CARDS & LAYOUT ------------------------------------ */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 24px;
  margin-top: 16px;
}
.feature-grid > div {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px #b3694838, 0 1px 5px #eac97a22;
  padding: 32px 24px;
  flex: 1 1 250px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow .19s, transform .18s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 40px #b369486d, 0 2px 12px #eac97a44;
  transform: translateY(-3px) scale(1.022);
  z-index: 2;
}
.feature-grid img {
  width: 48px;
  height: 48px;
  filter: saturate(1.22) contrast(108%) drop-shadow(0 2px 6px #eac97a22);
}

.service-list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.service-list li {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 12px #55bcc933,0 1.5px 8px 0px #eac97a44;
  padding: 22px 18px 16px 24px;
  margin-bottom: 18px;
  position: relative;
  list-style: none;
  transition: background 0.2s, box-shadow .2s;
}
.service-list li h3 {
  font-size: 1.13rem;
  color: var(--retro-dark-green);
}
.service-list li span {
  color: var(--retro-brown);
  font-weight: bold;
  font-size: 1.05rem;
  margin-left: 8px;
}

/* CARD-LIKE CONTAINERS --------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  box-shadow: 0 3px 22px #eac97a34, 0 1.5px 10px #b3694819;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow .2s,transform .14s;
}
.card:hover {
  box-shadow: 0 10px 36px #345e4d31, 0 2px 10px #b3694829;
  transform: translateY(-2px) scale(1.013);
}
.card-content {
  padding: 28px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.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: 768px) {
  .text-image-section, .feature-grid, .testimonial-row, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}

/* TESTIMONIALS ---------------------------------------------- */
.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 16px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 38px 26px 38px;
  background: #fff;
  border: 2px dashed var(--retro-yellow);
  border-radius: 30px 8px 30px 8px;
  box-shadow: 0 4px 18px #b3694831, 0 1.5px 7px 0px #345e4d1a;
  min-width: 240px;
  max-width: 350px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.7;
  position: relative;
}
.testimonial-card .stars {
  font-family: var(--font-display);
  color: #FFD266;
  font-size: 1.55rem;
  margin-bottom: -8px;
  letter-spacing: 0.11em;
}
.testimonial-card p {
  color: #251f16;
  font-style: italic;
  font-size: 1.05rem;
}
.testimonial-card span {
  font-size: 1rem;
  color: var(--retro-dark-green);
  font-family: var(--font-display);
  margin-top:10px;
}
.testimonial-card:before {
  content: '';
  display: block;
  position: absolute;
  left: 16px;
  bottom: 16px;
  width: 26px;
  height: 26px;
  background: url(../assets/icons/retro-quote.svg) no-repeat center/contain;
  opacity: 0.10;
  pointer-events: none;
}

/* CTA BOTTOM SECTION ---------------------------------------- */
.cta-bottom {
  background: var(--retro-brown);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-retro);
  color: #fff;
  margin-bottom: 0;
  padding: 36px 0 38px 0;
}
.cta-bottom h2 {
  color: #fff;
}
.cta-bottom .button.primary-cta {
  background: var(--retro-yellow);
  color: var(--retro-brown);
  border: 2px solid #fff;
  margin-top: 24px;
}
.cta-bottom .button.primary-cta:hover {
  background: #fff7ea;
  color: var(--primary);
}

/* FAQ & ACCORDION ------------------------------------------- */
.faq-list, .faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
.faq-item {
  background: #fff;
  border-left: 5px solid var(--retro-teal);
  padding: 18px 22px;
  border-radius: 12px;
  box-shadow: 0 2px 5px #54a8b633;
  cursor: pointer;
  transition: box-shadow .15s, border-color .15s;
  position: relative;
}
.faq-item h2 {
  font-size: 1.11rem;
  color: var(--primary);
  margin-bottom: 9px;
  font-family: var(--font-display);
  font-weight: 600;
}
.faq-item .faq-content {
  display: block;
  color: #403A27;
  font-size: 1rem;
  margin-bottom: 0;
}
.faq-item.active {
  border-color: var(--retro-brown);
  box-shadow: 0 8px 24px #b3694833;
}
.faq-search {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.faq-search input {
  padding: 8px 13px;
  border-radius: 8px;
  border: 2px solid var(--retro-brown);
  background: #fff7ea;
  font-size: 1.05rem;
  color: var(--primary-dark);
  outline: none;
  transition: border .19s;
}
.faq-search input:focus {
  border-color: var(--retro-teal);
}

/* PRICING TABLE --------------------------------------------- */
.pricing-table {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px #b3694835;
  margin-bottom: 20px;
}
.pricing-table th,
.pricing-table td {
  font-size: 1rem;
  padding: 15px 10px;
  text-align: left;
  border-bottom: 1px solid #eac97a66;
  font-family: var(--font-body);
}
.pricing-table thead tr {
  background: var(--accent);
}
.pricing-table th {
  color: var(--retro-brown);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.14rem;
}
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}
.pricing-table tbody tr:hover {
  background: var(--retro-peach);
}

/* MAP / UTILS / CONTACT ------------------------------------- */
.map-embed {
  background: #fff7ea;
  border-radius: 16px;
  box-shadow: 0 2px 10px #b3694833;
  padding: 18px 20px;
  margin: 18px 0;
  color: var(--retro-dark-green);
  font-family: var(--font-display);
}
.text-section {
  margin-bottom: 22px;
  font-size: 1.05rem;
}
.contact-prompt {
  background: var(--retro-peach);
  border-radius: 12px;
  padding: 16px 18px;
  margin-top: 22px;
  box-shadow: 0 2px 4px #eac97a19;
  font-family: var(--font-display);
}

/* FOOTER ---------------------------------------------------- */
footer {
  background: #f4ede2;
  padding: 32px 0 24px 0;
  border-top: 4px solid var(--retro-yellow);
  font-size: 1rem;
  color: var(--retro-brown);
  margin-top: 44px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-bottom: 16px;
  justify-content: center;
  align-items: center;
}
footer nav a {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.5px;
}
footer nav a:hover, footer nav a:focus {
  color: var(--retro-brown);
}
footer .text-section {
  text-align: center;
  color: var(--retro-dark-green);
  font-size: 1rem;
  margin-top: 18px;
}

/* COOKIE CONSENT BANNER -------------------------------------- */
.cookie-banner {
  position: fixed;
  z-index: 9999;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff7ea;
  box-shadow: 0 -4px 40px #baa36424;
  padding: 18px 18px 18px 28px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 1.02rem;
  border-top: 3px solid var(--retro-yellow);
  animation: cookieBannerAppear .48s cubic-bezier(.39,1.85,.41,.86);
}
@keyframes cookieBannerAppear {
  0% { opacity: 0; transform: translateY(64px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-message {
  flex: 1 1 360px;
  color: var(--primary-dark);
  font-size: 1rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.cookie-banner button {
  border-radius: 50px;
  border: 2px solid var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  padding: 10px 22px;
  font-size: 1rem;
  background: var(--retro-yellow);
  color: var(--primary);
  transition: background .2s, color .18s, border .18s, box-shadow .18s;
  outline: none;
  box-shadow: 0 1.5px 7px #eac97a23;
}
.cookie-banner button:focus,
.cookie-banner button:hover {
  background: var(--retro-brown);
  color: #fff;
  border-color: var(--retro-brown);
}
.cookie-banner .cookie-settings-btn {
  background: #fff;
  color: var(--retro-brown);
  border: 2px solid var(--primary);
}
.cookie-banner .cookie-settings-btn:focus, .cookie-banner .cookie-settings-btn:hover {
  color: var(--primary);
  background: var(--retro-teal);
  border-color: var(--retro-teal);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 5px 14px 10px;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-actions {
    gap: 11px;
  }
}

/* COOKIE MODAL ---------------------------------------------- */
.cookie-modal {
  position: fixed;
  z-index: 10001;
  left: 0; right: 0; top: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(28, 17, 7, 0.30);
  animation: modalAppear .3s cubic-bezier(.41,1.15,.49,.97);
}
@keyframes modalAppear {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #FFF8EA;
  border-radius: 26px;
  padding: 32px 34px 22px 34px;
  max-width: 420px;
  width: 96vw;
  box-shadow: 0 10px 40px #b3694820,0 1px 8px #eac97a33;
  color: var(--primary-dark);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  animation: modalContentAppear .32s cubic-bezier(.53,1.7,.65,.92);
}
@keyframes modalContentAppear {
  0% { transform: scale(.90) translateY(56px); opacity:0; }
  80% { transform: scale(1.05); opacity:.7; }
  100% { transform: scale(1); opacity:1; }
}
.cookie-modal-content h2 {
  color: var(--retro-brown);
  margin-bottom: 10px;
}
.cookie-modal-content .cookie-cat {
  margin-bottom: 13px;
}
.cookie-modal-content label {
  font-size: 1.02rem;
  color: var(--retro-dark-green);
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 2px;
  font-family: var(--font-display);
}
.cookie-modal-content input[type=checkbox] {
  accent-color: var(--retro-teal);
  width: 20px;
  height: 20px;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--retro-brown);
  cursor: pointer;
  z-index: 10001;
  transition: color .18s;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  color: var(--primary);
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 10px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cookie-modal-actions button {
  padding: 9px 19px;
}

/* RESPONSIVE DESIGN ----------------------------------------- */
@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
    padding-left: 7px;
    padding-right: 7px;
  }
  header .container {
    padding-left: 6px;
    padding-right: 6px;
    min-height:60px;
  }
}
@media (max-width: 780px) {
  h1 {font-size: 2.2rem;}
  h2 {font-size: 1.4rem;}
  .feature-grid > div, .testimonial-card {
    padding: 20px 13px 18px 13px;
    min-width: unset;
    max-width: unset;
    font-size: 0.98rem;
  }
  .pricing-table th, .pricing-table td {
    padding: 10px 4px;
    font-size: 0.92rem;
  }
}
@media (max-width: 600px) {
  body {font-size: 0.97rem;}
  h1 {font-size: 1.4rem;}
  h2 {font-size: 1.03rem;}
  header img {height:34px;}
  .feature-grid > div, .testimonial-card {
    font-size: .93rem;
    padding: 14px 7px 14px 7px;
  }
  .hero {padding: 12px 0 12px 0;}
  .cta-bottom {padding: 16px 0 16px 0;}
  .section {padding: 16px 2px;}
}

/* MICRO-ANIMATIONS & EFFECTS -------------------------------- */
a, .button, button, .faq-item, .service-list li, .feature-grid > div, .card {
  transition: box-shadow .18s, color .13s, border-color .18s, background .17s, transform .18s;
}

/* SCROLLBAR (retro-style) ------------------------------------ */
body::-webkit-scrollbar {
  width: 13px;
  background: #f4ede2;
}
body::-webkit-scrollbar-thumb {
  background: var(--retro-yellow);
  border-radius: 12px;
  border: 2.5px solid #f4ede2;
}
body::-webkit-scrollbar-thumb:hover {
  background: var(--retro-brown);
}

/* SELECT FORM ELEMENTS */
select, input, textarea {
  font-family: var(--font-body);
  border: 2px solid var(--retro-brown);
  border-radius: 8px;
  padding: 9px 14px;
  background: #fff7ea;
  font-size: 1rem;
  color: var(--primary-dark);
  outline: none;
  transition: border .17s, box-shadow .12s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--retro-teal);
  box-shadow: 0 0 0 2px #55bcc944;
}

/* === Print-friendly (optional) === */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display:none !important; }
  body { background: #fff; }
}
