/* 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, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 100%;
  scroll-behavior: smooth;
}
body {
  background: #F3EEE6;
  color: #254355;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.7;
  font-size: 16px;
  position: relative;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #254355;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFA437;
}
*, *:before, *:after {
  box-sizing: inherit;
}

/* VINTAGE RETRO VARIABLES (with fallbacks) */
:root {
  --brand-primary: #254355;
  --brand-secondary: #FFA437;
  --brand-accent: #E9F0F7;
  --brand-bg: #F3EEE6;
  --retro-dark: #262626;
  --retro-brown: #a97b50;
  --retro-red: #ad4c3a;
  --retro-green: #3b5535;
  --retro-blue: #497d96;
  --retro-cream: #F5E5CB;
  --retro-gold: #D7BA7B;
  --retro-shadow: 0 2px 14px rgba(88,65,40,0.08);
  --radius-soft: 20px;
  --radius-card: 12px;
  --radius-pill: 999px;
  --shadow-soft: 0 4px 24px rgba(84,69,60,0.08);
  --transition: all 0.18s cubic-bezier(.7,.2,.16,1);
}

/* FONT FACE */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: #254355;
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.1;
  text-shadow: 0 1px 0 #fff3, 0 0px 2px #e2b47a14;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.6rem;
  margin-top: 24px;
}
h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--retro-red);
  margin-top: 16px;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  h1 { font-size: 2.9rem; }
  h2 { font-size: 2.1rem; }
  h3 { font-size: 1.34rem; }
}
.subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.15rem;
  color: #254355;
  margin-bottom: 22px;
  letter-spacing: 0.03em;
}
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #4a473f;
  line-height: 1.7;
}
b, strong {
  font-weight: 700;
}

/* --- LAYOUT --- */
.container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.section {
  width: 100%;
  background: var(--retro-cream);
  border-radius: var(--radius-soft);
  box-shadow: var(--retro-shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 576px) {
  .section { padding: 22px 8px; }
  .container { padding-left: 4vw; padding-right: 4vw; }
}

main > section, .section { margin-bottom: 60px; }

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
  padding: 28px 22px;
  transition: box-shadow 0.18s;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 260px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 32px rgba(160,90,30,0.17);
}
.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 { flex-direction: column; align-items: flex-start; gap: 18px; }
  .content-grid, .card-container { flex-direction: column; gap: 20px; }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: #fff5e5;
  padding: 20px 16px;
  border: 1.5px dashed #f5c47b;
}

/* --- HEADER & NAV --- */
header {
  width: 100%;
  background: var(--retro-cream);
  border-bottom: 3px solid var(--retro-gold);
  box-shadow: 0 4px 16px #e7d6ad23;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 80px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  margin-left: 20px;
}
header nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 1.08rem;
  color: #497d96;
  padding: 4px 8px;
  border-radius: 7px;
  transition: var(--transition);
}
header nav a:hover, header nav a:focus {
  background: var(--brand-secondary);
  color: #fff;
  outline: none;
}
header img {
  height: 42px;
  margin-right: 18px;
}
@media (max-width: 990px) {
  header .container { flex-wrap: wrap; }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: 62px;
  }
  header nav, header .btn-primary {
    display: none;
  }
}

/* --- BUTTONS --- */
.btn, button, input[type="submit"] {
  display: inline-flex;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  border: none;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 3px 13px #E9F0F7aa;
  margin-top: 8px;
  margin-right: 10px;
}
.btn-primary {
  background: var(--brand-primary);
  color: #fff;
  border: 2.5px solid var(--retro-brown);
  box-shadow: 0 7px 30px #32414e23;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--brand-secondary);
  color: #fff;
  border-color: var(--retro-red);
  transform: translateY(-2px) scale(1.04);
}
.btn-secondary {
  background: var(--brand-secondary);
  color: #254355;
  border: 2px solid var(--retro-brown);
  box-shadow: 0 6px 18px #F7E2BAaa;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #fff;
  color: var(--brand-secondary);
  border-color: var(--retro-gold);
  transform: scale(1.04);
}
button:active {
  opacity: 0.9;
}


