/* === RESET & BASE === */
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;
  font-family: 'Roboto', Arial, sans-serif;
  background: #FAFAF7;
  color: #222A34;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
os:focus { outline: 0; }
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: #28537A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #bfa356; /* premium gold */
  outline: none;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}

/* === COLOR VARIABLES (with fallbacks) === */
:root {
  --primary: #28537A;
  --secondary: #7BC58A;
  --accent: #F8F7EF;
  --premium-gold: #bfa356;
  --text-dark: #222A34;
  --text-light: #fff;
  --card-shadow: 0 4px 18px rgba(40,83,122,0.08);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  color: var(--primary, #28537A);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
}
p, li, label {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--text-dark, #222A34);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
strong {
  color: var(--primary, #28537A);
  font-weight: 700;
}
em {
  font-style: italic;
}

/* === LAYOUT & CONTAINER === */
.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1140px;
  padding: 0 24px;
}
.content-wrapper {
  max-width: 840px;
  margin: 0 auto;
}

/* === SECTIONS & SPACING === */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--accent, #F8F7EF);
  border-radius: 18px;
  box-shadow: var(--card-shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
  min-width: 270px;
  flex: 1 1 270px;
  border: 1px solid #ebe4d9;
  transition: box-shadow 0.25s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(40, 83, 122, 0.16);
  transform: translateY(-4px) scale(1.01);
  border-color: var(--premium-gold, #bfa356);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(40,83,122,0.07);
  margin-bottom: 20px;
  border: 1px solid #e9e0d2;
  max-width: 480px;
  position: relative;
}
.testimonial-card p {
  color: var(--text-dark, #222A34);
  font-size: 1.09rem;
}
.testimonial-card .client {
  color: var(--premium-gold, #bfa356);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.03em;
  font-size: 1.01rem;
  font-weight: 600;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === HEADER & NAVIGATION === */
header {
  background: #fff;
  box-shadow: 0 2px 9px rgba(40,83,122,0.08);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  min-height: 72px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.01rem;
  color: var(--primary, #28537A);
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--premium-gold, #bfa356);
  background: #f0ede3;
}
header .cta-btn {
  margin-left: 8px;
  background: var(--primary, #28537A);
  color: var(--text-light, #fff);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  padding: 10px 24px;
  border-radius: 22px;
  border: none;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(40,83,122,0.07);
  transition: background 0.22s, box-shadow 0.18s, color 0.18s;
  cursor: pointer;
  border: 2px solid var(--premium-gold, #bfa356);
}
header .cta-btn:hover, header .cta-btn:focus {
  background: var(--premium-gold, #bfa356);
  color: var(--primary, #28537A);
  box-shadow: 0 6px 18px rgba(40,83,122,0.11);
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--primary, #28537A);
  cursor: pointer;
  margin-left: auto;
  z-index: 51;
  padding: 4px 10px;
  transition: color 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: var(--premium-gold, #bfa356);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  z-index: 60;
  background: rgba(34, 42, 52, 0.96);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.62,0.02,0.36,1), opacity 0.18s;
  opacity: 0;
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 24px 8px 0;
  font-size: 2.5rem;
  background: none;
  border: none;
  color: var(--premium-gold, #bfa356);
  cursor: pointer;
  z-index: 61;
  transition: color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--secondary, #7BC58A);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 22px 36px;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(190,163,86,0.17);
  transition: color 0.17s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--premium-gold, #bfa356);
  background: none;
}

/* Hide main nav on mobile */
@media (max-width: 991px) {
  .main-nav, header .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 992px) {
  .mobile-menu,
  .mobile-menu.active {
    display: none !important;
  }
}

/* === BUTTONS === */
.cta-btn, .newsletter-form button, .cookie-banner button, .cookie-modal button {
  font-family: 'Montserrat', sans-serif;
  background: var(--primary, #28537A);
  color: var(--text-light, #fff);
  padding: 10px 28px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 7px rgba(40,83,122,0.07);
  cursor: pointer;
  margin: 12px 0;
  border: 2px solid var(--premium-gold, #bfa356);
  transition: background 0.2s, color 0.18s, border 0.22s;
  min-width: 150px;
  text-align: center;
}
.cta-btn:hover, .newsletter-form button:hover, .cookie-banner button:hover, .cookie-modal button:hover,
.cta-btn:focus, .newsletter-form button:focus, .cookie-banner button:focus, .cookie-modal button:focus {
  background: var(--premium-gold, #bfa356);
  color: var(--primary, #28537A);
  border-color: var(--primary, #28537A);
}

/* === FORMS === */
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}
.newsletter-form input[type="email"] {
  padding: 10px 16px;
  font-size: 1rem;
  border: 1.5px solid #d7c59e;
  border-radius: 22px;
  font-family: 'Roboto', Arial, sans-serif;
  width: 242px;
  outline: none;
  transition: border 0.16s;
  background: #fff;
}
.newsletter-form input[type="email"]:focus {
  border-color: var(--premium-gold, #bfa356);
}
.newsletter-form button {
  padding: 10px 32px;
  font-size: 1rem;
  background: var(--primary, #28537A);
  color: #fff;
  border: 2px solid var(--premium-gold, #bfa356);
  border-radius: 22px;
  font-family: 'Montserrat', sans-serif;
}

/* === SERVICE / GUIDES / WORKSHOP CARDS === */
.service-list, .guides-list, .workshop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.service-card, .guides-list > div, .workshop-list > div {
  background: var(--accent, #F8F7EF);
  border: 1.5px solid #e9e0d2;
  border-radius: 18px;
  box-shadow: 0 5px 22px rgba(40,83,122,0.06);
  flex: 1 1 260px;
  min-width: 260px;
  max-width: 360px;
  padding: 26px 22px 24px 22px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, border 0.19s, transform 0.19s;
}
.service-card:hover, .guides-list > div:hover, .workshop-list > div:hover {
  box-shadow: 0 10px 36px rgba(191,163,86,0.12);
  border-color: var(--premium-gold, #bfa356);
  transform: scale(1.015);
}
.price {
  display: inline-block;
  margin-top: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--premium-gold, #bfa356);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

/* === DETAILS/ACCORDION === */
details {
  border: 1px solid #e9e0d2;
  border-radius: 16px;
  padding: 14px 24px 14px 20px;
  background: #fff;
  margin-bottom: 18px;
  position: relative;
  transition: box-shadow 0.18s, border 0.16s;
}
details[open] {
  box-shadow: 0 6px 20px rgba(191,163,86,0.08);
  border-color: var(--premium-gold, #bfa356);
}
details summary {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.06rem;
  color: var(--primary, #28537A);
  cursor: pointer;
  font-weight: 600;
  line-height: 1.6;
  outline: none;
  transition: color 0.16s;
  margin-bottom: 8px;
}
details[open] summary {
  color: var(--premium-gold, #bfa356);
}
details div {
  margin-top: 10px;
}

/* === FOOTER === */
footer {
  background: #fff;
  border-top: 2px solid #ebe4d9;
  padding: 0 0 18px 0;
  margin-top: 30px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 44px;
  padding: 40px 0 0 0;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
}
.footer-content img {
  height: 54px;
}
.contact-info p {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #555;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-menu a {
  color: var(--primary, #28537A);
  font-size: 1.03rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 2px;
  transition: color 0.16s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--premium-gold, #bfa356);
}
.social-links {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent, #F8F7EF);
  transition: background 0.15s, box-shadow 0.15s;
  box-shadow: 0 2px 6px rgba(40,83,122,0.06);
}
.social-links a:hover, .social-links a:focus {
  background: var(--premium-gold, #bfa356);
  box-shadow: 0 6px 16px rgba(40,83,122,0.13);
}
.social-links img {
  width: 22px;
  height: 22px;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  background: #222A34;
  color: #fff;
  padding: 20px 16px;
  box-shadow: 0 -2px 12px rgba(40,83,122,0.13);
}
.cookie-banner p {
  color: #fff;
  margin: 0 10px 0 0;
  font-size: 1rem;
}
.cookie-banner button {
  background: var(--primary, #28537A);
  color: #fff;
  margin: 0 8px;
  border: 2px solid var(--premium-gold, #bfa356);
  border-radius: 19px;
  min-width: 130px;
  padding: 8px 22px;
  font-size: 0.99rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  transition: background 0.15s, color 0.15s, border 0.16s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--premium-gold, #bfa356);
  color: var(--primary, #28537A);
}

/* === COOKIE MODAL === */
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 200;
  background: rgba(34, 42, 52, 0.73);
  align-items: center;
  justify-content: center;
}
.cookie-modal-backdrop.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: var(--text-dark, #222A34);
  border-radius: 18px;
  box-shadow: 0 8px 48px rgba(40,83,122,0.14);
  padding: 32px 28px 24px 28px;
  width: 100%;
  max-width: 430px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.cookie-modal h3 {
  color: var(--primary, #28537A);
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 18px;
  font-size: 1.23rem;
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--premium-gold, #bfa356);
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal .cookie-close:hover, .cookie-modal .cookie-close:focus {
  color: var(--primary, #28537A);
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  margin-bottom: 14px;
}
.cookie-modal input[type=checkbox] {
  accent-color: var(--primary, #28537A);
}
.cookie-modal .cookie-category {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--primary, #28537A);
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal button {
  background: var(--primary, #28537A);
  color: #fff;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: var(--premium-gold, #bfa356);
  color: var(--primary, #28537A);
}

/* MODAL slide in */
.cookie-modal {
  animation: cookieModalIn 0.36s cubic-bezier(0.67,0.21,0.23,0.93);
}
@keyframes cookieModalIn {
  from { transform: translateY(80px) scale(0.97); opacity: 0; }
  to { transform: none; opacity: 1; }
}

/* === UTILITIES === */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.rounded { border-radius: 20px; }
.shadow {
  box-shadow: 0 8px 39px rgba(191,163,86,0.14);
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-top: 28px;
  }
}
@media (max-width: 868px) {
  .service-list, .guides-list, .workshop-list {
    flex-direction: column;
    gap: 18px;
  }
  .service-card, .guides-list > div, .workshop-list > div {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .container, .footer-content {
    padding: 0 12px;
  }
  .content-grid, .card-container{
    flex-direction: column;
    gap: 12px;
  }
  .section {
    padding: 32px 4px;
    margin-bottom: 36px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
    gap: 9px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.3rem;
  }
}
@media (max-width: 520px) {
  header .container {
    flex-direction: row;
    padding: 0 6px;
  }
  .cookie-modal {
    padding: 22px 6px 14px 6px;
  }
  .footer-content img {
    height: 38px;
  }
}

/* === SCROLLBAR Custom === */
::-webkit-scrollbar { width: 8px; background: var(--accent, #F8F7EF); }
::-webkit-scrollbar-thumb { background: #d7c59e; border-radius: 8px; }

/* === PREMIUM & LUXURY Gold Accents === */
h2, h3, h4 {
  position: relative;
  padding-left: 8px;
}
h2:before, h3:before, h4:before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 26px;
  background: var(--premium-gold, #bfa356);
  border-radius: 8px;
  margin-right: 10px;
  position: absolute;
  left: -8px;
  top: 4px;
}
@media (max-width: 768px) {
  h2:before, h3:before, h4:before { height: 18px; top: 2px; }
}

.cta-btn, .newsletter-form button, .cookie-banner button, .cookie-modal button {
  box-shadow: 0 3px 12px rgba(191,163,86,0.09);
}

/* === MICRO-INTERACTIONS === */
.card, .service-card, .guides-list > div, .workshop-list > div, .testimonial-card, details {
  transition: box-shadow 0.20s, border-color 0.18s, transform 0.17s;
}
details[open] summary:after {
  content: "▲";
  font-size: 0.9em;
  margin-left: 12px;
  color: var(--premium-gold,#bfa356);
  transition: transform 0.2s;
}
details summary:after {
  content: "▼";
  font-size: 0.9em;
  margin-left: 12px;
  color: #bfa356;
}

/* === Z-INDEX STRUCTURE === */
header { z-index: 40; }
.mobile-menu { z-index: 60; }
.cookie-banner { z-index: 70; }
.cookie-modal-backdrop, .cookie-modal { z-index: 200; }

/* === ACCESSIBILITY === */
:focus-visible {
  outline: 2px solid var(--secondary, #7BC58A);
  outline-offset: 1px;
}

/* === PAGE SPECIFIC ======================= */
/* About/Team list */
ul {
  margin-bottom: 1.1em;
}
ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}
/* Text section on contact page */
.text-section p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 8px;
}

/* === PRINT OPTIMISATION === */
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal-backdrop, .footer-content, .cta-btn, .newsletter-form {
    display: none !important;
  }
  section, .section, .content-wrapper, .container {
    padding: 0 !important;
    box-shadow: none !important;
    background: #fff !important;
  }
  body { background: #fff !important; }
}

/* === END === */
