/* 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 {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.45;
  background: #101316;
  color: #ECECEC;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #85A29B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #ECECEC;
  text-decoration: underline;
}
ul, ol {
  margin-left: 24px;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border-radius: 4px;
  outline: none;
  border: none;
  background: none;
}
button:focus, a:focus {
  outline: 2px solid #85A29B;
  outline-offset: 2px;
}

/* BRAND FONTS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', "Segoe UI", Arial, sans-serif;
  color: #ECECEC;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

@media (max-width: 640px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }
}

p, li, .footer-copy {
  color: #D8DBDF;
  font-size: 1rem;
  margin-bottom: 12px;
  line-height: 1.6;
}
strong, b {
  font-weight: bold;
  color: #ECECEC;
}

/* STRUCTURE & CONTAINERS */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
main {
  margin-top: 0;
  margin-bottom: 0;
}

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

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #1C242A;
  border-bottom: 1.5px solid #24323B;
  box-shadow: 0 4px 12px rgba(21,52,72,0.13);
  position: sticky;
  top: 0; left: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}
header img {
  height: 42px;
  margin-right: 16px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  margin-left: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #ECECEC;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #85A29B;
}
.cta.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  background: #153448;
  color: #ECECEC;
  border-radius: 34px;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(21,52,72,0.16);
  border: 1.5px solid #85A29B;
  margin-left: 24px;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.cta.primary:hover, .cta.primary:focus {
  background: #85A29B;
  color: #153448;
  border-color: #ECECEC;
  box-shadow: 0 4px 12px rgba(133,162,155,0.20);
}

/* Hamburger (Mobile) Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #ECECEC;
  font-size: 2.2rem;
  border: none;
  margin-left: 24px;
  cursor: pointer;
  z-index: 1101;
  transition: color 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: #85A29B;
}

@media (max-width: 992px) {
  .main-nav, .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Mobile Menu Structure */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #1C242A;
  box-shadow: 0 0 36px rgba(21,52,72,0.23);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.74,.03,.57,1.11);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 32px 4px 0;
  font-size: 2rem;
  background: none;
  color: #ECECEC;
  border: none;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #85A29B;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  padding: 40px 36px 0 36px;
}
.mobile-nav a {
  color: #ECECEC;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: color 0.22s;
  padding: 8px 0;
  min-width: 220px;
  border-radius: 3px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #85A29B;
}

/* HERO */
.hero {
  background: #153448;
  border-bottom: 2.5px solid #1d2227;
  padding: 56px 0 36px 0;
  margin-bottom: 0;
}
.hero h1, .hero h2, .hero p {
  color: #ECECEC;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 660px;
  gap: 22px;
}
@media (max-width: 768px) {
  .hero {
    padding: 28px 0 16px 0;
  }
  .hero .content-wrapper {
    gap: 16px;
    max-width: 99vw;
  }
}

