/* 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  background-color: #F7F3EE;
  color: #2B2922;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  font-size: 16px;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #134F5C;
  text-decoration: none;
  transition: color 0.18s ease;
  cursor: pointer;
}
a:hover, a:focus {
  color: #E8C07C;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.4em;
}
strong {
  font-weight: 700;
  color: #134F5C;
}

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #134F5C;
  font-weight: 900;
  letter-spacing: 0.01em;
}
h1 {font-size: 2.5rem; margin-bottom: 18px;}
h2 {font-size: 2rem; margin-bottom: 16px;}
h3 {font-size: 1.375rem; margin-bottom: 12px;}
h4 {font-size: 1.15rem; margin-bottom: 10px;}

/* VINTAGE RETRO COLOR PALETTE & PATTERNS */
:root {
  --brand-primary: #134F5C;
  --brand-secondary: #E8C07C;
  --brand-accent: #F7F3EE;
  --brand-dark-text: #2B2922;
  --brand-light-bg: #FFFDF6;
  --brand-contrast: #8A6642;
  --brand-muted: #E5DED1;
}

body {
  background: var(--brand-accent) url("data:image/svg+xml;utf8,<svg width='40' height='40' xmlns='http://www.w3.org/2000/svg'><rect fill='%23e8c07c' fill-opacity='0.13' x='20' y='20' width='20' height='20'/></svg>");
  background-size: 80px 80px;
}

.container {
  width: 100%;
  max-width: 1050px;
  padding: 0 20px;
  margin: 0 auto;
}

header {
  background: linear-gradient(0deg, #E5DED1 0%, #F7F3EE 100%);
  border-bottom: 4px solid var(--brand-secondary);
  padding: 0 0 4px 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 8px 20px;
}
.logo img {
  height: 54px;
  width: auto;
  display: block;
  filter: sepia(16%) contrast(95%);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: var(--brand-primary);
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 6px 4px;
  border-radius: 4px;
  transition: background 0.17s, color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  background-color: var(--brand-secondary);
  color: var(--brand-dark-text);
}

.cta-button {
  font-family: 'Playfair Display', serif;
  background: var(--brand-secondary);
  color: var(--brand-primary);
  padding: 12px 32px;
  border-radius: 32px;
  font-size: 1.13rem;
  border: none;
  font-weight: 900;
  box-shadow: 0 3px 10px rgba(51,34,19,0.12);
  cursor: pointer;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-left: 18px;
  transition: background 0.16s, color 0.16s, box-shadow 0.18s;
  outline: none;
  border: 2px solid var(--brand-secondary);
}
.cta-button:hover, .cta-button:focus {
  background: var(--brand-primary);
  color: var(--brand-secondary);
  border-color: var(--brand-primary);
  box-shadow: 0 5px 17px rgba(51,34,19,0.15);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--brand-primary);
  font-size: 2rem;
  cursor: pointer;
  margin-left: 16px;
  transition: color 0.14s;
  z-index: 2001;
}
.mobile-menu-toggle:focus {
  color: var(--brand-secondary);
  outline: 2px solid var(--brand-secondary);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: var(--brand-primary);
  color: var(--brand-secondary);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.77,0,.175,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--brand-secondary);
  font-size: 2.3rem;
  position: relative;
  margin-left: 20px;
  margin-bottom: 32px;
  cursor: pointer;
  z-index: 2011;
  transition: color 0.17s;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  padding-left: 30px;
}
.mobile-nav a {
  color: var(--brand-secondary);
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.13s, border-bottom 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #EDD4A4;
  border-bottom: 2px solid #EDD4A4;
  background: none;
}

/* Responsive Header Navigation */
@media (max-width: 990px) {
  .main-nav, .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 991px) {
  .mobile-menu {
    display: none !important;
  }
}

