/* =====================
   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, 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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #EDEAE6;
  color: #183241;
}
*, *::before, *::after {
  box-sizing: inherit;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul, ol {
  list-style: none;
}
button, [type="button"], [type="reset"], [type="submit"] {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

/* =====================
   LUXURY BRAND THEME ROOTS
   ===================== */
:root {
  --color-primary: #194D60;
  --color-secondary: #EDEAE6;
  --color-accent: #FFD271;
  --color-text-dark: #183241;
  --color-text-light: #fff;
  --color-card-bg: #fff;
  --color-card-bg-alt: #F7F6F3;
  --color-border: #D1C2A4;
  --color-shadow: rgba(25, 77, 96, 0.08);
  --font-display: 'Montserrat', 'Open Sans', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --radius-lg: 20px;
  --radius-sm: 10px;
  --shadow-lg: 0 8px 32px rgba(25, 77, 96, 0.10);
  --shadow-sm: 0 2px 8px rgba(25, 77, 96, 0.07);
  --transition: all 0.22s cubic-bezier(0.56,0,0.29,1.36); 
  --line-height: 1.5;
}

/***********************
LAYOUT CLASSES & CONTAINER
***********************/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

main {
  min-height: 70vh;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
}

/***************
HEADER & NAVIGATION
****************/
header {
  background: var(--color-secondary);
  box-shadow: var(--shadow-lg);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 80px;
}
header nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
header nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-primary);
  padding: 8px 0;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.18s;
  border-bottom: 2px solid transparent;
}
header nav a:hover, header nav a:focus {
  color: var(--color-accent);
  border-bottom: 2.5px solid var(--color-accent);
}
header .cta-btn {
  margin-left: 24px;
}

/* Hamburger Mobile Menu Button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--color-primary);
  margin-left: 16px;
  z-index: 202;
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  transition: background 0.20s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-accent);
  color: var(--color-text-dark);
}

/***************
MOBILE MENU OVERLAY
***************/
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #fff;
  box-shadow: var(--shadow-lg);
  z-index: 210;
  transform: translateX(100vw);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 36px;
  line-height: 1;
  color: var(--color-primary);
  margin: 30px 24px 0 0;
  padding: 0 0 16px 0;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 36px 0 0 36px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--color-primary);
  font-weight: 600;
  line-height: 1.2;
  padding: 10px 0;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  transition: background 0.22s, color 0.22s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: var(--color-secondary);
  padding-left: 8px;
}

@media (max-width: 1024px) {
  header nav, header .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/*********************
TYPOGRAPHY HIERARCHY
*********************/
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 48px;
  margin-bottom: 20px;
}
h2 {
  font-size: 32px;
  margin-bottom: 20px;
}
h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 18px;
}
p, ul, ol {
  font-size: 16px;
  color: var(--color-text-dark);
  line-height: var(--line-height);
  margin-bottom: 12px;
}
p.lead {
  font-size: 20px;
  line-height: 1.43;
  color: var(--color-primary);
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-weight: 500;
}
strong {
  font-weight: bold;
  color: var(--color-primary);
}

ul li, ol li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}
ul li::before {
  content: '\2022';
  color: var(--color-accent);
  font-size: 1.1em;
  position: absolute;
  left: 0;
  top: 2px;
}

/**********************
BUTTONS & CTAS
**********************/
.cta-btn, .cta-box a.cta-btn, .content-wrapper > a.cta-btn, .cta-box > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-accent);
  border-radius: var(--radius-lg);
  padding: 13px 38px;
  border: 2px solid var(--color-accent);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.04em;
  transition: var(--transition);
  margin: 20px 0 0 0;
}
.cta-btn:hover, .cta-btn:focus {
  color: var(--color-text-light);
  background: var(--color-primary);
  border-color: var(--color-accent);
  box-shadow: 0 8px 22px rgba(25,77,96,0.12);
  text-decoration: none;
}

/**********************
CONTENT BLOCKS & WRAPPERS
**********************/
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
  background: none;
}
.text-section {
  margin-bottom: 44px;
}