/* --- FLEXBOX MANDATORY CLASSES --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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: #ECECEC;
  color: #153448;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(21,52,72,0.06);
  margin-bottom: 24px;
  min-width: 210px;
}
.testimonial-card p, .testimonial-card strong {
  color: #153448;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #14191D;
  border-radius: 10px;
  padding: 20px 18px;
  min-width: 150px;
}

@media (max-width: 900px) {
  .card-container,
  .content-grid,
  .feature-grid, .collection-cards, .collections, .guides {
    flex-direction: column;
    gap: 18px;
  }
}

/* --- SECTION/GRID ELEMENTS ON SPECIFIC PAGES --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature {
  background: #1C242A;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(21,52,72,0.09);
  min-width: 220px;
  padding: 24px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1 1 220px;
  border-left: 5px solid #85A29B;
}
.feature h3 {
  color: #ECECEC;
  font-size: 1.12rem;
  margin-bottom: 7px;
}
.feature img {
  height: 38px;
  margin-bottom: 12px;
}

.collection-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.collection-card {
  background: #202A31;
  border: 1.5px solid #23292D;
  border-radius: 10px;
  padding: 28px 22px 20px 22px;
  box-shadow: 0 4px 32px rgba(21,52,72,0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 235px;
  flex: 1 1 235px;
  position: relative;
  transition: box-shadow 0.22s, transform 0.2s;
}
.collection-card a {
  margin-top: 7px;
  color: #85A29B;
  font-weight: 600;
  transition: color 0.14s;
}
.collection-card a:hover, .collection-card a:focus {
  color: #ECECEC;
  text-decoration: underline;
}
.collection-card:hover {
  box-shadow: 0 8px 38px 0 rgba(133,162,155,0.09);
  transform: translateY(-6px) scale(1.03);
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.category {
  background: #202A31;
  border-radius: 8px;
  box-shadow: 0 2px 18px rgba(21,52,72,0.07);
  padding: 28px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 210px;
  flex: 1 1 210px;
  border-left: 4px solid #85A29B;
  transition: box-shadow 0.18s, transform 0.19s;
}
.category:hover {
  box-shadow: 0 8px 32px 0 rgba(133,162,155,0.08);
  transform: translateY(-5px) scale(1.025);
}
.category a {
  color: #85A29B;
  font-weight: 600;
}
.category a:hover {
  text-decoration: underline;
}

.collections, .guides {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.collection-highlight, .guide {
  background: #181F24;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(21,52,72,0.05);
  padding: 20px 18px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.18s, transform 0.19s;
}
.collection-highlight:hover, .guide:hover {
  box-shadow: 0 8px 28px 0 rgba(133,162,155,0.08);
  transform: translateY(-4px) scale(1.012);
}

.team-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 28px;
}
.team-member {
  background: #153448;
  border-radius: 10px;
  color: #ECECEC;
  padding: 20px 16px;
  flex: 1 1 200px;
  min-width: 180px;
  box-shadow: 0 2px 14px rgba(21,52,72,0.1);
  margin-bottom: 0;
}

@media (max-width: 600px)  {
  .feature-grid, .collection-cards, .category-grid,
  .collections, .guides, .team-profiles {flex-direction: column;gap: 14px;}
  .feature, .collection-card, .category, .collection-highlight,
  .guide, .team-member {min-width: 0;}
}

/* TESTIMONIALS (CRITICAL CONTRAST) */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.testimonial-card {
  flex: 1 1 220px;
  max-width: 350px;
}
.ratings {
  color: #85A29B;
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* FOOTER */
footer {
  background: #13181D;
  border-top: 1.5px solid #25303A;
  color: #ECECEC;
  padding: 44px 0 12px 0;
  font-size: 1rem;
  margin-top: 80px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #85A29B;
  font-weight: 600;
  font-size: 1.04rem;
}
.footer-nav a:hover {
  color: #ECECEC;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #85A29B;
  font-size: 1rem;
}
.footer-contact img {
  height: 32px;
  margin-bottom: 2px;
}
.footer-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}
.footer-social a img {
  height: 28px;
  filter: grayscale(85%);
  transition: filter 0.19s;
}
.footer-social a:hover img {
  filter: grayscale(20%) brightness(1.08);
}
.footer-copy {
  font-size: 0.95rem;
  color: #535C69;
  margin-top: 10px;
}
@media (max-width: 900px) {
  footer .container {
    gap: 18px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }
}

/* Additional Styles for Lists/Details */
.text-section ul, .highlight-statistics ul, .seasonal-collections ul,
.values ul, .trend-articles ul, .address ul, .usps {
  list-style: disc inside;
  margin-bottom: 20px;
  color: #D8DBDF;
}
.text-section li, .highlight-statistics li, .seasonal-collections li,
.values li, .trend-articles li, .address li, .usps li {
  margin-bottom: 7px;
  font-size: 1rem;
}

/* Quick Links */
.quick-links, .category-links {
  font-weight: 600;
  color: #85A29B;
  margin-top: 10px;
  margin-bottom: 0px;
  font-size: 1.05rem;
}
.quick-links a, .category-links a {
  color: #85A29B;
  font-weight: 600;
  transition: color 0.14s;
}
.quick-links a:hover, .category-links a:hover {
  color: #ECECEC;
  text-decoration: underline;
}

/* Address blocks */
.address, .opening-hours {
  background: #18222B;
  border-radius: 7px;
  padding: 18px 16px 12px 16px;
  margin-bottom: 16px;
}
.address h3, .opening-hours h3 {
  color: #85A29B;
  margin-bottom: 10px;
}

/******* CTA Sections *******/
section.cta {
  background: #85A29B;
  padding: 48px 0;
  text-align: center;
  margin-bottom: 0;
}
section.cta h2 {
  color: #153448;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 22px;
}
section.cta .cta.primary {
  background: #153448;
  color: #ECECEC;
  border: 1.5px solid #ECECEC;
}
section.cta .cta.primary:hover {
  background: #ECECEC;
  color: #153448;
  border: 1.5px solid #153448;
}

/******* THANK YOU PAGE STYLES *******/
.thank-you-message {
  margin-bottom: 24px;
  color: #D8DBDF;
}

/******* RESPONSIVE SPACING ******/
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  header .container {
    flex-direction: row;
    gap: 8px;
    min-height: 54px;
  }
  .main-nav {
    gap: 12px;
    margin-left: 8px;
  }
  .content-wrapper {
    gap: 14px;
  }
}
@media (max-width: 540px) {
  .feature, .collection-card, .category, .collection-highlight,
  .guide, .team-member, .testimonial-card {
    padding: 14px 8px;
    min-width: 0;
    font-size: 0.95rem;
  }
  .content-wrapper {gap: 7px;}
}

/**** BUTTONS, EFFECTS, MICRO-INTERACTIONS ****/
button, .cta, .collection-card a, .category a {
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.22s, transform 0.16s;
}

