/* =========================
   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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #FAF6EF;
  font-family: 'Roboto', Arial, sans-serif;
  color: #2a2321;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after { box-sizing: inherit; }
ul, ol { padding-left: 24px; margin-bottom: 20px; }
img { max-width: 100%; display: block; height: auto; }
a { color: #0A4C6A; text-decoration: none; transition: color 0.25s; }
a:focus, a:hover { color: #B04C0B; }
button { font: inherit; cursor: pointer; border: none; background: none; }
table { border-collapse: collapse; width: 100%; margin-bottom: 32px; font-size: 16px; }
th, td { padding: 10px 16px; border: 1px solid #B29079; text-align: left; }
th { background: #F6E2C1; font-family: 'Montserrat', sans-serif; font-size: 18px; }

/* ========================
   VINTAGE RETRO VARIABLES
========================= */
:root {
  --color-primary: #0A4C6A;
  --color-primary-dark: #083951;
  --color-secondary: #F7F9FB;
  --color-accent: #FFB300;
  --color-accent-dark: #CA8500;
  --color-bg: #FAF6EF;
  --color-bg-section: #F6E2C1;
  --color-card: #FFF7EA;
  --color-text: #2a2321;
  --color-contrast-text: #25201b;
  --color-muted: #bfa990;
  --color-border: #B29079;

  --font-display: 'Montserrat', 'Arial Rounded MT Bold', 'Arial', sans-serif;
  --font-body: 'Roboto', 'Verdana', 'Geneva', sans-serif;
  --font-vintage: 'Montserrat', 'Roboto', Arial, sans-serif;

  --border-radius: 16px;
  --border-radius-sm: 8px;
  --shadow-xs: 0 2px 6px #CDB08022;
  --shadow: 0 4px 18px #B2907940;
  --shadow-strong: 0 6px 30px #85613E33;

  --transition: 0.24s cubic-bezier(.64,.09,.33,1);
  --pattern-vintage: repeating-linear-gradient(135deg, #faecd0 0 16px, #f1dab1 20px 32px);
}

/* ============================
     TYPOGRAPHY & HEADINGS
============================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: #5d4630;
  text-shadow: 1px 2px 0 #fcf0e1, 0px 2px 9px #f3e3b6;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 28px;
  font-weight: 700;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 600;
}
h3 {
  font-size: 1.32rem;
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-weight: 500;
}
p, ul, ol, dl, table {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 18px;
}
dt {
  font-family: var(--font-display);
  font-weight: 600;
  margin-top: 16px;
  color: #845422;
  font-size: 1.12rem;
}
dd {
  margin-left: 0;
  margin-bottom: 8px;
}
strong {
  color: #7c4e18;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* ============================
          STRUCTURE
============================= */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-section);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-xs);
}
.features {
  margin-bottom: 60px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > div {
  background: var(--color-card);
  flex: 1 1 240px;
  min-width: 220px;
  border-radius: 16px;
  box-shadow: var(--shadow-xs);
  padding: 28px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  border: 2px solid #e7c899;
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-grid > div:hover {
  transform: translateY(-4px) scale(1.03) rotate(-1deg);
  box-shadow: var(--shadow-strong);
  border-color: var(--color-accent);
}
.feature-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  filter: sepia(0.4) contrast(1.25) brightness(1.08);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.service-grid > div {
  background: var(--color-card);
  flex: 1 1 230px;
  min-width: 210px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-xs);
  padding: 26px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  border: 2px dashed #dec796;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-grid > div:hover {
  transform: scale(1.05) rotate(0.5deg);
  box-shadow: var(--shadow-strong);
  border-color: var(--color-accent);
}
.service-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
  filter: sepia(0.4) contrast(1.15) brightness(1.05);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-card);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-xs);
  padding: 28px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1.5px solid #ead4ad;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-top: 24px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonials {
  background: var(--color-bg-section);
  padding: 40px 0 60px 0;
  margin-bottom: 60px;
  border-top: 3px dashed #eedbb6;
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  border-radius: var(--border-radius);
  background: #FFF7EA;
  box-shadow: var(--shadow);
  border: 2px solid #e7c899;
  min-width: 220px;
  max-width: 340px;
  color: #241a0a;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0;
  position: relative;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-strong);
  transform: translateY(-3px) scale(1.025);
  border-color: var(--color-accent);
}
.testimonial-card p {
  margin-bottom: 6px;
  font-style: italic;
  font-family: var(--font-body);
  color: #3e3520;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #85613E;
  align-self: flex-end;
  font-family: var(--font-display);
  opacity: 0.91;
}