/**********************
FLEX LAYOUTS
**********************/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 24px;
  margin-bottom: 8px;
}
.feature-item {
  background: var(--color-card-bg-alt);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 260px;
  border: 1px solid var(--color-border);
  transition: box-shadow 0.18s, border 0.18s, background 0.22s;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 4px 30px rgba(25,77,96,0.12);
  border: 1.8px solid var(--color-accent);
  background: #fffbe9;
}
.feature-item img {
  width: 40px;
  height: 40px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}
.service-item {
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 30px 24px;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 340px;
  border: 1px solid var(--color-border);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.18s, border 0.18s, background 0.22s;
}
.service-item:hover, .service-item:focus-within {
  box-shadow: 0 8px 36px rgba(25, 77, 96, 0.13);
  border: 2px solid var(--color-accent);
  background: #fffbe9;
}

.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 24px;
}
.team-member {
  background: var(--color-card-bg-alt);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 24px 20px;
  flex: 1 1 224px;
  min-width: 200px;
  max-width: 300px;
  border: 1px solid var(--color-border);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
}

.workshop-list, .blog-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 24px;
}
.workshop-item, .blog-post {
  background: var(--color-card-bg-alt);
  border-radius: var(--radius-sm);
  padding: 22px 18px 20px 18px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  flex: 1 1 220px;
  max-width: 320px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.19s, border 0.19s, background 0.17s;
}
.blog-post {
  max-width: 280px;
}
.workshop-item:hover, .blog-post:hover {
  box-shadow: 0 6px 24px rgba(25,77,96,0.13);
  border: 2px solid var(--color-accent);
  background: #fffbe9;
}

.tag {
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 13px;
  border-radius: 20px;
  padding: 2px 14px;
  display: inline-block;
  font-weight: 600;
  margin-top: 3px;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.tag-list span {
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 600;
  border-radius: 12px;
  padding: 2px 10px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fffbe9;
  border-radius: var(--radius-sm);
  padding: 18px 18px 16px 18px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.19s, border 0.19s;
}
.faq-item h3 {
  font-size: 18px;
}
.faq-item p {
  margin-bottom: 0;
}

/*****************
TESTIMONIAL CARDS
*****************/
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 18px rgba(25,77,96,0.11);
  border: 1.5px solid var(--color-border);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  max-width: 700px;
  color: var(--color-text-dark);
  font-size: 16px;
  line-height: 1.6;
  transition: box-shadow 0.18s, border 0.18s, background 0.22s;
}
.testimonial-card p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-dark);
}
.testimonial-card span {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--color-primary);
  font-weight: 600;
  margin-left: 8px;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  background: #fffbe9;
  box-shadow: 0 8px 26px rgba(25,77,96,0.13);
  border: 2px solid var(--color-accent);
}

/*****************
CTA BOX
****************/ 
.cta-box {
  background: var(--color-primary);
  color: var(--color-text-light);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px rgba(25,77,96,0.14);
  padding: 36px 26px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.cta-box p {
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
}
.cta-box .cta-btn {
  background: var(--color-accent);
  color: var(--color-primary);
  box-shadow: 0 2px 8px rgba(25,77,96,0.10);
  border: none;
  margin: 0;
}
.cta-box .cta-btn:hover {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-accent);
}

/*****************
FOOTER
*****************/
footer {
  background: var(--color-secondary);
  border-top: 1.7px solid var(--color-border);
  color: var(--color-primary);
  font-family: var(--font-body);
  padding: 32px 0 24px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
footer nav {
  display: flex;
  gap: 24px;
  margin-bottom: 10px;
}
footer nav a {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--color-primary);
  opacity: 0.90;
  transition: color 0.15s, text-decoration 0.15s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--color-accent);
  text-decoration: underline;
}
footer p {
  font-size: 15px;
  color: var(--color-text-dark);
  opacity: 0.85;
}
footer {
  text-align: center;
}