/* SECTION AND SPACING PATTERNS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(255,253,246,0.98);
  border-radius: 20px;
  box-shadow: 0 3px 16px 0 rgba(51,34,19,0.06);
  position: relative;
}
section:last-of-type { margin-bottom: 0; }

.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; background: white; border-radius: 18px; box-shadow: 0 3px 10px 0 rgba(51,34,19,0.10); padding: 24px; }
.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: #FFFDF6;
  border-radius: 16px;
  font-size: 1.13rem;
  border: 2px dashed var(--brand-secondary);
  color: var(--brand-dark-text);
  box-shadow: 0 2px 10px 0 rgba(140,124,85,0.08);
  margin-bottom: 20px;
  max-width: 390px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.testimonial-card:hover, .testimonial-card:focus {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 4px 18px rgba(245,199,110,0.15), 0 1.5px 6px rgba(51,34,19,0.10);
  border-color: #b28a57;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFFDF6;
  padding: 24px 18px;
  margin: 0;
  border-radius: 17px;
  box-shadow: 0 2px 10px 0 rgba(226,190,104,0.08);
  min-width: 230px;
  max-width: 260px;
  border: 2.4px solid #EFDFBC;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.feature-item:hover, .feature-item:focus {
  border-color: var(--brand-secondary);
  box-shadow: 0 7px 22px 0 rgba(226,190,104,0.15);
}

/* RETRO PATTERNS & ELEMENTS */
section:before {
  content: "";
  display: block;
  position: absolute;
  top: -36px; left: 20px;
  width: 88px; height: 32px;
  background: repeating-linear-gradient(135deg, #E8C07C, #E8C07C 8px, transparent 8px, transparent 16px);
  opacity: 0.13;
  border-radius: 16px;
  pointer-events: none;
  z-index: 0;
}
section:nth-of-type(even):before {
  left: unset;
  right: 20px;
}

/* HERO SECTIONS */
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,253,246,0.85);
  padding: 36px 28px;
  border-radius: 20px;
  margin-bottom: 10px;
  box-shadow: 0 3px 14px rgba(227,195,115,0.06);
  position: relative;
}

.subheadline {
  font-size: 1.18rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: var(--brand-contrast);
  margin-bottom: 12px;
  font-weight: 600;
}

/* TESTIMONIAL & SLIDER */
.testimonial-slider,
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.rating-summary {
  margin-top: 18px;
  padding: 14px 18px;
  background: #E8C07C;
  color: #134F5C;
  font-size: 1.08rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  border-radius: 10px;
  font-weight: 700;
  display: inline-block;
  box-shadow: 0 1px 7px rgba(51,34,19,0.04);
}

/* LIST & TEXT (about, steps, content) */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1.06rem;
  color: #24362b;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 500;
}
.text-section ul, .text-section ol {
  margin-top: 5px;
}
.text-section li {
  margin-bottom: 8px;
  padding-left: 0.31em;
  position: relative;
}
.text-section ul li:before {
  content: "◆ ";
  color: #E8C07C;
  font-size: 0.9em;
  margin-right: 3px;
  vertical-align: middle;
}
.text-section ol {
  counter-reset: retro-count;
}
.text-section ol li {
  counter-increment: retro-count;
}
.text-section ol li:before {
  content: counter(retro-count) ". ";
  color: #E8C07C;
  font-weight: 700;
  margin-right: 2px;
}

/* Service/offer/price tables/lists */
.service-list, .service-overview, .workshop-list, .tour-listings, .event-type-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  margin-bottom: 18px;
}
.service-list span, .service-overview span, .workshop-list span, .tour-listings span {
  color: #8A6642;
  margin-left: 7px;
  font-weight: 600;
  font-size: 1.01em;
}
.service-list strong, .service-overview strong, .workshop-list strong, .tour-listings strong {
  color: #134F5C;
  font-family: 'Playfair Display', serif;
  margin-right: 2px;
}

.service-highlights, .highlighted-destinations, .chef-profiles, .tour-highlights, .customization-options, .customer-support-highlights {
  background: #F7F3EE;
  border-left: 7px solid #E8C07C;
  border-radius: 12px;
  padding: 13px 20px;
  margin: 19px 0 0 0;
  box-shadow: 0 1px 5px 0 rgba(255,188,84,0.06);
}
.service-highlights ul,
.highlighted-destinations ul,
.chef-profiles ul,
.tour-highlights ul,
.customization-options ul,
.customer-support-highlights ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}
.service-highlights li, .highlighted-destinations li, .chef-profiles li, .tour-highlights li, .customization-options li, .customer-support-highlights li {
  margin-bottom: 7px;
  position: relative;
  padding-left: 18px;
}
.service-highlights li:before, .highlighted-destinations li:before, .chef-profiles li:before, .tour-highlights li:before, .customization-options li:before, .customer-support-highlights li:before {
  content: '\25AA ';
  position: absolute;
  left: 0;
  top: 0;
  color: #E8C07C;
  font-size: 1em;
}

