/* 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, 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 {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  min-height: 100vh;
  background: #F6EEDB;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #3b2c1a;
  font-size: 1rem;
  line-height: 1.7;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #125843;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #EA9326;
  outline: none;
}
ul, ol {
  list-style: none;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
}

/* TYPOGRAPHY */
h1 {
  font-family: 'Montserrat', 'Arial Black', Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  color: #125843;
  margin-bottom: 24px;
  letter-spacing: 2px;
  font-weight: 800;
  text-shadow: 1px 2px 0 #C2650022;
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  color: #C26500;
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-weight: 700;
  text-shadow: 0 1px 0 #e7d5bb55;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  color: #125843;
  margin-bottom: 18px;
  font-weight: 600;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #3b2c1a;
}
.tagline {
  color: #583e2c;
  font-size: 1.2rem;
  margin-bottom: 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
}
p, blockquote, table, ul, ol {
  margin-bottom: 18px;
  font-size: 1rem;
}
blockquote {
  font-style: italic;
  background: #fff9eb;
  border-left: 8px solid #C26500;
  color: #583e2c;
  padding: 18px 22px;
  border-radius: 8px;
  margin: 24px 0;
}
strong {
  font-weight: bold;
  color: #125843;
}

/* BUTTONS & CTAs */
.cta-primary, .main-nav .cta-primary, .mobile-nav .cta-primary {
  display: inline-block;
  background: #EA9326;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.125rem;
  padding: 14px 32px;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.2s, transform 0.18s, box-shadow 0.18s;
  box-shadow: 0px 2px 8px #c2781a22;
  margin-left: 18px;
  outline: none;
  letter-spacing: 1px;
  text-shadow: 1px 1px 0 #c2781a09;
  text-align: center;
}
.cta-primary:focus, .cta-primary:hover {
  background: #C26500;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 16px #c2781a33;
}
button, .button {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 22px;
  background: #125843;
  color: #fff;
  border-radius: 8px;
  border: none;
  outline: none;
  cursor: pointer;
  margin-right: 8px;
  margin-bottom: 8px;
  transition: background 0.2s, box-shadow 0.18s, color 0.18s;
  font-weight: bold;
  letter-spacing: 0.5px;
}
button:focus, button:hover, .button:focus, .button:hover {
  background: #EA9326;
  color: #fff;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #fff9eb;
  border-bottom: 3px solid #C26500;
  box-shadow: 0 4px 16px #583e2c15;
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}
header img {
  height: 54px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #125843;
  font-size: 1rem;
  text-shadow: 0 1px 0 #f6eedb;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:focus, .main-nav a:hover {
  background: #EA9326;
  color: #fff;
}
.main-nav .cta-primary {
  margin-left: 18px;
  min-width: 170px;
}
.mobile-menu-toggle {
  display: none;
  background: #EA9326;
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #C26500;
  box-shadow: 0 2px 8px #c2781a33;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff9eb;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.7,0.2,0.23,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 28px 60px 28px;
  box-shadow: -8px 0 48px #3b2c1a15;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #EA9326;
  font-size: 2.2rem;
  position: absolute;
  right: 24px;
  top: 20px;
  cursor: pointer;
  z-index: 10002;
  transition: color 0.18s;
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #f6eedb;
  color: #C26500;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top: 64px;
  gap: 0;
}
.mobile-nav a {
  color: #125843;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  padding: 18px 0;
  width: 100%;
  border-bottom: 1px dashed #C2650044;
  transition: color 0.18s, background 0.18s;
  text-align: left;
}
.mobile-nav a.cta-primary {
  margin: 18px 0 0 0;
  background: #EA9326;
  color: #fff;
  font-size: 1.14rem;
  border-radius: 20px;
  padding: 13px 0;
  width: 70%;
  text-align: center;
  box-shadow: 0 2px 8px #c2781a22;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #EA9326;
  background: #f6eedb;
}