/* ------ HERO ----- */
.hero {
  background: repeating-linear-gradient(-45deg,#f5e2c8 0 18px,#e1cab7 18px 36px);
  border-bottom: 3px solid #efd390;
  box-shadow: 0 14px 45px 0 #f3e1c050;
  margin-bottom: 60px;
  padding-top: 16px;
  padding-bottom: 46px;
  border-radius: 0 0 38px 38px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 14px;
  padding: 30px 0 0 0;
}
.hero h1 {
  color: var(--retro-red);
  text-shadow: 0 2px 0 #fff7, 0 1px 18px #ffe8b7;
  margin-bottom: 8px;
}
.hero .subheadline {
  color: #546064;
  background: #fffbea60;
  padding: 6px 16px;
  border-radius: 10px;
  font-size: 1.12rem;
  margin-bottom: 16px;
}

/* --- CUSTOM SECTIONS --- */
.feature-grid, .service-cards, .service-list, .team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 12px;
}
.feature-grid > div, .service-cards > div, .team-grid > div, .service-list > div {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--retro-shadow);
  padding: 26px 18px;
  flex: 1 1 250px;
  min-width: 220px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border: 2px solid #f6ddb9;
  transition: box-shadow 0.19s, border 0.19s;
}
.feature-grid > div:hover, .service-cards > div:hover {
  box-shadow: 0 10px 36px #f7d9a857;
  border-color: var(--retro-gold);
}
.feature-grid img, .service-list img, .service-cards img, .team-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 6px;
}

@media (max-width:960px) {
  .feature-grid, .service-cards, .service-list, .team-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div, .service-cards > div, .team-grid > div, .service-list > div {
    min-width: 0;
    width: 100%;
  }
}

.cert-awards {
  background: #fff5e0;
  border: 1.5px dashed var(--retro-gold);
  border-radius: 9px;
  box-shadow: 0 2px 8px #E9F0F733;
  padding: 14px 18px;
  margin-bottom: 16px;
}
.cert-awards h3 {
  color: var(--retro-green);
  margin-bottom: 6px;
  font-size: 1rem;
}
.cert-awards ul {
  list-style: disc inside;
}

.value-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding: 0;
}
.value-list li {
  background: #fff6ed;
  border-radius: 12px;
  border: 1.5px solid #f3dbc4;
  box-shadow: 0 2px 12px #e6c28928;
  padding: 16px 14px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 500;
}
.value-list img {
  width: 28px; height: 28px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-soft);
  box-shadow: 0 5px 38px #497d9617;
  margin-bottom: 20px;
  border-left: 7px solid var(--brand-secondary);
  border-right: 7px solid var(--retro-brown);
  transition: box-shadow 0.18s;
  max-width: 650px;
}
.testimonial-card p {
  font-style: italic;
  font-family: 'Montserrat', sans-serif;
  color: #254355;
  font-size: 1.09rem;
  margin-bottom: 3px;
  text-align: center;
}
.testimonial-card span {
  font-family: 'Roboto', sans-serif;
  color: #252525;
  font-size: 0.98rem;
  opacity: 0.85;
  text-align: center;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 21px 44px #25435527;
}


/* --- PRICING TABLE --- */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 28px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 18px #b6996a1a;
}
.pricing-table th, .pricing-table td {
  padding: 15px 18px;
  text-align: left;
}
.pricing-table thead th {
  background: var(--brand-secondary);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.09rem;
  border-bottom: 2px solid #eee2cd;
}
.pricing-table tbody tr {
  border-bottom: 1px solid #f2e4c4;
}
.pricing-table tbody tr:nth-child(even) {
  background: #fffbe0;
}
.pricing-table tbody td {
  font-size: 1rem;
  color: #2e2d26;
}

.custom-notes {
  font-size: 0.97rem;
  font-style: italic;
  background: #ffeeca;
  border-radius: 9px;
  padding: 8px 14px;
  color: #493721;
}

.service-inclusions {
  list-style: disc inside;
  color: #71532c;
  margin-bottom: 8px;
}

/* --- FAQ --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #fff;
  border-left: 6px solid #d7ba7b;
  border-radius: 8px;
  padding: 16px 18px;
  box-shadow: 0 2px 10px #e5cfa314;
  margin-bottom: 12px;
}
.faq-item h2 {
  font-size: 1.1rem;
  color: var(--brand-primary);
  margin-bottom: 8px;
}

/* --- CTA SECTIONS --- */
.cta {
  background: #254355;
  border-top: 5px dotted #FFD69E;
  border-bottom: 5px dotted #FFD69E;
  border-radius: 36px;
  color: #fff;
  padding: 48px 20px;
  text-align: center;
  margin-bottom: 60px;
  box-shadow: 0 2px 20px #25435525;
}
.cta h2, .cta p {
  color: #fff;
  margin-bottom: 10px;
}
.cta .btn-primary {
  background: #FFA437;
  color: #254355;
  border-color: #fff5dd;
  font-weight: 800;
}
.cta .btn-primary:hover {
  background: #fff;
  color: #FFA437;
  border-color: #FFD69E;
}

