/* ===============================================================
   CSS RESET & NORMALIZE – Luxury Premium Foundation
================================================================*/
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;
}
/* HTML5 display-role reset */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
html {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  background: #fff;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #2D3644;
  background: #F8F8F6;
  min-height: 100vh;
  letter-spacing: 0.01em;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #2D3644;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #D1A86C;
  outline: none;
}
button, input, select, textarea {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}
ul, ol {
  list-style: none;
}
strong {
  font-weight: bold;
}

/* ===============================================================
   Luxury Brand Variables & Typography
================================================================*/
:root {
  --color-primary: #2D3644;
  --color-secondary: #D1A86C;
  --color-accent: #FFFFFF;
  --color-bg: #F8F8F6;
  --color-neutral: #EBE7DF;
  --color-text-dark: #2D3644;
  --color-text-light: #FFFFFF;
  --color-gray: #B6B6B6;
  --shadow-soft: 0 4px 16px 0 rgba(45, 54, 68, 0.07), 0 1.5px 3px rgba(209, 168, 108, 0.05);
  --radius-section: 18px;
  --radius-card: 14px;
  --radius-btn: 100px;
  --font-display: 'PT Serif', Georgia, 'Times New Roman', serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-primary);
  font-family: var(--font-display);
}
h1 {
  font-size: 2.7rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 17px;
  letter-spacing: 0.01em;
}
h3 {
  font-size: 1.28rem;
  font-weight: 600;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
  font-weight: 700;
}
p, li, ul {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-primary);
  line-height: 1.7;
}
p.subheadline {
  color: var(--color-secondary);
  font-size: 1.12rem;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  margin-bottom: 15px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: var(--radius-section);
  box-shadow: var(--shadow-soft);
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 769px) {
  .content-wrapper {
    gap: 32px;
  }
}

.text-section {
  max-width: 700px;
}

/* ====================
   HEADER & NAVIGATION
======================*/
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 16px rgba(45,54,68,0.04);
  border-bottom: 2px solid var(--color-neutral);
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 16px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 1.04rem;
  font-family: var(--font-body);
}
.main-nav a {
  color: var(--color-primary);
  padding: 8px 8px;
  border-radius: 7px;
  position: relative;
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-secondary);
  background: #ede3d2;
}

.btn.primary {
  background: var(--color-primary);
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.06rem;
  padding: 13px 34px;
  border-radius: var(--radius-btn);
  border: none;
  box-shadow: 0 2px 8px rgba(45,54,68,0.09);
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s, transform 0.13s;
  margin-left: 6px;
  outline: none;
  display: inline-block;
  position: relative;
}
.btn.primary:hover, .btn.primary:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  box-shadow: 0 4px 22px 0 rgba(209,168,108,0.17);
  transform: translateY(-2px) scale(1.021);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 44px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
}

button.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--color-primary);
  padding: 7px 16px;
  border-radius: 9px;
  cursor: pointer;
  transition: background 0.15s, color 0.13s;
  z-index: 120;
}
button.mobile-menu-toggle:focus, button.mobile-menu-toggle:hover {
  background: #f5efd9;
  color: var(--color-secondary);
}

/* ======================
   MOBILE MENU OVERLAY
========================*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(45, 54, 68, 0.96);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 9999;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.6,0,0.4,1), transform 0.33s cubic-bezier(0.6,0,0.4,1);
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 26px;
  right: 23px;
  font-size: 2.1rem;
  color: var(--color-secondary);
  background: none;
  border: none;
  z-index: 10011;
  cursor: pointer;
  padding: 3px 10px;
  border-radius: 50%;
  transition: background 0.16s, color 0.13s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #e9e0cb;
  color: #7e6738;
}
.mobile-nav {
  margin-top: 85px;
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  padding-left: 34px;
  gap: 24px;
}
.mobile-nav a {
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-size: 1.46rem;
  font-weight: 700;
  padding: 13px 0 13px 0;
  width: 100%;
  border-radius: 6px;
  transition: background 0.18s, color 0.21s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(191,158,94,0.10);
  color: #fff2d4;
}

/* Hide main nav and show burger on mobile */
@media (max-width: 980px) {
  nav.main-nav {
    display: none;
  }
  button.mobile-menu-toggle {
    display: inline-block;
  }
}
@media (max-width: 480px) {
  .mobile-nav {
    padding-left: 16px;
    gap: 18px;
  }
  .mobile-menu-close {
    right: 8px;
    top: 12px;
  }
}

