/* 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, menu, 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, 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 {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #FCFCFD;
  color: #222;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, svg {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.18s cubic-bezier(.51,.01,.09,.93);
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background .18s, color .18s;
}

/* Font Imports */
@import url('https://fonts.googleapis.com/css?family=Oswald:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

:root {
  --color-primary: #21232A;
  --color-secondary: #323544;
  --color-accent: #FFFFFF;
  --color-gold: #D5AF65;
  --color-gold-light: #F3E5C1;
  --color-grey: #ECECF2;
  --color-bg: #FCFCFD;
  --color-btn-gradient: #26292F;
  --color-shadow-card: rgba(33,35,42,0.14);
  --color-shadow-hover: rgba(213, 175, 101, 0.18);
  --font-display: 'Oswald', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

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

/*****************************
   HEADER / MAIN NAVIGATION
******************************/
header {
  background: var(--color-accent);
  border-bottom: 2px solid var(--color-gold);
  box-shadow: 0 2px 8px 0 rgba(33,35,42,.04);
  z-index: 1001;
  position: relative;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}
header .main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.02em;
}
.main-nav a {
  color: var(--color-primary);
  position: relative;
  padding: 4px 0;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-gold);
}
.main-nav a::after {
  content: '';
  display: block;
  width: 0;
  margin: 0 auto;
  border-bottom: 2.5px solid var(--color-gold);
  transition: width .23s;
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 80%;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 18px;
  color: var(--color-accent);
  background: var(--color-gold);
  border: none;
  border-radius: 38px;
  padding: 11px 34px;
  box-shadow: 0 1.5px 6px var(--color-shadow-card);
  transition: background .22s, box-shadow .18s, transform .13s;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: #b6934b;
  color: var(--color-accent);
  box-shadow: 0 6px 24px var(--color-shadow-hover);
  transform: translateY(-1px) scale(1.04);
}

/************************************
   MOBILE MENU (HAMBURGER NAV)
*************************************/
.mobile-menu-toggle {
  display: none;
  position: fixed;
  right: 16px;
  top: 16px;
  z-index: 2010;
  width: 46px;
  height: 46px;
  background: var(--color-accent);
  border-radius: 50%;
  font-size: 2.1rem;
  color: var(--color-primary);
  box-shadow: 0 2px 12px rgba(33,35,42,.04);
  border: 2px solid var(--color-gold);
  align-items: center;
  justify-content: center;
  transition: background .19s, color .18s, box-shadow .16s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-gold);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-accent);
  box-shadow: 0 8px 48px rgba(33,35,42,0.32);
  z-index: 2050;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform .36s cubic-bezier(.68,-0.45,.27,1.45), opacity .36s;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 26px 0 0;
  background: none;
  color: var(--color-primary);
  font-size: 2.3rem;
  border-radius: 50%;
  padding: 6px 12px;
  border: 2px solid var(--color-gold);
  transition: background .19s, color .17s;
}
.mobile-menu-close:focus {
  background: var(--color-gold);
  color: var(--color-accent);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  padding: 44px 48px;
}
.mobile-nav a {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 7px 0;
  border-radius: 16px;
  width: 100%;
  transition: color .19s, background .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-gold);
  background: var(--color-grey);
}

/***************************************************
  HERO SECTION & LUXURY PREMIUM STYLES
***************************************************/
.hero {
  background: var(--color-primary);
  padding: 80px 0 64px 0;
  color: var(--color-accent);
  box-shadow: 0 7px 32px 0 rgba(33,35,42,0.13);
  border-bottom: 4px solid var(--color-gold);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.12);
  color: white;
}
.hero p {
  font-size: 20px;
  font-family: var(--font-body);
  font-weight: 400;
  margin-bottom: 34px;
  color: var(--color-accent);
  opacity: 0.97;
}
.hero .cta-btn {
  font-size: 20px;
  padding: 16px 44px;
  border: 2.5px solid var(--color-gold);
  box-shadow: 0 3px 18px var(--color-shadow-card);
}