/*********** COOKIE CONSENT BANNER ***********/
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #23292D;
  color: #ECECEC;
  box-shadow: 0 -2px 22px rgba(21,52,72,0.12);
  border-top: 2px solid #85A29B;
  z-index: 1111;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 22px 12px;
  gap: 28px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  animation: banner-fade-in 0.44s;
}
@keyframes banner-fade-in {from{opacity: 0;transform:translateY(60px);}to{opacity:1;transform:none;}}
.cookie-consent-banner .cookie-message {
  flex: 1;
  max-width: 560px;
  margin-right: 20px;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-consent-banner button {
  padding: 8px 24px;
  border-radius: 19px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: 1.5px solid #85A29B;
  background: #153448;
  color: #ECECEC;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border 0.12s;
  margin-left: 0;
}
.cookie-consent-banner button.accept-all {
  background: #85A29B;
  color: #153448;
  border: 1.5px solid #153448;
}
.cookie-consent-banner button.reject-all {
  background: #23292D;
  color: #ECECEC;
  border: 1.5px solid #85A29B;
}
.cookie-consent-banner button.settings {
  background: none;
  border: 1.5px dashed #85A29B;
  color: #85A29B;
}
.cookie-consent-banner button:hover,
.cookie-consent-banner button:focus {
  background: #ECECEC;
  color: #153448;
  border: 1.5px solid #ECECEC;
}
@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    font-size: 0.95rem;
    padding: 14px 6px;
  }
  .cookie-consent-banner .cookie-actions {
    gap: 10px;
  }
}

/***** COOKIE PREFERENCES MODAL *****/
.cookie-modal-overlay {
  position: fixed;
  z-index: 1200;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(21, 52, 72, 0.79);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModalBg 0.33s;
}
@keyframes fadeInModalBg {from{opacity:0;}to{opacity:1;}}
.cookie-modal {
  background: #ECECEC;
  color: #153448;
  box-shadow: 0 0 32px rgba(21,52,72,0.23);
  border-radius: 16px;
  padding: 32px 22px 24px 22px;
  max-width: 420px;
  width: 96vw;
  animation: popUpCookieModal 0.25s cubic-bezier(.77,-0.13,.2,1.19);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
@keyframes popUpCookieModal {from{opacity:0;transform:scale(0.86);}to{opacity:1;transform:scale(1);}}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #153448;
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 18px; right: 20px;
  background: none;
  border: none;
  font-size: 1.45rem;
  color: #153448;
  cursor: pointer;
  z-index: 11;
  transition: color 0.16s;
}
.cookie-modal .modal-close:hover {
  color: #85A29B;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #DEDEDE;
}
.cookie-modal .category-label {
  font-size: 1.01rem;
  color: #153448;
  font-weight: 600;
  flex: 1;
}
.cookie-modal .toggle {
  position: relative;
  width: 38px;
  height: 22px;
}
.cookie-modal .toggle input[type="checkbox"] {
  width: 0;
  height: 0;
  opacity: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #85A29B;
  border-radius: 22px;
  transition: background .2s;
}
.cookie-modal .toggle input[type="checkbox"]:checked + .slider {
  background: #153448;
}
.cookie-modal .slider:before {
  content: '';
  position: absolute;
  width: 17px;
  height: 17px;
  left: 3px;
  bottom: 2.5px;
  background: #ECECEC;
  border-radius: 50%;
  transition: transform .21s;
}
.cookie-modal .toggle input[type="checkbox"]:checked + .slider:before {
  transform: translateX(14px);
  background: #85A29B;
}
.cookie-modal .cookie-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 10px;
}
.cookie-modal .cookie-actions button {
  font-size: 1rem;
  padding: 8px 18px;
  border-radius: 17px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: 1.2px solid #153448;
  background: #85A29B;
  color: #153448;
  margin-left: 0;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal .cookie-actions button:focus,
.cookie-modal .cookie-actions button:hover {
  background: #153448;
  color: #ECECEC;
  border: 1.2px solid #85A29B;
}

/***** UTILITIES & TYPOGRAPHY SCALES *****/
.text-center {
  text-align: center;
}
.mb-2 {margin-bottom: 16px;}
.mb-3 {margin-bottom: 24px;}
.mt-2 {margin-top: 16px;}
.mt-3 {margin-top: 24px;}
.gap-2 {gap: 16px;}
.gap-3 {gap: 24px;}

/********* EFFECTS *********/
.card, .collection-card, .feature, .category, .collection-highlight, .guide, .team-member, .testimonial-card {
  transition: box-shadow 0.21s, transform 0.18s;
}
.card:hover, .collection-card:hover, .feature:hover, .category:hover,
.collection-highlight:hover, .guide:hover, .team-member:hover {
  box-shadow: 0 8px 26px 0 rgba(133,162,155,0.13);
  transform: translateY(-8px) scale(1.025);
}

/********* PLACEHOLDER STYLES FOR JS HIDDEN (for demo) *********/
.mobile-menu,
.cookie-modal-overlay,
.cookie-consent-banner {
  display: none;
}

.mobile-menu.open,
.cookie-modal-overlay.open,
.cookie-consent-banner.open {
  display: flex;
}

/************* ALL DONE :) *************/