/*****************
MISCELLANEOUS
*****************/
.next-steps {
  margin-top: 20px;
  background: var(--color-card-bg-alt);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.next-steps h2 {
  font-size: 22px;
  margin-bottom: 10px;
}
.next-steps a.cta-btn {
  margin-top: 20px;
}

/*********************
RESPONSIVE FLEX CONTAINERS
*********************/
.card-container, .card-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 24px 20px;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 260px;
  border: 1px solid var(--color-border);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/*********************
MOBILE STYLES
*********************/
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  header .container {
    gap: 12px;
    height: 66px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 18px;
  }
  .feature-grid, .service-list, .workshop-list, .team-list, .blog-highlights, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 16px;
    max-width: 98vw;
  }
  .cta-box {
    padding: 20px 12px;
    gap: 12px;
  }
  .card {
    padding: 16px 10px;
    min-width: unset;
    max-width: unset;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/*********************
ACCESSIBILITY, CONTRAST, DETAILS
*********************/
.testimonial-card {
  background: #fff;
  color: #202a36;
}
.testimonial-card p {
  color: #202a36;
  font-size: 16px;
}
.testimonial-card span {
  color: var(--color-primary);
}

/* Card borders, hover focus states for accessibility */
.card:focus-within, .team-member:focus-within, .service-item:focus-within, .feature-item:focus-within {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/**************************
COOKIE BANNER & MODAL
***************************/
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 24px;
  z-index: 560;
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 28px rgba(25,77,96,0.21);
  border: 1.5px solid var(--color-border);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  padding: 24px 38px;
  max-width: 700px;
  margin: 0 auto;
  transition: var(--transition);
}
.cookie-banner-hide {
  opacity: 0;
  transform: translateY(70px);
  pointer-events: none;
  transition: var(--transition);
}
.cookie-banner-message {
  flex: 1 1 60%;
  font-size: 15px;
  color: var(--color-primary);
}
.cookie-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-btn {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  border-radius: 19px;
  padding: 10px 24px;
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  background: var(--color-accent);
  transition: background 0.16s, color 0.16s, border 0.18s;
  box-shadow: var(--shadow-sm);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-primary);
  color: #fff;
  border: 1.6px solid var(--color-primary);
}
.cookie-btn-secondary {
  background: #fff;
  color: var(--color-primary);
  border: 1.2px solid var(--color-border);
}
.cookie-btn-secondary:hover {
  background: var(--color-secondary);
  border: 1.5px solid var(--color-accent);
}

/* Cookie modal overlay */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 850;
  background: rgba(25,77,96,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.19s;
}
.cookie-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 34px rgba(25,77,96,0.14);
  border: 1.5px solid var(--color-border);
  width: 95vw;
  max-width: 400px;
  padding: 34px 30px 24px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateY(60px);
  opacity: 0;
  transition: var(--transition);
  position: relative;
}
.cookie-modal.active {
  transform: translateY(0);
  opacity: 1;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 24px;
  background: none;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--color-accent);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category-label {
  font-weight: 600;
  color: var(--color-primary);
  min-width: 120px;
  font-size: 15px;
}
.cookie-toggle {
  margin-left: auto;
  accent-color: var(--color-accent);
  width: 22px;
  height: 22px;
}
.cookie-category-desc {
  font-size: 13px;
  color: var(--color-text-dark);
  margin-top: 4px;
}
/* Essential always enabled */
.cookie-category.essential .cookie-toggle {
  pointer-events: none;
  opacity: 0.7;
}

.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 18px;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    max-width: 96vw;
    left: 2vw;
    right: 2vw;
    padding: 18px 14px;
    gap: 18px;
  }
  .cookie-actions {
    gap: 8px;
  }
  .cookie-modal {
    padding: 22px 8px 16px 12px;
    max-width: 98vw;
  }
  .cookie-modal-close {
    top: 6px;
    right: 8px;
  }
}

/* Hide cookie banner if class cookie-banner-hide is active */
.cookie-banner.cookie-banner-hide {
  display: none;
}

/*********************
ANIMATIONS & TRANSITIONS
*********************/
.cta-btn, .cookie-btn, .service-item, .feature-item, .testimonial-card, .team-member, .blog-post, .faq-item {
  transition: box-shadow 0.19s, border 0.18s, background 0.18s, color 0.17s;
}

/*********************
PRINT FRIENDLY
*********************/
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal, .cta-btn, .cta-box, .next-steps {
    display: none !important;
  }
  section, .container {
    background: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  body {
    background: #fff !important;
    color: #000 !important;
  }
}
section {
  padding: 10px 0;
}
.service-item.fade-in-section.in-view h3 {
    font-size: 17px;
}
/*********************
END CSS
*********************/