/* ===============================================================
   HERO SECTION
================================================================*/
.hero {
  display: flex;
  align-items: center;
  min-height: 340px;
  background: linear-gradient(120deg, #FFFDFC 80%, #D1A86C 780px);
  border-radius: 0 0 var(--radius-section) var(--radius-section);
  margin-bottom: 44px;
  box-shadow: 0 6px 30px rgba(45,54,68,0.07);
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 655px;
}
.hero h1 {
  font-size: 2.4rem;
  margin: 0 0 8px 0;
}
.hero .subheadline {
  font-size: 1.13rem;
}
.hero .btn {
  margin-top: 18px;
}
@media (max-width: 768px) {
  .hero {
    min-height: 240px;
    padding: 50px 0 38px 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

/* ===============================================================
   GENERIC SECTION LAYOUTS & SPACING
================================================================*/
.section {
  box-shadow: var(--shadow-soft);
  background: var(--color-accent);
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius-section);
}
@media (max-width: 600px) {
  .section {
    padding: 28px 7px;
    margin-bottom: 40px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
  padding: 28px 26px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.12s;
}
.card:hover, .card:focus {
  box-shadow: 0 10px 38px 0 rgba(209,168,108,0.13); 
  transform: translateY(-4px) scale(1.012);
}

.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 {
    flex-direction: column;
    gap: 13px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #FFFFFF;
  border: 1.5px solid #ede3d2;
  border-radius: 12px;
  box-shadow: 0 2.5px 10px rgba(209,168,108,0.09);
  margin-bottom: 22px;
  min-width: 220px;
  max-width: 420px;
  transition: box-shadow 0.20s, border-color 0.13s;
}
.testimonial-card:hover, .testimonial-card:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 6px 18px #d1a86c22;
}
.testimonial-card p {
  color: #222629;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.05em;
  margin-bottom: 5px;
}
.testimonial-card .testimonial-info {
  font-family: var(--font-body);
  color: #987233;
  font-size: 1em;
  margin-top: 0;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 850px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =====================
   FEATURES, CARDS
=====================*/
.features .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 29px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: 0 3.5px 14px rgba(45,54,68,0.07);
  min-width: 220px;
  flex: 1 1 230px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 22px 22px 22px;
  border: 1.3px solid #ebdecd;
  margin-bottom: 20px;
  transition: box-shadow 0.20s, border-color 0.13s, transform 0.13s;
}
.feature-card:hover, .feature-card:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 7px 22px #d1a86c18;
  transform: translateY(-3px) scale(1.013);
}
.feature-card img {
  width: 42px;
  height: 42px;
  margin-bottom: 13px;
  margin-left: 0;
}
.feature-card h3 {
  margin-bottom: 7px;
  color: var(--color-primary);
}
.feature-card p {
  color: var(--color-primary);
  font-size: 1.07em;
  margin-bottom: 0;
}
.feature-card strong {
  color: var(--color-secondary);
  font-weight: 700;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: 0 2.2px 10px rgba(45,54,68,0.07);
  min-width: 230px;
  flex: 1 1 260px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 22px 20px 22px;
  border: 1.2px solid #ece0cf;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, border-color 0.13s, transform 0.13s;
}
.service-card:hover, .service-card:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 4px 19px #d1a86c15;
  transform: translateY(-2px) scale(1.011);
}
.service-card h3 {
  color: var(--color-primary);
  font-size: 1.13em;
  font-family: var(--font-display);
}
.service-card .price {
  margin-top: 16px;
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 1.08em;
}