/* CONTACT + MAP */
.contact-details {
  margin-bottom: 18px;
  font-size: 1.04rem;
  background: rgba(232,192,124,0.09);
  padding: 12px 20px;
  border-radius: 10px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #2B2922;
}
.contact-details a { color: #134F5C; text-decoration: underline; }
.cta-section {
  margin-top: 14px;
}
.map-location {
  font-size: 0.98rem;
  background: #E8C07C;
  color: #134F5C;
  border-radius: 7px;
  padding: 8px 14px;
  margin-top: 10px;
  display: inline-block;
  font-style: italic;
}

/* FOOTER */
footer {
  background: #134F5C url("data:image/svg+xml;utf8,<svg width='40' height='40' xmlns='http://www.w3.org/2000/svg'><rect fill='%23e8c07c' fill-opacity='0.13' x='20' y='20' width='20' height='20'/></svg>");
  color: #E8C07C;
  padding: 44px 0 18px 0;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #E8C07C;
  opacity: 0.83;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.02rem;
  transition: color 0.14s, opacity 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F7F3EE;
  opacity: 1;
}
.footer-contact {
  font-size: 0.97rem;
  color: #f7f3ee;
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-end;
  text-align: right;
}
.footer-contact a {
  color: var(--brand-secondary);
  text-decoration: underline;
  font-weight: 600;
}

/* RETRO BUTTON VARIANTS */
button, .button {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 18px;
  border: 2.1px solid var(--brand-secondary);
  background: var(--brand-secondary);
  color: var(--brand-primary);
  padding: 11px 28px;
  cursor: pointer;
  margin-right: 8px;
  margin-bottom: 7px;
  transition: background 0.14s, color 0.14s, box-shadow 0.17s;
  box-shadow: 0 2px 9px rgba(224, 196, 123,0.07);
  outline: none;
}
button:hover, button:focus, .button:hover, .button:focus {
  background: var(--brand-primary);
  color: var(--brand-secondary);
  border-color: var(--brand-primary);
  box-shadow: 0 6px 22px 0 rgba(232,192,124,0.08);
}

/* TRANSITION ON CARDS AND BUTTONS */
.card, .feature-item, .testimonial-card, .cta-button, .button {
  transition: box-shadow 0.18s, border-color 0.15s, background 0.19s, color 0.17s;
}

/* Patterns */
.feature-item img, .text-image-section img {
  width: 44px;
  height: 44px;
  margin-bottom: 9px;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 6px;
  box-shadow: 0 1px 3px rgba(51,34,19,0.07);
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 990px) {
  .footer-menu { flex-direction: column; gap: 18px; align-items: flex-start; }
  .footer-contact { align-items: flex-start; text-align: left; }
  section { padding: 28px 8px; }
  .container { padding: 0 10px; }
  .feature-item { min-width: 170px; max-width: 100%; }
}
@media (max-width: 768px) {
  .container { padding: 0 2.5vw; }
  .main-nav, .cta-button { display: none !important; }
  .mobile-menu-toggle { display: block !important; }
  .content-grid, .feature-grid, .testimonial-slider, .testimonial-list, .card-container {
    flex-direction: column !important;
    gap: 18px !important;
    align-items: stretch !important;
  }
  .section { padding: 30px 5px; }
  .content-wrapper, .text-section, .service-highlights, .contact-details, .feature-item { padding-left: 8px; padding-right: 8px; }
  .text-image-section { flex-direction: column !important; align-items: flex-start !important; gap: 16px !important; }
  .testimonial-card { max-width: 100vw; }
}
@media (max-width: 520px) {
  .logo img { height: 36px; }
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.09rem; }
  .cta-button, .button { font-size: 0.88rem; padding: 9px 18px; }
  .testimonial-card, .feature-item, .card { padding: 10px !important; font-size: 1em; }
  section { margin-bottom: 32px; padding-top: 18px; padding-bottom: 18px; }
}

/* FLEXBOX CLASSES (MANDATORY PATTERNS) */
.feature-grid, .service-overview, .workshop-list, .tour-listings, .event-type-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-bottom: 14px;
}

/* Ensures no content overlapping and all minimum spacings */
.feature-item, .card, .testimonial-card {
  margin-right: 0;
  margin-bottom: 20px;
}

/* Mobile menu slide-in fix for iOS landscape */
@media (max-width: 420px) {
  .mobile-menu {
    padding-top: 10px;
  }
  .mobile-nav {
    padding-left: 13px;
  }
}