/* HERO SECTION */
.hero {
  background: url('../assets/pattern-vintage.svg'), #E9E1CB;
  background-size: 170px auto, cover;
  background-repeat: repeat, no-repeat;
  background-position: center top, center;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 7px 36px #a1926c22;
  margin-bottom: 60px;
  padding-top: 56px;
  padding-bottom: 56px;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero h1 {
  font-size: 2.7rem;
  color: #125843;
  margin-bottom: 0.7em;
  letter-spacing: 2.5px;
}
.hero .cta-primary {
  margin-top: 18px;
}

/* FEATURE GRIDS */
.features {
  background: #fff;
  border-radius: 36px;
  box-shadow: 0 2px 12px #c2781a11;
}
.feature-grid, .features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
}
.feature-grid li {
  flex: 1 1 200px;
  background: #F6EEDB;
  border-radius: 16px;
  padding: 32px 20px;
  margin-bottom: 20px;
  box-shadow: 0 3px 14px #1258430d;
  text-align: center;
  position: relative;
  transition: transform 0.18s, box-shadow 0.18s;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-width: 220px;
}
.feature-grid li:hover {
  box-shadow: 0 7px 20px #C2650044;
  transform: translateY(-6px) scale(1.03);
  background: #fffdeb;
}
.feature-grid img {
  width: 54px;
  height: 54px;
  margin-bottom: 12px;
}
.feature-grid strong {
  display: block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

/* CARDS, CARD-GRID, ETC */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff9eb;
  border: 2px solid #E9E1CB;
  border-radius: 14px;
  box-shadow: 0 2px 8px #583e2c11;
  margin-bottom: 20px;
  position: relative;
  padding: 28px 20px;
  flex: 1 1 280px;
  min-width: 260px;
  transition: box-shadow 0.15s, transform 0.14s;
}
.card:hover {
  box-shadow: 0 7px 28px #EA932666;
  transform: translateY(-4px) scale(1.02);
}

/* FLEX SECTIONS */
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* TESTIMONIALS */
.testimonials {
  background: #fff9eb;
  border-radius: 32px;
  padding-top: 38px;
  padding-bottom: 42px;
  box-shadow: 0 2px 14px #c2781a22;
}
.testimonials h2 {
  margin-bottom: 28px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 30px;
  border-radius: 16px;
  background: #fff;
  margin-bottom: 20px;
  border-left: 8px solid #EA9326;
  box-shadow: 0 1px 14px #3b2c1a13;
  max-width: 640px;
  font-size: 1.14rem;
  color: #3b2c1a;
}
.testimonial-card p {
  color: #3b2c1a;
  font-style: italic;
  margin-bottom: 0.4em;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #125843;
}

/* CTA SECTION */
.cta {
  background: #EA9326;
  color: #fff;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 4px 24px #C2650022;
  padding-top: 34px;
  padding-bottom: 34px;
}
.cta p {
  font-size: 1.18rem;
  font-weight: 500;
  margin-bottom: 18px;
  color: #fff;
}
.cta .cta-primary {
  margin: 0 auto;
}

/* FOOTER */
footer {
  background: #125843;
  color: #fff;
  padding: 30px 0;
  border-top: 7px double #EA9326;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand img {
  height: 46px;
}
.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-links {
  flex-direction: row;
  gap: 28px;
}
.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links a {
  color: #fff;
  opacity: 0.96;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: color 0.18s, opacity 0.15s;
  padding: 1px 0;
}
.footer-links a:focus, .footer-links a:hover {
  color: #EA9326;
  opacity: 1;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff9eb;
  font-size: 0.96rem;
}
.footer-contact img {
  width: 18px;
  opacity: 0.78;
}
.footer-social {
  display: flex;
  gap: 17px;
  margin-top: 4px;
}
.footer-social a img {
  width: 32px;
  height: 32px;
  filter: grayscale(0.16) sepia(0.24) brightness(1.08) contrast(1.1);
  transition: filter 0.18s, transform 0.18s;
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: none;
  transform: scale(1.08) rotate(-3deg);
}

/* PRICING & TABLES */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px #C2650011;
  margin-bottom: 26px;
  overflow: hidden;
}
thead th {
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #125843;
  padding: 18px 10px;
  background: #EA9326;
  color: #fff;
  text-align: left;
  font-weight: 700;
}
tbody td {
  font-size: 1.06rem;
  color: #3b2c1a;
  padding: 15px 14px;
  background: #fff9eb;
  border-bottom: 1px solid #E9E1CB;
}
table tr:last-child td { border-bottom: none; }

/* LEGAL PAGES */
.legal {
  background: #fff;
  border-radius: 30px;
  padding: 40px 20px;
  box-shadow: 0 2px 14px #c2781a1f;
}
.legal h1, .legal h2 {
  color: #125843;
}
.legal ul {
  margin-bottom: 16px;
  margin-left: 20px;
  list-style: disc;
}
.legal li {
  margin-bottom: 9px;
  font-size: 0.98rem;
  color: #583e2c;
}
.legal a {
  color: #EA9326;
  text-decoration: underline;
  font-weight: 500;
}
.legal a:hover {
  color: #C26500;
}

