/* == 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, 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F3EBDD;
  color: #29281E;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
ul, ol {
  list-style: none;
}
a {
  background: transparent;
  color: #1B4B94;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F4B400;
  outline: none;
}
img {
  max-width: 100%;
  display: block;
}
*, *:before, *:after {
  box-sizing: inherit;
}

/* == FONT FACE (Google Fonts fallback) == */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Open+Sans:wght@400;700&display=swap');

:root {
  /* Brand Palette */
  --vintage-primary: #1B4B94;
  --vintage-secondary: #F5F7FA;
  --vintage-accent: #F4B400;
  /* Vintage Complimentary Tones */
  --vintage-bg: #F3EBDD;
  --vintage-brown: #A67C52;
  --vintage-rose: #D06B5A;
  --vintage-mint: #BDE4B6;
  --vintage-blue: #6A8D99;

  /* Shadows & Patterns */
  --vintage-shadow: 0 3px 12px 0 rgba(23,20,13,0.07), 0 1.5px 4px 0 rgba(169,123,68,0.11);
  --vintage-radius: 12px;
  --vintage-spacing: 24px;
}

/* == BASIC STRUCTURE & CONTAINER == */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
main {
  width: 100%;
  flex: 1 0 auto;
}

/* == TYPOGRAPHY == */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  color: #29281E;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  color: var(--vintage-primary);
  text-shadow: 1px 1px 0 #fff2ce;
}
h2 {
  font-size: 2rem;
  color: var(--vintage-rose);
}
h3 {
  font-size: 1.25rem;
  color: var(--vintage-brown);
}
p, ul, ol, blockquote {
  font-size: 1.05rem;
  margin-bottom: 16px;
  line-height: 1.7;
  color: #44413e;
}
blockquote {
  border-left: 6px solid var(--vintage-accent);
  background: var(--vintage-secondary);
  padding: 12px 24px;
  margin: 0 0 10px 0;
  font-family: 'Open Sans', serif;
  font-style: italic;
  font-size: 1.07rem;
  color: #222;
  border-radius: 8px;
}
strong {
  font-weight: 700;
  color: var(--vintage-primary);
}
.text-section ul {
  margin-left: 20px;
  padding-left: 0;
}
.text-section ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 0px;
  font-size: 1rem;
}

/* == HEADER & NAVIGATION == */
header {
  width: 100%;
  background: var(--vintage-bg);
  border-bottom: 3px dashed var(--vintage-accent);
  box-shadow: 0 2px 12px rgba(89,71,33,0.07);
  padding: 0 0 0 0;
  position: sticky;
  top: 0;
  z-index: 110;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}
header img {
  height: 48px;
  width: auto;
}
header nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--vintage-primary);
  font-weight: 600;
  padding: 6px 15px;
  letter-spacing: 0.04em;
  border-radius: 7px;
  transition: background 0.21s, color 0.21s;
  border: none;
}
header nav a:hover, header nav a:focus {
  background: var(--vintage-accent);
  color: #29281E;
}
.btn.btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #fff;
  background: var(--vintage-primary);
  padding: 12px 28px;
  font-size: 1.02rem;
  border: none;
  border-radius: var(--vintage-radius);
  box-shadow: 0 3px 10px 0 rgba(27,75,148,0.13);
  transition: background 0.18s, color 0.18s, transform 0.21s;
  cursor: pointer;
  margin-left: 18px;
  letter-spacing: 0.04em;
  text-shadow: 1px 1px 0 #fff3e0;
}
.btn.btn-primary:hover, .btn.btn-primary:focus {
  background: var(--vintage-accent);
  color: var(--vintage-primary);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 16px 0 rgba(244,180,0,0.15);
}
.btn.btn-secondary {
  background: var(--vintage-mint);
  color: var(--vintage-brown);
  padding: 10px 26px;
  border-radius: var(--vintage-radius);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: 2px solid var(--vintage-blue);
  font-size: 1rem;
  margin-top: 16px;
  box-shadow: 0 1.5px 4px 0 rgba(106,141,153,0.09);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn.btn-secondary:hover, .btn.btn-secondary:focus {
  background: var(--vintage-blue);
  color: #fff;
  border-color: var(--vintage-brown);
}

/* == MOBILE MENU == */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 28px;
  top: 29px;
  background: var(--vintage-accent);
  border: none;
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  cursor: pointer;
  z-index: 160;
  box-shadow: 0 2px 10px rgba(27,75,148,0.13);
  transition: background 0.18s, transform 0.15s;
}
.mobile-menu-toggle:active {
  background: var(--vintage-primary);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #f5f1df;
  box-shadow: 0 0 30px 12px rgba(106, 65, 28, 0.18);
  z-index: 900;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 32px 32px 24px;
  max-width: 100vw;
  min-width: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.32s cubic-bezier(.53,1.25,.64,1);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--vintage-primary);
  align-self: flex-end;
  margin-bottom: 30px;
  margin-right: 14px;
  cursor: pointer;
  transition: color 0.16s;
  outline: none;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--vintage-rose);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--vintage-brown);
  background: #fff9e8;
  border-radius: 11px;
  padding: 15px 18px;
  margin: 0 -8px;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--vintage-primary);
  background: var(--vintage-accent);
}