/* MICRO INTERACTIONS & HOVER EFFECTS */
.cta-button, .button, .main-nav a, .mobile-nav a {
  position: relative;
  overflow: hidden;
}
.cta-button:after, .button:after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 0; height: 0;
  background: rgba(232,192,124,0.20);
  border-radius: 100%;
  transform: translate(-50%, -50%);
  transition: width 0.40s cubic-bezier(.25,1,.34,.86), height 0.36s cubic-bezier(.25,1,.34,.86);
  z-index: 0;
}
.cta-button:active:after, .button:active:after {
  width: 120%; height: 160%;
  transition: 0s;
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3000;
  background: #FFFDF6;
  border-top: 4px solid #E8C07C;
  box-shadow: 0 -2px 14px 0 rgba(34,20,0,0.10);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 44px 22px 18px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
  color: #24362b;
  transition: transform 0.48s cubic-bezier(.86,.11,.7,1.62), opacity 0.32s;
}
.cookie-banner.hide {
  transform: translateY(150%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-banner .button,
.cookie-banner .banner-btn {
  min-width:104px;
  padding: 7px 14px;
  font-size: 1rem;
  border-radius: 10px;
}
.cookie-banner .button.cookie-settings {
  background: var(--brand-primary);
  color: var(--brand-secondary);
  border-color: var(--brand-primary);
}
.cookie-banner .button.cookie-settings:hover{
  background: #09526b;
  color: #FFEAC4;
}

@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 8px !important;
    font-size: 0.93rem;
  }
  .cookie-banner-buttons {width: 100%;gap: 8px;}
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  left: 0; right: 0;
  top: 0; bottom: 0;
  z-index: 4000;
  background: rgba(37,34,18,0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.27s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #FFFDF6;
  border-radius: 18px;
  box-shadow: 0 8px 40px 0 rgba(34,31,5,0.18);
  max-width: 388px;
  width: 95vw;
  padding: 34px 19px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #24362b;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal-close {
  position: absolute;
  top: 10px; right: 13px;
  background: none;
  border: none;
  color: #134F5C;
  font-size: 2.3rem;
  cursor: pointer;
  z-index: 2;
}
.cookie-preference-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 1.04rem;
}
.cookie-category input[type=checkbox] {
  accent-color: #E8C07C;
  width: 18px;
  height: 18px;
  margin: 0;
}
.cookie-category label {
  font-size: 1.02rem;
  font-weight: 600;
}
.cookie-category.essential label {
  color: #9B7502;
  letter-spacing: 0.01em;
}
.cookie-category.essential input[type=checkbox] {
  opacity: 0.41;
}

.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal .button {
  border-radius: 12px;
  min-width: 85px;
}

/* ANIMATIONS */
@keyframes slideinMenu {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}
@keyframes slideoutMenu {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
@keyframes popupIn {
  from { opacity: 0; transform: scale(0.82); }
  to { opacity: 1; transform: scale(1);
  }
}
@keyframes popupOut {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(0.95); }
}
.mobile-menu.open {animation: slideinMenu 0.34s cubic-bezier(.77,0,.175,1);}
.mobile-menu:not(.open) {animation: slideoutMenu 0.33s;}
.cookie-modal:not(.hide) {animation: popupIn 0.34s cubic-bezier(.18,.6,.34,1.25);}
.cookie-modal.hide {animation: popupOut 0.2s;}

/* FORM FIELDS & MISC (future-proof) */
input, textarea, select {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 10px 13px;
  border: 2px solid #E8C07C;
  border-radius: 9px;
  margin-bottom: 13px;
  outline: none;
  transition: border 0.17s, box-shadow 0.17s;
}
input:focus, textarea:focus, select:focus {
  border-color: #134F5C;
  box-shadow: 0 2px 9px rgba(18,79,92,0.09);
}
label {
  font-size: 1.01rem;
  font-weight: 600;
  color: #134F5C;
  margin-bottom: 2px;
}

::-webkit-input-placeholder{color:#8A6642;opacity:1;}
::-moz-placeholder{color:#8A6642;opacity:1;}
:-ms-input-placeholder{color:#8A6642;opacity:1;}
::-ms-input-placeholder{color:#8A6642;opacity:1;}
::placeholder{color:#8A6642;opacity:1;}


/* RETRO BADGE/SEAL (for summary, highlights, etc.) */
.retro-badge {
  display: inline-block;
  background: linear-gradient(90deg,#E8C07C 70%, #EDD4A4 100%);
  color: #134F5C;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size:1.02rem;
  padding: 5px 18px;
  border-radius: 28px;
  box-shadow: 0 1px 4px 0 rgba(227,195,115,0.11);
  letter-spacing: 0.13em;
  margin-bottom: 9px;
}

/* Hide no-js, hide cookie-modal initially */
.no-js .cookie-banner, .cookie-modal.hide {display: none;}

/* Accessibility: focus ring for keyboard navigation */
:focus-visible {
  outline: 2.5px solid #E8C07C;
  outline-offset: 1.5px;
}

/* Prevent content overlapping everywhere */
section *, .card *, .testimonial-card *, .feature-item * {
  z-index: 2 !important;
}

/* END OF STYLE.CSS */