/********************************************
    STANDARD FLEX SPACING RULES
********************************************/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: 26px;
  box-shadow: 0 2px 18px var(--color-shadow-card);
}
/****************************************************
    FLEXBOX CARDS & CONTENT GRIDS - LUXURY STYLING
***************************************************/
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.features-grid, .values-grid, .products-preview, .products-list, .news-cards, .story-highlights, .team-block, .faq-list, .tips-block, .trend-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 20px;
  justify-content: space-between;
}
.features-grid .feature, .values-grid .value, .product-card, .news-card, .story, .faq-item, .team-member, .success-block {
  background: var(--color-accent);
  border-radius: 18px;
  box-shadow: 0 2px 20px var(--color-shadow-card);
  padding: 30px 28px;
  margin-bottom: 20px;
  flex: 1 1 290px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 1.4px solid var(--color-gold-light);
  position: relative;
  transition: box-shadow .18s, transform .1s, border-color .18s;
}
.features-grid .feature:hover, .values-grid .value:hover, .product-card:hover, .news-card:hover, .story:hover, .team-member:hover {
  box-shadow: 0 10px 42px var(--color-shadow-hover);
  border-color: var(--color-gold);
  transform: translateY(-2px) scale(1.018);
}
.features-grid .feature img, .values-grid .value img, .team-member img {
  width: 44px;
  height: 44px;
  margin-bottom: 9px;
}
.products-preview, .products-list, .news-cards {
  gap: 24px;
}
.product-card, .news-card {
  min-width: 260px;
  max-width: 360px;
  border-left: 5px solid var(--color-gold);
}
.product-card h3, .news-card h3, .feature h3, .faq-item h3, .team-member h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}
.product-card a {
  margin-top: auto;
  color: var(--color-gold);
  font-weight: 500;
  font-family: var(--font-body);
  font-size: 16px;
  text-decoration: underline;
  transition: color .19s;
}
.product-card a:hover {
  color: #b6934b;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-accent);
  border-radius: 18px;
  box-shadow: 0 2px 20px var(--color-shadow-card);
  padding: 24px 22px;
  border: 1.4px solid var(--color-gold-light);
}
.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;
}
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 32px;
  background: #F9F7F2;
  border-radius: 20px;
  box-shadow: 0 4px 14px var(--color-shadow-card);
  border-left: 6px solid var(--color-gold);
  font-size: 17px;
  color: #1a1813;
  margin-bottom: 20px;
  flex: 1 1 320px;
  transition: box-shadow .18s, transform .14s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 38px var(--color-shadow-hover);
  transform: translateY(-2px) scale(1.012);
}
.testimonial-card strong {
  font-weight: 700;
  color: #3f3b27;
}
.testimonial-card img {
  width: 22px;
  height: 22px;
  vertical-align: bottom;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*************************************************
   HIERARCHY & TYPOGRAPHY
**************************************************/
h1 {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}
h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 9px;
}
h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 400;
}

p, ul li, ol li, .faq-item p {
  font-size: 17px;
  font-family: var(--font-body);
  color: #2B2A28;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
u, li, ol {
  margin-bottom: 0;
}
a:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

/***********************************************
   SPECIAL BLOCKS & LUXURY DETAILS
************************************************/
.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
  padding-left: 12px;
  border-left: 3.5px solid var(--color-gold);
}
.timeline strong {
  color: var(--color-gold);
  font-weight: 700;
}
.policy-section, .terms-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.company-info {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.company-info li, .success-block li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}
.tips, .faq-list, .trend-highlights {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.success-block {
  background: #F2EDE4;
  border-left: 5px solid var(--color-gold);
  padding: 28px 24px;
  font-size: 17px;
  color: #242018;
}

/****************************************************
     CTA SECTION
****************************************************/
.cta-section {
  background: var(--color-primary);
  color: var(--color-accent);
  border-radius: 26px;
  box-shadow: 0 4px 18px var(--color-shadow-card);
  text-align: center;
  margin-bottom: 60px;
  padding: 48px 20px;
}
.cta-section h2 {
  color: var(--color-gold);
  margin-bottom: 23px;
}
.cta-section .cta-btn {
  font-size: 21px;
  padding: 15px 40px;
  background: var(--color-gold);
  color: var(--color-primary);
  border: 2.5px solid var(--color-gold);
}
.cta-section .cta-btn:hover {
  background: #b6934b;
  color: var(--color-accent);
}

/****************************************************
         FOOTER
****************************************************/
footer {
  background: var(--color-primary);
  color: var(--color-accent);
  padding: 40px 0 20px 0;
  border-top: 3px solid var(--color-gold);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 18px;
}
.footer-menu a {
  color: var(--color-accent);
  font-size: 16px;
  font-family: var(--font-display);
  transition: color .19s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--color-gold);
}
footer .footer-contact p, footer p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-gold-light);
}
footer .footer-contact a {
  color: var(--color-gold);
  text-decoration: underline;
  transition: color .19s;
}
footer .footer-contact a:hover {
  color: #FFF7DE;
}