.cta {
  margin-bottom: 40px;
  padding: 34px 0 36px 0;
  background: var(--pattern-vintage);
  border-top: 3px double #d6ae60;
  border-bottom: 3px double #d6ae60;
}

.map-placeholder {
  background: #fff7ea;
  border: 2px dashed #deba7a;
  border-radius: 12px;
  box-shadow: var(--shadow-xs);
  margin-top: 12px;
  padding: 20px 15px;
  font-size: 1rem;
  min-height: 64px;
  color: #7a614c;
  font-style: italic;
}

/* ====== Tables (Pricing Table) ====== */
.pricing-table {
  margin: 28px 0 40px 0;
  background: #FFF7EA;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-xs);
  border: 2px solid #efdbac;
  overflow: hidden;
}
.pricing-table th {
  background: #faecd0;
  color: #6A4B27;
  font-size: 1.08rem;
}
.pricing-table td {
  background: #fff7ea;
}
.pricing-table tr:hover td {
  background: #FFE2A8;
  transition: background 0.2s;
}

/* =====================
        BUTTONS
====================== */
.btn-primary, .btn-secondary {
  padding: 12px 34px;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 20px;
  box-shadow: 2px 6px 18px #edc76a29;
  text-shadow: 1px 1px #78633c30;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.19s, transform 0.19s;
  margin-top: 8px;
  margin-bottom: 10px;
  outline: none;
  border: 2px solid transparent;
  display: inline-block;
}
.btn-primary {
  background: var(--color-accent);
  color: var(--color-text);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-accent-dark);
  color: #fff;
  box-shadow: 0 6px 30px #b3831e32;
  transform: translateY(-2px) scale(1.04) rotate(-2deg);
}
.btn-secondary {
  background: #FFF7EA;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-primary-dark);
  color: #fff;
  border-color: var(--color-primary);
  transform: translateY(-2px) scale(1.04) rotate(2deg);
  box-shadow: 0 6px 28px #0a4c6a24;
}

/* ============================
   HEADER & NAVIGATION
============================= */
header {
  background: #f4e0bf;
  border-bottom: 3px double #b29079;
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 101;
  box-shadow: 0 2px 18px #dec08221;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 10px 16px;
  gap: 20px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 24px;
  filter: sepia(0.17) brightness(1.03);
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
header nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 12px;
  color: #5d4630;
  border-radius: 7px;
  transition: color 0.17s, background 0.17s;
}
header nav a:hover {
  color: var(--color-accent);
  background: #f1debb;
}
header .btn-primary {
  margin: 0 0 0 10px;
  font-size: 1.02rem;
}

/* =======================
   MOBILE MENU TOGGLE
======================= */
.mobile-menu-toggle {
  position: fixed;
  right: 24px;
  top: 17px;
  z-index: 200;
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  color: #fff;
  font-size: 2.2rem;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 3px 15px #eba41439;
  border: 2px solid #b29079;
  transition: background 0.21s, color 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-accent-dark);
  color: #fff7ea;
}
/* ========================
   MOBILE NAVIGATION MENU
========================= */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: start;
  position: fixed;
  top: 0; left: 0;
  z-index: 600;
  width: 100%;
  height: 100vh;
  background: #FAF6EF;
  box-shadow: -1px 0 30px #8e745426;
  transform: translateX(-110%);
  opacity: 0.975;
  transition: transform 0.31s cubic-bezier(.77,0,.18,1), box-shadow 0.19s;
  padding: 30px 30px 18px 30px;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 6px 0 35px #9b7d463d;
}
.mobile-menu-close {
  background: #fff7ea;
  color: #a05706;
  font-size: 2rem;
  position: absolute;
  right: 30px;
  top: 30px;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  border: 2px solid #fad37d;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.14s;
  z-index: 701;
}
.mobile-menu-close:hover {
  background: #ffe2a8;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 50px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.19rem;
  color: #845422;
  padding: 12px 0;
  border-bottom: 1px dotted #dec796;
  transition: color 0.14s, background 0.17s;
  border-radius: 6px;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #faecd0;
  color: var(--color-accent);
}