/* --- CONTACT PAGE --- */
.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0 18px 0;
}
.map-placeholder {
  border: 3px dashed #cbbb84;
  background: #fffbe6;
  color: #3d2d18;
  border-radius: 15px;
  padding: 28px;
  font-size: 1.02rem;
  margin-bottom: 16px;
  font-family: 'Roboto', sans-serif;
}

/* --- FOOTER --- */
footer {
  background: var(--brand-primary);
  color: #fff;
  border-radius: 40px 40px 0 0;
  box-shadow: 0 -4px 28px #41260317;
  padding: 38px 0 18px 0;
  width: 100%;
  margin-top: 80px;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand img {
  height: 56px;
  filter: none;
  margin-bottom: 10px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}
footer nav a {
  color: #FFD497;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.03rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  opacity: 0.93;
}
footer nav a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-contact p {
  color: #E9F0F7;
  font-size: 0.98rem;
  margin-bottom: 4px;
  opacity: 0.84;
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
}
.footer-social img {
  height: 32px;
  width: 32px;
  opacity: 0.77;
  transition: opacity 0.15s;
}
.footer-social img:hover {
  opacity: 1;
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* --- TABLES, UL/OL, LI --- */
ul, ol {
  margin-left: 20px;
  margin-bottom: 14px;
}
li {
  margin-bottom: 6px;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--brand-primary);
  background: #ffe9ca;
  border-radius: 50%;
  padding: 6px 16px;
  border: none;
  margin-left: 8px;
  box-shadow: 0 2px 10px #ddb47530;
  cursor: pointer;
  z-index: 101;
  outline: none;
  transition: background 0.17s, color 0.17s, transform 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #FFD69E;
  color: #ad4c3a;
  transform: scale(1.05);
}
@media (min-width: 769px) {
  .mobile-menu-toggle { display: none !important; }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #F5E5CBf9;
  box-shadow: 0 18px 60px #2e1e1033;
  z-index: 120;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.4,.64,.76,1.2);
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: var(--retro-red);
  padding: 18px 25px 6px 8px;
  align-self: flex-end;
  cursor: pointer;
  margin-right: 5vw;
  margin-top: 14px;
  border-radius: 50%;
  transition: background 0.13s, color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #ffe9ca;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 44px 10vw 0 10vw;
}
.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #254355;
  padding: 12px 4px;
  border-radius: 5px;
  transition: background 0.19s, color 0.13s;
  min-width: 160px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFA43724;
  color: #ad4c3a;
  outline: none;
}

@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
    visibility: hidden;
  }
}

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff9e3;
  color: #254355;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 4vw 18px 3vw;
  z-index: 130;
  box-shadow: 0 -4px 34px 0 #e6bc7855;
  border-top: 3px solid var(--brand-secondary);
  border-radius: 20px 20px 0 0;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.33s, opacity 0.26s;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(110%);
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.cookie-banner .btn-consent {
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: var(--radius-pill);
  border: 2px solid #FFD497;
  background: #FFE4BA;
  color: #254355;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  box-shadow: 0 2px 9px #efd69511;
  transition: var(--transition);
}
.cookie-banner .btn-consent:hover, .cookie-banner .btn-consent:focus {
  background: #FFA437;
  color: #fff;
  border-color: #ad4c3a;
}
.cookie-banner .btn-settings {
  background: #fff;
  color: #FFA437;
  border: 2px solid #FFA437;
  margin-left: 4px;
}
.cookie-banner .btn-settings:hover, .cookie-banner .btn-settings:focus {
  background: #FFA437;
  color: #fff;
}
@media (max-width: 620px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 12px; padding: 12px 5vw 14px 5vw; }
  .cookie-banner .cookie-buttons { flex-direction: column; gap: 8px; }
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  bottom: 0; left: 0; right: 0; top: 0;
  width: 100vw; height: 100vh;
  background: #f7f3ebcc;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2002;
  pointer-events: auto;
  opacity: 1;
  animation: cookieModalIn 0.32s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