/* =====================
   CONTACT / CTA SECTIONS
=====================*/
.cta .content-wrapper {
  align-items: flex-start;
  gap: 19px;
}
.cta ul {
  margin-top: 18px;
  margin-bottom: 0;
}
.cta .contact-info ul {
  margin: 10px 0 0 0;
  padding: 0;
}
.contact-info {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 9px #dac6a918;
  padding: 19px 20px 10px 19px;
  margin-top: 23px;
  font-size: 1rem;
}
.contact-info li {
  margin-bottom: 8px;
  color: var(--color-primary);
}
.location-map {
  margin-top: 13px;
  background: #f7f6f2;
  border-radius: 7px;
  padding: 13px 15px;
  color: #7d663a;
}

.confirmation .text-section {
  align-items: flex-start;
  text-align: left;
  background: #fbf7f1;
  border-radius: 13px;
  padding: 20px 24px;
}

/* ========================
   LEGAL PAGES / TEXT BLOCKS
============================*/
.legal {
  background: #fff;
  border-radius: var(--radius-section);
  box-shadow: var(--shadow-soft);
  padding: 38px 22px 35px 22px;
  margin: 32px 0;
}
.legal h1, .legal h2, .legal h3 {
  margin-bottom: 17px;
}
.legal ul {
  padding-left: 22px;
  margin-bottom: 16px;
  list-style: disc;
}
.legal ul li {
  margin-bottom: 6px;
}

/* ========================
   FOOTER
============================*/
footer {
  background: #FAFAFA;
  border-top: 2px solid #ebe7df;
  padding: 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
footer nav a {
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 1.01rem;
  padding: 6px 10px;
  border-radius: 7px;
  transition: background 0.17s, color 0.17s;
}
footer nav a:hover,footer nav a:focus {
  color: var(--color-secondary);
  background: #e7dac4;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img {
  height: 34px;
  width: auto;
}
.footer-brand span {
  font-size: .97em;
  color: #9c8968;
  font-family: var(--font-body);
}

@media (max-width: 680px) {
  footer .container {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding-left: 7px;
  }
  .footer-brand {
    order: 2;
  }
}
/* ===============================================================
   LISTS
================================================================*/
ul {
  list-style-type: disc;
  padding-left: 22px;
  margin-top: 13px;
  margin-bottom: 20px;
}
ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* ===============================
   RESPONSIVE DESIGN (Mobile-first)
===================================*/
@media (max-width: 980px) {
  .feature-grid, .service-list, .card-container, .testimonial-slider {
    flex-wrap: wrap;
  }
  .feature-card, .service-card, .card {
    min-width: 210px;
    max-width: 90vw;
    flex: 1 1 100%;
  }
}
@media (max-width: 768px) {
  header .container {
    padding: 10px 9px 10px 9px;
    gap: 7px;
  }
  .feature-grid, .testimonial-slider, .service-list, .card-container  {
    flex-direction: column;
    gap: 13px;
  }
  .feature-card, .service-card, .card {
    min-width: 0;
    max-width: 100%;
  }
  .section, .legal {
    padding: 20px 4vw;
    margin-bottom: 30px;
  }
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.19rem;
  }
  .cta .contact-info {
    padding: 11px 9px 8px 10px;
  }
}
/* For tighter mobile nav */
@media (max-width: 500px) {
  .mobile-nav a {
    font-size: 1.11rem;
    padding: 11px 0 10px 0;
  }
}

/* ===============================================================
   BUTTONS, INTERACTIONS, MICRO-ANIMATIONS
================================================================*/
.btn {
  position: relative;
  overflow: hidden;
  box-shadow: none;
  transition: box-shadow 0.18s, background 0.18s, color 0.18s, transform 0.13s;
}
.btn.primary:after {
  content: "";
  position: absolute;
  left: 51%;
  top: 51%;
  width: 0;
  height: 0;
  background: rgba(209,168,108,0.09);
  border-radius: 50%;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
}
.btn.primary:active:after {
  width: 180%;
  height: 600%;
}

/* Focus outlines for accessibility */
.btn:focus, .main-nav a:focus, .mobile-nav a:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
  z-index: 2;
}