/* CONTACT PAGE */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 17px;
}
.contact-info div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #125843;
  font-size: 1.07rem;
}
.contact-info img {
  width: 20px;
  opacity: 0.7;
}

/* THANK YOU PAGE */
.thank-you {
  background: #fff9eb;
  border-radius: 25px;
  box-shadow: 0 2px 15px #1258430b;
  padding: 50px 30px;
  text-align: center;
}
.thank-you h1 {
  color: #EA9326;
  font-weight: 800;
}

/* BLOG PAGE */
.blog-intro ul {
  list-style: none;
  margin-left: 0;
}
.blog-intro li:before {
  content: '\2713\0020';
  color: #EA9326;
  font-weight: bold;
  margin-right: 5px;
}

/* FAQ / SPECIAL OFFERS */
.faq ul, .special-offers ul {
  margin-left: 0;
  margin-bottom: 16px;
}
.faq li, .special-offers li {
  margin-bottom: 10px;
  padding-left: 0;
  color: #125843;
  font-weight: 500;
}
.special-offers li {
  color: #C26500;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 10010;
  background: #fff9eb;
  color: #3b2c1a;
  padding: 26px 22px 24px 22px;
  box-shadow: 0 -4px 22px #12584328;
  border-top: 5px solid #EA9326;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  justify-content: center;
  transition: transform 0.36s cubic-bezier(0.87,0.19,0.15,0.92), opacity 0.21s;
  opacity: 1;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(140%);
}
.cookie-banner .cookie-text {
  font-size: 1rem;
  flex: 2 1 320px;
  color: #3b2c1a;
}
.cookie-banner .cookie-actions {
  flex: 1 1 200px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  font-size: 1rem;
  border-radius: 24px;
  padding: 12px 30px;
  margin-bottom: 0;
}
.cookie-banner .accept {
  background: #EA9326;
  color: #fff;
}
.cookie-banner .reject {
  background: #ccc1aa;
  color: #583e2c;
}
.cookie-banner .settings {
  background: #125843;
  color: #fff;
}
.cookie-banner .accept:hover,.cookie-banner .accept:focus {
  background: #C26500;
}
.cookie-banner .reject:hover,.cookie-banner .reject:focus {
  background: #e1b880;
  color: #3b2c1a;
}
.cookie-banner .settings:hover,.cookie-banner .settings:focus {
  background: #EA9326;
  color: #fff;
}