@keyframes cookieModalIn {
  0% { opacity: 0; transform: translateY(80px); }
  100% { opacity: 1; transform: none; }
}
.cookie-modal-dialog {
  background: #fff7e7;
  border-radius: 22px;
  box-shadow: 0 9px 60px #8c774f42;
  padding: 38px 24px;
  max-width: 420px;
  width: 92vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-family: 'Roboto', sans-serif;
  color: #254355;
}
.cookie-modal-dialog h2 {
  color: #ad4c3a;
  font-size: 1.2rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 12px;
}
.cookie-modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 7px;
  padding: 11px 16px;
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 500;
  border: 2px solid #ffe8b7;
}
.cookie-modal-category .toggle-switch {
  margin-left: 8px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
}
/* Simple retro toggle switch */
.toggle-switch {
  display: flex;
  align-items: center;
  gap: 3px;
}
.toggle-switch input[type="checkbox"] {
  width: 0; height: 0;
  visibility: hidden;
  position: absolute;
}
.toggle-switch label {
  display: inline-block;
  width: 43px;
  height: 23px;
  background: #FFE4BA;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  border: 1.7px solid #e8b96a;
  transition: background 0.2s, border-color 0.2s;
}
.toggle-switch label:after {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #FFA437;
  transition: 0.2s;
}
.toggle-switch input[type="checkbox"]:checked + label {
  background: #ffd497;
  border-color: #FFA437;
}
.toggle-switch input[type="checkbox"]:checked + label:after {
  left: 22px;
  background: #ad4c3a;
}

/* --- RESPONSIVE TYPOGRAPHY & LAYOUT --- */
@media (max-width: 420px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1.05rem; }
  .btn, .btn-primary, .btn-secondary { font-size: 0.99rem; padding: 9px 11px; }
}
@media (max-width: 540px) {
  .feature-grid, .service-cards, .service-list, .team-grid { gap: 10px; }
  .footer-social img { height: 25px; width: 25px; }
  .footer-brand img { height: 38px; }
  .pricing-table th, .pricing-table td { padding: 8px 6px; }
}

/* --- ANIMATIONS & TRANSITIONS --- */
.btn, .btn-primary, .btn-secondary, button, .card, .testimonial-card {
  transition: var(--transition);
  will-change: transform, box-shadow;
}
.section, .feature-grid > div, .service-cards > div, .team-grid > div {
  animation: fade-in-up 0.6s cubic-bezier(.2,.7,.7,1) both;
}
@keyframes fade-in-up {
  0% { opacity: 0; transform: translateY(38px); }
  60% { opacity: 1; transform: translateY(-4px); }
  100% { opacity: 1; transform: none; }
}

/* ---- UTILITIES & MISC ---- */
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 8px !important; }
.mt-4 { margin-top: 16px !important; }
.mt-6 { margin-top: 28px !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 8px !important; }
.mb-4 { margin-bottom: 16px !important; }
.mb-6 { margin-bottom: 28px !important; }
.m-auto { margin-left: auto; margin-right: auto; }

::-webkit-input-placeholder { color: #c2b28d; }
::-moz-placeholder { color: #c2b28d; }
:-ms-input-placeholder { color: #c2b28d; }
::placeholder { color: #c2b28d; }


/* --- FOCUS STYLE FOR ACCESSIBILITY --- */
a:focus, button:focus, .btn:focus, .btn-primary:focus, .btn-secondary:focus {
  outline: 2.5px solid #FFD497 !important;
  outline-offset: 1px;
  z-index: 103;
}


/* --- ERRORS, SUCCESSES --- */
.form-error, .form-success {
  border-radius: 6px;
  padding: 10px;
  margin-bottom: 16px;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
}
.form-error {
  background: #ffeeed;
  color: #ad4c3a;
  border: 1.5px solid #ad4c3a7a;
}
.form-success {
  background: #e6faed;
  color: #3b5535;
  border: 1.5px solid #3b553572;
}


/* --- PRINT ONLY CLASSES & ACCESSIBILITY --- */
@media print {
  header, nav, .footer-social, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal, .btn, .btn-primary, .btn-secondary { display: none !important; }
  body, main, .container { background: #fff !important; color: #000 !important; }
}
