/* --- 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 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  line-height: 1.5;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  vertical-align: middle;
}
button {
  font: inherit;
  border: none;
  cursor: pointer;
  background: transparent;
  outline: none;
}

/* --- BRAND VARIABLES & FALLBACKS --- */
:root {
  --color-primary: #14313D;
  --color-secondary: #F8F7F4;
  --color-accent: #E1B87E;
  --color-neutral: #27272a;
  --color-hero-gradient-from: #153748;
  --color-hero-gradient-to: #2D5C6D;
  --color-card-bg: #182e39;
  --color-glow: #6ff6ff;

  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat'), local('Montserrat-Regular'),
    url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
  font-weight: 700 900;
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: local('Open Sans'), local('OpenSans-Regular'),
    url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
  font-weight: 400 700;
  font-display: swap;
}

body {
  font-family: var(--font-body);
  color: var(--color-secondary);
  background: linear-gradient(120deg, var(--color-primary) 0%, #20495a 100%);
  min-height: 100vh;
  background-attachment: fixed;
}

/* --- GLOBAL TYPOGRAPHY --- */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 16px;
  line-height: 1.2;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-glow);
  margin-bottom: 12px;
}
h4, .h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 6px;
}
p {
  font-size: 1rem;
  line-height: 1.7;
  color: #e0ecef;
}
strong, b {
  font-weight: 700;
  color: var(--color-accent);
}

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