/* ===============================================================
   COOKIE CONSENT BANNER & MODAL
================================================================*/
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #fffbed;
  color: #543d14;
  box-shadow: 0 -3px 24px #d1a86c22;
  border-top: 2px solid #decba6;
  z-index: 99999;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 32px 18px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: transform 0.39s cubic-bezier(.55,.06,.37,.93), opacity 0.24s;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner .cookie-text {
  max-width: 700px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn {
  font-family: var(--font-body);
  font-weight: 700;
  padding: 8px 22px;
  border-radius: 25px;
  border: 1.2px solid #ecdbaa;
  cursor: pointer;
  background: #fff;
  color: #ab893b;
  box-shadow: 0 1.5px 6px #d1a86c14;
  transition: background 0.18s, color 0.18s, border-color 0.13s, box-shadow 0.13s;
}
.cookie-btn.accept {
  background: var(--color-secondary);
  color: #fff;
  border-color: var(--color-secondary);
}
.cookie-btn.accept:hover {
  background: #edd194;
  color: var(--color-primary);
}
.cookie-btn.reject {
  background: #f5ecd6;
  color: #8a6b18;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  border-color: #d1a86c;
  background: #faecca;
  color: #543d14;
}
.cookie-btn.settings {
  background: #fff;
  color: #2D3644;
  border-color: #ecdbaa;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  border-color: #d1a86c;
  background: #f7e9c8;
}
@media (max-width: 670px) {
  .cookie-banner {
    flex-direction: column;
    padding: 18px 13px 13px 13px;
    gap: 11px;
    font-size: .95em;
  }
  .cookie-banner .cookie-actions {
    gap: 8px;
  }
}

/* ---- Cookie Modal ---- */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(45,54,68,.65);
  z-index: 100001;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s cubic-bezier(.23,1.08,.28,1), visibility 0.18s;
  visibility: hidden;
}
.cookie-modal-overlay.visible {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.cookie-modal {
  background: #fffbed;
  min-width: 340px;
  max-width: 95vw;
  min-height: 230px;
  border-radius: 13px 13px 0 0;
  box-shadow: 0 0px 38px #d1a86c1a;
  padding: 38px 34px 24px 34px;
  margin: 0 22px 12px 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 1.03rem;
}
.cookie-modal h3 {
  font-size: 1.14em;
  margin-bottom: 4px;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  gap: 17px;
  margin: 11px 0 10px 0;
  font-size: 1em;
}
.cookie-category-label {
  flex: 1 1 0;
  color: var(--color-primary);
  font-weight: 600;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}
.cookie-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #e1c389;
  border-radius: 22px;
  transition: background .17s;
}
.cookie-switch input:checked + .cookie-slider {
  background: var(--color-secondary);
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 16px; width: 16px;
  left: 3px; bottom: 3px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0.5px 2px #d1a86c55;
  transition: transform .15s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(17px);
}
.cookie-category-lock {
  font-size: 1.15em;
  color: #d1a86c;
  margin-left: 7px;
  vertical-align: middle;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 12px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 29px;
  background: none;
  border: none;
  color: #a0834d;
  font-size: 1.77em;
  cursor: pointer;
  transition: background 0.15s, color 0.12s;
  padding: 4px 10px;
  border-radius: 50%;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #e5dbbf;
  color: #baa464;
}
@media (max-width: 768px) {
  .cookie-modal {
    padding: 21px 8vw 12px 11vw;
    min-width: 0;
    margin: 0 0 5px 0;
  }
  .cookie-modal-close {
    right: 13px;
    top: 11px;
  }
}

/* ===============================================================
   ACCESSIBILITY & SYSTEM OVERRIDES
================================================================*/
[tabindex="0"]:focus {
  outline: 2px solid var(--color-secondary);
}

::selection {
  background: #dac6a9;
  color: #2d3644;
}

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

/* ===============================================================
   PRINT STYLES (for print-friendly legal pages)
================================================================*/
@media print {
  header, footer, .btn, .cookie-banner, .mobile-menu { display:none; }
  body, main, section, .container { background: #fff !important; color:#222 !important; }
  .section, .container, .legal { box-shadow: none !important; border: none !important; }
}
section {
  padding: 15px 0;
}