/****************************************************
       COOKIE CONSENT BANNER & MODAL
****************************************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 2200;
  background: #22201A;
  color: var(--color-accent);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 22px 26px 20px;
  box-shadow: 0 -4px 28px rgba(33,35,42,0.08);
  font-size: 16px;
  border-top: 3px solid var(--color-gold);
  animation: cookie-fade-in .7s;
}
@keyframes cookie-fade-in {
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-size: 15px;
  padding: 8.5px 30px;
  border-radius: 18px;
  border: none;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-gold);
  transition: background .22s, color .18s, box-shadow .17s;
  box-shadow: 0 1px 4px rgba(213,175,101,0.14);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #b6934b;
  color: var(--color-accent);
  outline: none;
}
.cookie-banner .cookie-settings-btn {
  background: var(--color-grey);
  color: var(--color-primary);
  border: 1px solid var(--color-gold);
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: var(--color-gold);
  color: var(--color-accent);
}

.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -54%) scale(0.95);
  min-width: 320px;
  max-width: 94vw;
  width: 420px;
  z-index: 2222;
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 22px;
  box-shadow: 0 12px 54px rgba(33,35,42,0.20);
  border: 2.2px solid var(--color-gold);
  padding: 38px 32px 28px 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h2 {
  font-size: 22px;
  color: var(--color-primary);
  margin-bottom: 14px;
}
.cookie-modal .cookie-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 22px;
}
.cookie-modal .cookie-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 17px;
}
.cookie-modal .cookie-toggle input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--color-gold);
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 17px;
  justify-content: flex-end;
}
.cookie-modal .cookie-close {
  position: absolute;
  right: 26px;
  top: 18px;
  font-size: 1.6rem;
  background: none;
  color: var(--color-primary);
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  padding: 2px 8px;
}
.cookie-modal .cookie-close:hover {
  background: var(--color-gold);
  color: var(--color-accent);
}

/****************************************************
  MEDIA QUERIES & RESPONSIVENESS (FLEX ONLY!)
****************************************************/
@media (max-width: 1060px) {
  .container {
    max-width: 94vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .features-grid .feature, .values-grid .value, .product-card, .news-card, .story, .team-member {
    min-width: 220px;
    max-width: 100%;
    padding: 22px 12px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 16px;
    font-size: 15px;
  }
  .footer-menu {
    gap: 12px;
    font-size: 14px;
  }
  .cta-btn {
    font-size: 16px;
    padding: 9px 25px;
  }
  .section {
    padding: 34px 5px;
  }
}
@media (max-width: 768px) {
  .header-inner {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
    min-height: 63px;
  }
  .main-nav {
    display: none !important;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero {
    padding: 52px 0 36px 0;
  }
  .hero h1 {
    font-size: 29px;
  }
  .section {
    padding: 26px 6px;
    margin-bottom: 40px;
  }
  .features-grid, .values-grid, .products-preview, .products-list, .news-cards, .story-highlights, .faq-list, .team-block {
    flex-direction: column;
    gap: 22px;
    margin-bottom: 12px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .product-card, .news-card, .feature, .value, .story, .team-member {
    max-width: 100%;
    min-width: 0;
    width: 100%;
    padding: 19px 10px;
  }
  .testimonials-slider {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    padding: 15px 10px;
    font-size: 15px;
  }
  .content-wrapper {
    gap: 20px;
  }
  .footer-menu {
    flex-direction: column;
    gap: 7px;
    margin-bottom: 8px;
  }
  .footer-contact p, footer p {
    font-size: 13px;
  }
  .cta-section h2 {
    font-size: 22px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .timeline {
    padding-left: 6px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    font-size: 14px;
    padding: 15px 7px 18px 9px;
  }
  .cookie-modal {
    max-width: 98vw;
    width: 97vw;
    padding: 22px 8px 18px 8px;
  }
}
@media (max-width: 500px) {
  .hero h1 {
    font-size: 21px;
  }
  h1 {
    font-size: 21px;
  }
  h2 {
    font-size: 17px;
  }
  .cta-btn {
    font-size: 13px;
    padding: 7px 11px;
  }
}

/***************************************************
   SCROLLBAR & UX ENHANCEMENTS
****************************************************/
::-webkit-scrollbar {
  width: 10px;
  background: #ede7dc;
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold-light);
  border-radius: 8px;
}

/***************************************************
   ACCESSIBILITY
****************************************************/
:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

/****************************************************
   MICRO-INTERACTIONS
****************************************************/
.card, .feature, .value, .product-card, .news-card, .testimonial-card, .team-member {
  transition: box-shadow .22s, border-color .19s, transform .11s;
}

.cta-btn, .cookie-banner button, .mobile-menu-close, .mobile-menu-toggle {
  transition: background .22s, color .19s, box-shadow .12s, transform .11s;
}

.card:active, .feature:active, .product-card:active, .news-card:active {
  transform: scale(0.97);
}

::selection {
  background: var(--color-gold-light);
}

/*************** END OF CSS **************/