@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 990px) {
  header .container {
    gap: 10px;
  }
  header nav a {
    font-size: 0.97rem;
    padding: 6px 10px;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (max-width: 850px) {
  header nav {
    gap: 8px;
  }
}
@media (max-width: 820px) {
  header .container {
    gap: 7px;
  }
  .btn.btn-primary { padding: 8px 13px; font-size: 1rem; }
}

@media (max-width: 760px) {
  header nav, header a.btn.btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header {
    padding-bottom: 0 !important;
  }
  header .container {
    padding-right: 62px;
    min-height: 76px;
    justify-content: flex-start;
  }
}

/* == HERO SECTION == */
.hero {
  background: repeating-linear-gradient(105deg, #f7eccd, #f7eccd 45px, #f3e3b1 48px, #f3e3b1 93px);
  border-bottom: 5px dotted #e4a849;
  padding: 50px 0;
  margin-bottom: 50px;
}
.hero .container {
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  gap: 18px;
  align-items: center;
  text-align: center;
}
.hero h1 {
  font-size: 2.8rem;
  color: var(--vintage-primary);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.14rem;
  color: #473c22;
}
.hero .btn.btn-primary {margin-top: 12px;}

/* == SECTION & SPACING PATTERNS == */
.section,
.services,
.features,
.cta,
.about,
.about-preview,
.testimonials,
.thank-you,
.contact,
.footer {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fffbe7;
  border-radius: var(--vintage-radius);
  box-shadow: var(--vintage-shadow);
}
.section:last-child,
.features:last-child,
.services:last-child,
.cta:last-child,
.about:last-child,
.about-preview:last-child,
.contact:last-child,
.footer:last-child,
.thank-you:last-child {
  margin-bottom: 0;
}

/* == FLEXBOX CARD & CONTENT LAYOUTS == */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.card {
  background: #fff9f2;
  border-radius: var(--vintage-radius);
  box-shadow: 0 3.3px 14px 0 rgba(223,196,132,0.11);
  margin-bottom: 20px;
  padding: 32px 28px;
  position: relative;
  min-width: 220px;
  flex: 1 1 260px;
  transition: box-shadow 0.21s, transform 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 9px 24px 0 rgba(244,180,0,0.21);
  transform: translateY(-3px) scale(1.02);
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1.9px 11px 0 rgba(27, 75, 148, 0.04);
  margin-bottom: 24px;
  border: 2.5px dashed #F4B400;
  position: relative;
  min-height: 110px;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.testimonial-card:last-child { margin-bottom: 0; }
.testimonial-card blockquote {
  margin: 0 20px 0 0;
  background: #fffde8;
  color: #2f2e19;
  border-left: 6px solid var(--vintage-rose);
  border-radius: 6px;
  font-size: 1.1rem;
  box-shadow: 0 0.5px 2.5px 0 rgba(244,180,0,0.08);
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 28px 0 rgba(213,107,90,0.11);
  border-color: var(--vintage-primary);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 220px;
  background: #fff4e8;
  border-radius: var(--vintage-radius);
  padding: 25px 18px 20px 18px;
  margin-bottom: 20px;
  box-shadow: 0 1.3px 7px 0 rgba(106, 141, 153, 0.08);
  border-left: 8px solid var(--vintage-blue);
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.19s;
}
.feature-item img {
  width: 40px; height: 40px; display: block;
}
.feature-item:hover, .feature-item:focus-within {
  border-color: var(--vintage-accent);
  box-shadow: 0 6px 18px 0 rgba(212, 179, 80, 0.12);
  transform: translateY(-2px) scale(1.012);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-top: 24px;
}
@media (max-width: 900px) {
  .feature-grid { gap: 18px; }
  .feature-item { min-width: 180px; }
}

/* == SECTION CUSTOMS == */
.services .text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-preview .text-section,
.about .text-section,
.contact .text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* == CONTACT DETAILS / MAP PLACEHOLDER == */
.contact-details {
  background: #e8e1cd;
  border-left: 7px solid var(--vintage-primary);
  padding: 20px 24px;
  border-radius: 8px;
  font-size: 1rem;
  color: #4e4021;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-details img {
  height: 22px;
  width: 22px;
  margin-right: 7px; display: inline-block; position: relative; top: 4px;
}
.map-placeholder {
  background: #f8eab6;
  border: 2px dashed #ab8355;
  border-radius: 9px;
  color: #60452D;
  font-style: italic;
  font-size: 1rem;
  text-align: center;
  padding: 26px 10px;
  margin-bottom: 16px;
}
.contact .btn {margin-top: 11px;}

/* == CTA == */
.cta .content-wrapper {
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 17px;
}
.cta h2 {
  font-size: 2.2rem;
  color: var(--vintage-blue);
  margin-bottom: 4px;
}

/* == FOOTER == */
footer {
  background: #FCF5E2;
  border-top: 3px dotted #BDE4B6;
  font-size: 0.97rem;
  color: #56402a;
  padding: 27px 0;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
footer img {
  height: 38px;
  margin-bottom: 7px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 0.5em;
}
footer nav a {
  color: #90713f;
  text-shadow: 1px 1px 0 #fff;
  font-weight: 600;
  padding: 2px 0;
  border-radius: 3px;
  font-size: 0.98rem;
  transition: color 0.18s, background 0.13s;
}
footer nav a:hover, footer nav a:focus {
  color: #fff;
  background: var(--vintage-primary);
}
.footer-contact {
  font-size: 0.95rem;
  color: #4e4021;
}
.footer-contact a {
  color: var(--vintage-primary);
  word-break: break-all;
  transition: color .18s;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: var(--vintage-accent);
}

@media (max-width: 850px) {
  footer .container {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

/* == FORM STYLES (if used) == */
input, textarea, select {
  font-family: inherit;
  color: #352718;
  padding: 12px 15px;
  background: #FFFBEA;
  border: 2px solid var(--vintage-brown);
  border-radius: 6px;
  font-size: 1.02rem;
  margin-bottom: 16px;
  transition: border-color 0.17s, background 0.14s;
  outline: none;
  box-shadow: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--vintage-accent);
  background: #fff7ee;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--vintage-primary);
  font-weight: 600;
  margin-bottom: 7px;
  display: inline-block;
}

/* == RESPONSIVE FLEX DIRECTIONS == */
@media (max-width: 768px) {
  .container, .content-wrapper, .feature-grid, .card-container, .content-grid {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 15px;
    align-items: stretch;
  }
  .card, .feature-item, .testimonial-card {
    min-width: 0;
    margin-bottom: 18px !important;
  }
  .section, .services, .features, .about, .about-preview, .testimonials, .thank-you, .contact, .footer {
    padding: 28px 5px;
  }
  .hero {
    padding: 38px 0;
  }
}

/* == GLOBAL GAPS AND MARGINS == */
.section, .card-container, .content-grid, .feature-grid {
  gap: 24px;
}
.card, .feature-item, .testimonial-card {
  margin-bottom: 20px;
}

/* == BUTTONS & INTERACTIVE ELEMENTS == */
.btn, .mobile-nav a, .footer nav a {
  transition: background 0.18s, color 0.18s, transform 0.16s;
}
button, .btn {
  cursor: pointer;
  outline: none !important;
}

/* == SCROLLBAR (vintage style) == */
::-webkit-scrollbar {
  width: 14px;
  background: #f7edd6;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb {
  background: #d6c2a4;
  border-radius: 7px;
  border: 4px solid #F3EBDD;
}

/* == COOKIE CONSENT BANNER == */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff8e4;
  border-top: 3px solid var(--vintage-accent);
  box-shadow: 0 -3px 13px 0 rgba(169,123,68,0.10);
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 19px 38px 19px 23px;
  gap: 22px;
  min-height: 86px;
  animation: cookie-in 0.9s cubic-bezier(.43,1.7,.64,1) 1;
}
@keyframes cookie-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  font-size: 1rem;
  color: #4c391d;
  font-family: 'Open Sans', Arial, sans-serif;
  flex: 1 1 360px;
  max-width: 650px;
  margin-right: 15px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 17px;
}
.cookie-banner__button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 7px;
  padding: 10px 18px;
  font-size: 0.96rem;
  border: none;
  background: var(--vintage-accent);
  color: #403524;
  transition: background 0.16s, color 0.14s, transform 0.16s;
  margin-left: 0;
  box-shadow: 0 2px 9px 0 rgba(212,179,80,0.09);
}
.cookie-banner__button:hover, .cookie-banner__button:focus {
  background: var(--vintage-primary);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.cookie-banner__button--reject {
  background: #fff;
  color: var(--vintage-brown);
  border: 2px solid var(--vintage-brown);
}
.cookie-banner__button--reject:hover, .cookie-banner__button--reject:focus {
  background: var(--vintage-rose);
  color: #fff;
  border-color: var(--vintage-accent);
}
.cookie-banner__button--settings {
  background: var(--vintage-mint);
  color: var(--vintage-primary);
  border: 2px solid var(--vintage-blue);
}
.cookie-banner__button--settings:hover, .cookie-banner__button--settings:focus {
  background: var(--vintage-blue);
  color: #fff;
  border-color: #fff;
}
@media (max-width: 730px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 21px;
    padding: 18px 10px;
  }
}

/* == COOKIE MODAL == */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(16,13,4,0.37);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s;
}
.cookie-modal.open {
  visibility: visible;
  opacity: 1;
}
.cookie-modal__dialog {
  background: #fffaf1;
  border-radius: 15px;
  box-shadow: 0 6px 44px 0 rgba(151,123,52,0.18);
  padding: 48px 32px 32px 32px;
  min-width: 330px;
  max-width: 96vw;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  animation: modal-in 0.55s cubic-bezier(.53,1.35,.74,1) 1;
  position: relative;
}
@keyframes modal-in {
  from { transform: translateY(80px) scale(0.8); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-modal__close {
  position: absolute;
  top: 11px; right: 15px;
  background: none;
  font-size: 1.85rem;
  border: none;
  color: var(--vintage-primary);
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: var(--vintage-rose);
}
.cookie-modal h2 {
  font-size: 1.23rem;
  color: #725441;
  margin-bottom: 12px;
}
.cookie-modal__category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-modal__category [type=checkbox] {
  accent-color: var(--vintage-accent);
}
.cookie-modal__category label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--vintage-brown);
  margin-left: 0;
  margin-bottom: 0;
}
.cookie-modal__footer {
  margin-top: 18px;
  display: flex;
  gap: 15px;
  flex-direction: row;
  justify-content: flex-end;
  width: 100%;
}
.cookie-modal__button {
  background: var(--vintage-accent);
  color: #2c2214;
  border-radius: 7px;
  border: none;
  padding: 10px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  transition: background 0.18s, color 0.13s, transform 0.15s;
}
.cookie-modal__button:hover, .cookie-modal__button:focus {
  background: var(--vintage-primary);
  color: #fff;
}
@media (max-width: 530px) {
  .cookie-modal__dialog {
    padding: 25px 7px 17px 7px;
    min-width: 0;
  }
}

/* == MICRO-INTERACTIONS == */
.btn, .mobile-menu-toggle, .feature-item, .testimonial-card, .card {
  transition: box-shadow .16s, background .14s, color .16s, border-color .16s, transform .16s;
}

/* == VINTAGE/RETRO DECORATIVE ELEMENTS (PATTERNED CORNERS, ETC.) == */
.section, .features, .about-preview, .about, .testimonials, .cta, .thank-you, .contact, .footer {
  position: relative;
  overflow: hidden;
}
.section:before, .features:before, .about-preview:before, .about:before, .testimonials:before, .cta:before, .thank-you:before, .contact:before, .footer:before {
  content: '';
  position: absolute;
  width: 54px; height: 54px;
  left: -27px; top: -27px;
  background: repeating-linear-gradient(135deg,#bde4b6,#bde4b6 8px,#f3ebdd 8px,#f3ebdd 16px);
  opacity: .19;
  border-radius: 50%;
  pointer-events: none;
}
.section:after, .features:after, .about-preview:after, .about:after, .testimonials:after, .cta:after, .thank-you:after, .contact:after, .footer:after {
  content: '';
  position: absolute;
  width: 42px; height: 42px;
  bottom: -21px; right: -21px;
  background: repeating-linear-gradient(45deg,#d06b5a,#d06b5a 7px,#f3ebdd 7px,#f3ebdd 14px);
  opacity: .16;
  border-radius: 50%;
  pointer-events: none;
}

/* == MEDIA QUERIES FOR RESPONSIVENESS == */
@media (max-width: 600px) {
  .hero h1 { font-size: 1.53rem; }
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.09rem; }
  h3 { font-size: 0.99rem; }
  .section, .features, .about, .about-preview, .testimonials, .cta, .thank-you, .contact, .footer {
    padding: 17px 3px;
  }
}

/* == MISC == */
::-moz-selection {
  background: var(--vintage-accent);
  color: #fff;
}
::selection {
  background: var(--vintage-accent);
  color: #fff;
}

/* Accessibility - skip link styles if needed */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 9999;
  background: #F4B400;
  color: #fff;
  padding: 20px 40px;
  border-radius: 10px;
}
.skip-link:focus {
  left: 0;
  top: 12px;
  width: auto;
  height: auto;
  outline: 3px solid #A67C52;
}