/* ===============
    HERO SECTION
================ */
.hero {
  background: var(--pattern-vintage);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 58px 0 48px 0;
  border-bottom: 3px double #dbb463;
}
.hero .container {
  justify-content: center;
}
.hero .text-section h1 {
  color: #7c4e18;
  text-shadow: 2px 3px 0 #ffeead, 0 1px 11px #dfbe8f70;
  font-size: 2.4rem;
  margin-bottom: 22px;
}
.hero .text-section p {
  font-size: 1.23rem;
  margin-bottom: 22px;
  color: #56402e;
}

/* ===============
    FOOTER
================ */
footer {
  background: #f4e0bf;
  border-top: 3px double #b29079;
  font-size: 1rem;
  color: #513922;
  padding: 20px 0 24px 0;
  margin-top: 54px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 0 18px;
  flex-wrap: wrap;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 3px;
}
footer nav a {
  color: #513922;
  font-size: 1.01rem;
  padding: 2px 0;
  font-family: var(--font-display);
  transition: color 0.14s;
}
footer nav a:hover {
  color: var(--color-accent);
}
footer img {
  height: 44px;
  width: auto;
  margin-bottom: 10px;
}
footer .contact-info {
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: #6c5342;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 3px;
}
footer .contact-info img {
  width: 18px; height: 18px; margin-right: 4px; display: inline-block;
  vertical-align: text-bottom;
}

/* ===============
   COOKIE BANNER
================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100%;
  z-index: 9000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: #FFF7EA;
  border-top: 2px solid #DBB463;
  box-shadow: 0 -2px 25px #B2907922;
  padding: 21px 14px 17px 14px;
  font-size: 1rem;
  gap: 18px;
  transition: transform 0.38s cubic-bezier(.75,.15,.66,1), opacity 0.21s;
  opacity: 1;
}
.cookie-banner.hide { opacity: 0; pointer-events: none; transform: translateY(25px); }
.cookie-banner .cookie-btn-group {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-left: 16px;
}
.cookie-banner button, .cookie-banner .btn-primary, .cookie-banner .btn-secondary {
  font-size: 1.01rem;
  padding: 8px 18px;
  border-radius: 14px;
  margin: 0 2px;
  box-shadow: 1px 3px 8px #ffd17438;
}
.cookie-banner .btn-primary {
  background: var(--color-accent);
  color: var(--color-text);
  border: 2px solid #eac361;
}
.cookie-banner .btn-secondary {
  background: #fff7ea;
  color: #a07524;
  border: 2px solid #deba7a;
}
.cookie-banner .btn-primary:hover {
  background: var(--color-accent-dark);
  color:#fff;
}
.cookie-banner .btn-secondary:hover {
  background: #fad37d21;
  color: #d68d00;
}

.cookie-banner .cookie-settings-btn {
  background: #fbeeb7;
  color: #6e5012;
  border: 2px solid #dec796;
  font-size: 1.01rem;
  transition: background .16s, color .13s;
}
.cookie-banner .cookie-settings-btn:hover {
  background: #fff7ea;
  color: #a07524;
}

/* ========================
 COOKIE SETTINGS (MODAL)
======================== */
.cookie-modal {
  position: fixed;
  z-index: 10100;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(32,22,10,0.23);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}
.cookie-modal .modal-content {
  background: #fff7ea;
  border-radius: 18px;
  box-shadow: 0 10px 48px #dbc08e35;
  max-width: 480px;
  width: 95%;
  padding: 36px 28px 28px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 2px solid #DBB463;
}
.cookie-modal .modal-content h2 {
  color: #7a5010;
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.cookie-modal .close-modal-btn {
  position: absolute;
  top: 17px; right: 18px;
  background: #faecd0;
  color: #a07524;
  border-radius: 50%;
  width: 36px; height: 36px;
  border: 1.5px solid #dbb463;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal .close-modal-btn:hover {
  background: #ffe2a8;
  color: #fff;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  background: #faf6ef;
  border-radius: 12px;
  padding: 11px 16px;
  border: 1.5px dotted #e6c684;
  margin-bottom: 9px;
}
.cookie-modal .cookie-category label {
  flex: 1;
  font-size: 1.04rem;
  font-family: var(--font-body);
  color: #7c641c;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  width: 21px; height: 21px;
  accent-color: var(--color-accent);
  margin-right: 6px;
}
.cookie-modal .cookie-category input[disabled] {
  opacity: 0.52;
}
.cookie-modal .modal-btn-group {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 15px;
  justify-content: flex-end;
}
.cookie-modal .btn-primary, .cookie-modal .btn-secondary {
  font-size: 1.01rem;
  padding: 8px 21px;
}

/* =========================
  FORM ELEMENTS (if present)
=========================== */
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 15px;
  padding: 11px 16px;
  border: 2px solid #f1debb;
  background: #faf6ef;
  border-radius: 10px;
  outline: none;
  transition: border 0.19s, box-shadow 0.13s;
  width: 100%;
  box-shadow: 0 1px 3px #dfbe8f17;
}
input:focus, textarea:focus, select:focus {
  border: 2px solid var(--color-accent);
  background: #fff;
}
label {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #845422;
  margin-bottom: 6px;
}