/* COOKIE CONSENT MODAL */
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  z-index: 10011;
  background: #3b2c1a5a;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.29s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff9eb;
  padding: 34px 28px 28px 28px;
  border-radius: 16px;
  min-width: 325px;
  max-width: 98vw;
  box-shadow: 0 6px 32px #3b2c1a22;
  position: relative;
  text-align: left;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: #125843;
  margin-bottom: 17px;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  right: 16px; top: 14px;
  background: transparent;
  border: none;
  color: #EA9326;
  font-size: 1.6rem;
  cursor: pointer;
  padding: 7px 12px;
  border-radius: 50%;
  transition: background 0.18s;
}
.cookie-modal .close-cookie-modal:hover,.cookie-modal .close-cookie-modal:focus {
  background: #EA9326;
  color: #fff;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 34px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 5px #C2650011;
  padding: 13px 14px;
  font-size: 1rem;
  color: #3b2c1a;
}
.cookie-category .category-label {
  flex: 2 1 130px;
  font-weight: 500;
}
.cookie-category .category-toggle {
  flex: 0 0 auto;
}
.cookie-category input[type=checkbox] {
  accent-color: #EA9326;
  width: 20px; height: 20px;
}
.cookie-category.essential .category-toggle {
  opacity: 0.44;
  pointer-events: none;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-actions button {
  border-radius: 22px;
  padding: 10px 24px;
  font-size: 1rem;
  background: #EA9326;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  border: none;
  margin-bottom: 0;
  transition: background 0.17s;
}
.cookie-modal .cookie-modal-actions button.decline {
  background: #E9E1CB;
  color: #3b2c1a;
}
.cookie-modal .cookie-modal-actions button.decline:hover,
.cookie-modal .cookie-modal-actions button.decline:focus {
  background: #e1b880;
  color: #C26500;
}
.cookie-modal .cookie-modal-actions button.save:hover,
.cookie-modal .cookie-modal-actions button.save:focus {
  background: #C26500;
}

/* PATTERNS, NOSTALGIC TOUCHES, RETRO DETAILS */
section, .card, .testimonials, .features, .about-summary, .team, .faq, .special-offers, .services, .process, .benefits, .blog-intro, .legal, .location {
  background-image: url('../assets/pattern-retro-dots.svg');
  background-repeat: repeat;
  background-size: 104px auto;
  position: relative;
}
section:before {
  content: '';
  display: block;
  position: absolute;
  opacity: 0.08;
  top: 8px; left: 10px;
  width: 64px; height: 64px;
  background: url('../assets/retro-flair.svg') no-repeat center/contain;
  z-index: 0;
}
.card:before {
  content: '';
  position: absolute;
  top: -12px; right: -12px;
  width: 36px; height: 36px;
  background: url('../assets/retro-corner.svg') no-repeat center/contain;
  opacity: 0.10;
  z-index: 1;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1100px) {
  .container { max-width: 94vw; }
}
@media (max-width: 992px) {
  .feature-grid li, .card {
    min-width: 180px;
    padding: 22px 10px;
  }
  .container { max-width: 98vw; }
  .footer-links { flex-direction: column; gap: 13px; }
}
@media (max-width: 820px) {
  header .container { flex-direction: row; gap: 12px; }
  .main-nav { gap: 10px; }
  .feature-grid { gap: 18px; }
  .content-grid, .card-container { gap: 14px; }
  .footer-brand img { height: 36px; }
  .footer-contact div { font-size: 0.91rem; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  section { margin-bottom: 36px; padding: 28px 7px; }
  .hero { padding-top: 28px; padding-bottom: 30px; background-size: 120px auto, cover; border-radius: 0 0 16px 16px; }
  .hero h1 { font-size: 1.7rem; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .testimonial-card, .card {
    padding: 20px 8px;
    font-size: 1rem;
  }
  .footer-contact { font-size: 0.86rem; }
  .footer-links { gap: 8px; }
  .footer-brand { margin-bottom: 12px; }
  .faq, .special-offers, .blog-intro, .legal, .location { padding: 24px 7px; border-radius: 14px; }
  .footer-social a img { width: 23px; height: 23px; }
  .testimonials, .features { border-radius: 12px; }
}
@media (max-width: 600px) {
  .footer-brand { flex:0 0 100%; width: 100%; margin-bottom: 8px; }
  .footer-links { flex:0 0 100%; width: 100%; flex-direction: column; }
  .footer-contact { flex:0 0 100%; width: 100%; }
  .footer-social { width: 100%; justify-content: flex-end; }
  .container { padding: 0 4vw; }
  section { padding: 13px 2vw 16px 2vw; }
  .testimonial-card, .card { padding: 13px 4px; font-size: 0.95rem; }
  .cookie-banner { flex-direction: column; gap: 14px; padding: 20px 7px 16px 7px; font-size: 0.97rem; }
  .cookie-banner .cookie-actions { gap: 8px; }
  .cookie-modal { padding: 18px 5vw; min-width: 0; }
}
@media (max-width: 500px) {
  .hero h1 { font-size: 1.22rem; }
  .testimonial-card, .card { font-size: 0.87rem; }
  .footer-social { justify-content: center; gap: 11px; }
  .cookie-modal h2 { font-size: 1.06rem; }
}
@media (max-width: 768px) {
  .content-grid, .card-container, .feature-grid, .features-list, .footer .container {
    flex-direction: column;
    gap: 12px;
    align-items: stretch !important;
    justify-content: flex-start !important;
  }
  .text-image-section { flex-direction: column; gap: 12px; }
}

/* FOCUS STYLES */
a, button, .cta-primary, .cookie-banner button, .cookie-modal-actions button, .cookie-modal .close-cookie-modal {
  outline: none;
  box-shadow: none;
}
a:focus, button:focus, .cta-primary:focus, .cookie-banner button:focus, .cookie-modal-actions button:focus, .cookie-modal .close-cookie-modal:focus {
  box-shadow: 0 0 2px 2px #EA9326bb;
  background: #fffdeb22;
}

/* PRINT STYLES */
@media print {
  header, footer, .cookie-banner, .cookie-modal-overlay, nav, .mobile-menu, .cta {
    display: none !important;
  }
  section { background: none !important; padding: 0 !important; }
}