/* --- HEADER & NAVIGATION --- */
header {
  width: 100%;
  background: rgba(20,49,61,0.95);
  box-shadow: 0 2px 12px 0 rgba(30,60,80,0.07);
  position: sticky;
  top: 0;
  z-index: 99;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 32px;
  height: 48px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
header nav a {
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.06em;
  transition: color 0.18s cubic-bezier(.4,0,.2,1);
  position: relative;
  padding: 4px 0;
}
header nav a:after {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2.5px;
  background: linear-gradient(90deg,var(--color-accent),var(--color-glow));
  opacity: 0;
  transition: opacity 0.18s, transform 0.15s;
  transform: scaleX(0.2);
  border-radius: 2px;
}
header nav a:hover:after,
header nav a:focus:after {
  opacity: 1;
  transform: scaleX(1);
}
header nav a:hover,
header nav a:focus {
  color: var(--color-accent);
}
header .cta-btn.primary {
  margin-left: 24px;
}

/* --- CTA BUTTONS --- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 32px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.07rem;
  color: var(--color-primary);
  background: var(--color-accent);
  box-shadow: 0 2.5px 18px 0 rgba(225,184,126,0.10);
  border: none;
  transition: background 0.19s, color 0.21s, box-shadow 0.18s;
  position: relative;
  z-index: 1;
}
.cta-btn.primary {
  background: var(--color-accent);
  color: var(--color-primary);
  text-shadow: none;
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: var(--color-glow);
  color: #12242c;
  box-shadow: 0 6px 28px 0 rgba(111,246,255,0.19);
}
.cta-btn:active {
  background: var(--color-accent);
  filter: brightness(0.94);
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(120deg, var(--color-hero-gradient-from) 0%, var(--color-hero-gradient-to) 100%);
  padding-top: 56px;
  padding-bottom: 56px;
  margin-bottom: 60px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero p {
  font-size: 1.2rem;
  font-weight: 400;
  max-width: 700px;
}

/* --- SECTIONS --- */
.section, .features, .services, .about, .contact, .testimonials, .legal, .confirmation {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features, .services, .about, .contact, .testimonials, .legal, .confirmation {
  background: rgba(20,44,52,0.88);
  border-radius: 16px;
  box-shadow: 0 3px 22px 0 rgba(18, 40, 51, 0.07);
}

/* --- CARDS & SPACING --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}

.card {
  background: var(--color-card-bg);
  border-radius: 18px;
  box-shadow: 0 4px 28px 0 rgba(97,255,255,0.05);
  padding: 28px 28px 20px 28px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  transition: box-shadow 0.18s, transform 0.17s;
  border: 1.5px solid rgba(225,184,126,0.09);
}
.card:hover, .card:focus-within {
  box-shadow: 0 0 0 3px var(--color-glow), 0 6px 40px 0 rgba(111,246,255,0.15);
  transform: translateY(-2px) scale(1.017);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.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;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: rgba(20,60,70,0.98);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 20px;
  border-left: 3px solid var(--color-accent);
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: #fff;
  color: #27344A;
  font-size: 1.07rem;
  box-shadow: 0 1.5px 16px 0 rgba(34,199,250,0.13), 0 0 0 2px var(--color-glow);
  border-left: 5px solid var(--color-accent);
  position: relative;
}
.testimonial-card p {
  color: #191E25;
  font-family: var(--font-body);
}
.testimonial-card div {
  font-style: italic;
  color: #323b46;
  font-size: 1rem;
  font-family: var(--font-display);
}

/* --- INFODIVS, HIGHLIGHTS, ETC --- */
.quick-facts, .infographic, .trend-descriptions, .how-to-wear, .next-steps-info, .tips-and-tricks, .newsletter-signup, .categories-list, .faq, .inspiration-highlights {
  background: rgba(24,46,57,0.94);
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 22px;
  color: var(--color-secondary);
  box-shadow: 0 1.5px 12px 0 rgba(20,63,87,0.14);
}

.inspiration-highlights ul,
.next-steps-info ul,
.faq ul,
.tips-and-tricks ul,
.how-to-wear ul,
.benefits-list ul,
.categories-list ul {
  padding-left: 12px;
}

.consultation-steps ol {
  padding-left: 20px;
  color: var(--color-accent);
}

/* --- CONTACT & ADDRESS SECTIONS --- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 22px;
}
.contact-details img {
  height: 20px;
  width: 20px;
  margin-right: 8px;
  vertical-align: middle;
}
.address-info,
.opening-hours {
  color: var(--color-glow);
  background: rgba(30,90,110,0.23);
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.map {
  background: rgba(55,77,95,.50);
  border-radius: 10px;
  margin-top: 8px;
  padding: 10px 14px;
  color: var(--color-accent);
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* --- BLOG POSTS --- */
.blog-post-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}
.blog-post-previews article {
  background: var(--color-card-bg);
  border-radius: 18px;
  box-shadow: 0 3px 16px 0 rgba(34,199,250,0.08);
  padding: 22px 19px 16px 23px;
  flex: 1 1 280px;
  min-width: 270px;
  margin-bottom: 20px;
  color: var(--color-secondary);
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 3px solid var(--color-glow);
  transition: box-shadow 0.17s, transform 0.17s;
}
.blog-post-previews article:hover, .blog-post-previews article:focus-within {
  box-shadow: 0 0 0 3px var(--color-glow), 0 8px 38px 0 rgba(111,246,255,0.09);
  transform: translateY(-1.5px) scale(1.013);
}
.blog-post-previews article a {
  color: var(--color-accent);
  font-weight: 600;
  font-family: var(--font-display);
  margin-top: 10px;
  transition: color 0.18s;
}
.blog-post-previews article a:hover, .blog-post-previews article a:focus {
  color: var(--color-glow);
}

/* --- FOOTER --- */
footer {
  width: 100%;
  background: rgba(17,35,44,0.97);
  padding: 30px 0 12px 0;
  border-top: 3px solid var(--color-glow);
  margin-top: 48px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
footer nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
footer nav a {
  color: var(--color-glow);
  font-size: 0.97rem;
  font-family: var(--font-display);
  opacity: 0.85;
  transition: color 0.15s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--color-accent);
  opacity: 1;
}
.footer-info {
  color: #7acfe7;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  text-align: center;
  opacity: 0.69;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  position: relative;
  z-index: 130;
  background: var(--color-glow);
  color: var(--color-primary);
  font-size: 2.2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 2.5px solid var(--color-accent);
  margin-left: 12px;
  transition: background .18s, color .18s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--color-accent);
  color: #153748;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18,38,48, 0.98);
  z-index: 2000;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.66,-0.01,.34,1.02);
  display: flex;
  flex-direction: column;
  padding: 32px 20px 0 30px;
  box-shadow: 0 2.5px 28px 0 rgba(32,255,247,.22);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 2.1rem;
  color: var(--color-glow);
  background: none;
  border: none;
  z-index: 2010;
  transition: color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 70px;
  align-items: flex-start;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.34rem;
  color: #fff;
  letter-spacing: 0.06em;
  background: none;
  padding: 9px 0;
  border-radius: 7px;
  transition: background 0.19s, color 0.19s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #112632;
  color: #fff;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding: 20px 20px 18px 24px;
  box-shadow: 0 -5px 20px 0 rgba(20,49,61,.25);
  border-top: 2.5px solid var(--color-glow);
  animation: slideUpBanner 0.7s cubic-bezier(.38,.25,.61,1.17);
}
@keyframes slideUpBanner {
  0% { transform: translateY(120%); opacity: 0; }
  70% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p {
  color: #fff;
  font-size: 1rem;
  flex: 1 1 240px;
  margin: 0 12px 0 0;
}
.cookie-consent-actions {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  font-family: var(--font-display);
  font-size: 0.99rem;
  border-radius: 22px;
  border: none;
  padding: 9px 21px;
  margin: 0;
  cursor: pointer;
  font-weight: 700;
  background: var(--color-accent);
  color: var(--color-primary);
  transition: background 0.16s, color 0.15s, box-shadow 0.14s;
  box-shadow: 0 2.5px 12px 0 rgba(225,184,126,0.12);
}
.cookie-btn.settings {
  background: #2D5C6D;
  color: var(--color-glow);
}
.cookie-btn.reject {
  background: var(--color-card-bg);
  color: var(--color-glow);
  border: 1.3px solid var(--color-accent);
}
.cookie-btn:active {
  filter: brightness(.94);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-glow);
  color: #103444;
}