/* =============================
     CUSTOM VINTAGE ELEMENTS
============================== */
::-webkit-scrollbar {
  width: 9px;
  background: #faecd0;
}
::-webkit-scrollbar-thumb {
  background: #efd49c;
  border-radius: 7px;
  border: 2px solid #faecd0;
}
::-webkit-scrollbar-thumb:hover {
  background: #f9c75c;
}

blockquote {
  margin: 18px 0 18px 0;
  border-left: 5px solid var(--color-accent);
  background: #fff7ea;
  padding: 17px 18px 17px 28px;
  font-style: italic;
  border-radius: var(--border-radius-sm);
  color: #43301e;
  box-shadow: 0 2px 7px #efd49c22;
}

/* ========================
   Responsive Breakpoints
======================== */
@media (max-width: 1024px) {
  .container {
    max-width: 96vw;
    padding: 0 8px;
  }
  .feature-grid > div, .service-grid > div {
    min-width: 170px;
    flex: 1 1 180px;
  }
  header .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 860px) {
  .service-grid, .feature-grid, .testimonials .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .service-grid > div, .feature-grid > div, .testimonial-card {
    min-width: 85vw;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding-left: 2px; padding-right: 2px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid, .service-grid, .testimonials .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div, .service-grid > div, .testimonial-card {
    min-width: 98vw;
    max-width: 100%;
    margin: 0 auto;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .section, .hero, .cta {
    padding-left: 6px; padding-right: 6px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-left: 8px; padding-right: 8px;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    padding-left: 0; padding-right: 0;
    font-size: 1.09rem;
    text-align: center;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    padding: 20px 8px 12px 8px;
    font-size: 0.97rem;
    align-items: flex-start;
  }
  .cookie-banner .cookie-btn-group {
    margin-left: 0;
    gap: 7px;
    flex-wrap: wrap;
  }
  .cookie-modal .modal-content {
    padding: 30px 10px 23px 10px;
    width: 98vw;
  }
}
@media (max-width: 440px) {
  h1 {
    font-size: 1.49rem;
  }
  h2 {
    font-size: 1.16rem;
  }
  .feature-grid > div, .service-grid > div, .testimonial-card {
    padding: 13px 6px 13px 6px;
  }
  .hero {
    padding-top: 30px; padding-bottom: 30px;
  }
  .cta, .section {
    padding-top: 13px; padding-bottom: 13px;
  }
  .map-placeholder {
    font-size: 0.92rem;
    padding: 10px 4px;
  }
  .btn-primary, .btn-secondary {
    padding: 9px 0;
    font-size: 1rem;
  }
}

/* =========================
  ACCESSIBILITY IMPROVEMENTS
========================= */
a, button, .btn-primary, .btn-secondary, .mobile-nav a, .mobile-menu-close {
  outline: none;
}
a:focus-visible, .btn-primary:focus-visible, .btn-secondary:focus-visible, .mobile-nav a:focus-visible, .mobile-menu-close:focus-visible {
  box-shadow: 0 0 0 3px #fed76b88;
  background: #fffde4;
  color: #bb7104 !important;
}

/* ===========
 UTILITY
============ */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mt-1 { margin-top: 8px !important; }
.fw-600 { font-weight: 600 !important; }
.center { text-align: center !important; }

/* =============================
 CLASSIC PATTERNS/DECORATIONS
============================== */
.section::before {
  content: '';
  display: block;
  position: absolute;
  left: -57px;
  top: 0;
  width: 25px;
  height: 120px;
  background: repeating-linear-gradient(140deg, #e7c899 0 9px, #f6e2c1 10px 18px);
  border-radius: 8px;
  opacity: 0.09;
}
.section {
  position: relative;
}

/* Only decorative, not for content, and safely far to the left */

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