/* --- COOKIE CONSENT MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(21,49,61,.93);
  z-index: 3100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal .38s ease;
}
@keyframes fadeInModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #1c2d36;
  border-radius: 18px;
  min-width: 320px;
  max-width: 92vw;
  padding: 38px 30px 26px 36px;
  box-shadow: 0 10px 38px 0 rgba(70,220,255,0.22);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: slideDownModal .35s cubic-bezier(.37,.12,.67,1.21);
}
@keyframes slideDownModal {
  0% { transform: translateY(-80px) scale(0.99); opacity:0; }
  100% { transform: translateY(0) scale(1); opacity:1; }
}
.cookie-modal h3, .cookie-modal h2 {
  font-family: var(--font-display);
  color: var(--color-primary);
  margin-bottom: 10px;
}
.cookie-modal ul {
  padding-left: 18px;
}
.cookie-modal-close {
  position: absolute;
  top: 17px;
  right: 22px;
  font-size: 1.7rem;
  color: var(--color-glow);
  background: none;
  border: none;
  z-index: 3160;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
.cookie-category-checkbox[disabled] {
  opacity: .5;
  pointer-events: none;
}

/* --- FORM ELEMENTS --- */
input[type="checkbox"] {
  accent-color: var(--color-accent);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1100px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.4rem; }
  .cta-btn { font-size: 1rem; }
}
@media (max-width: 900px) {
  .container { padding-left: 12px; padding-right: 12px; }
  header .container {
    gap: 12px;
  }
  .hero { padding-top: 36px; padding-bottom: 36px; }
}
@media (max-width: 820px) {
  .card-container, .content-grid, .blog-post-previews {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .hero, .section, .features, .services, .about, .contact, .testimonials, .legal, .confirmation {
    padding: 28px 7px;
    margin-bottom: 40px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .card, .blog-post-previews article {
    padding: 17px 11px 13px 13px;
    border-radius: 12px;
  }
  .card-container, .content-grid, .blog-post-previews {
    gap: 7px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 9px;
    padding: 13px;
    border-radius: 10px;
    font-size: .98rem;
  }
  footer .container {
    gap: 8px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header nav, header .cta-btn.primary {
    display: none;
  }
}
@media (max-width: 560px) {
  h1, .h1 { font-size: 1.23rem; }
  h2, .h2 { font-size: 1.08rem; }
  h3, .h3 { font-size: 1rem; }
  .cta-btn { font-size: 0.92rem; padding: 10px 23px; }
  .cookie-consent-banner, .cookie-modal {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-left: 6px;
    padding-right: 6px;
  }
  .cookie-modal {
    padding: 25px 7px 22px 12px;
    min-width: 210px;
  }
}

/* --- FLEXBOX-ONLY ENFORCEMENT --- */
/* No 'display: grid' or 'column-' properties anywhere */
