/* ========================
   CSS RESET & NORMALIZATION
============================ */
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;
}
/* Set core body defaults */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  background: #FAFAF8;
  color: #232943;
  font-family: 'Roboto', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .18s;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}

/* =============
  BRAND FONTS
============== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Roboto:wght@400;500&display=swap');

:root {
  --color-primary: #232943;
  --color-secondary: #F4E4D5;
  --color-bg: #FAFAF8;
  --color-accent: #D75843;
  --color-accent-dark: #A12F13;
  --color-muted: #B1B3BA;
  --color-white: #FFFFFF;
  --color-black: #232943;

  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
 }

/* ==============
  GENERAL LAYOUT
================ */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/***********
  TYPOGRAPHY
************/
body {
  font-family: var(--font-body);
  color: var(--color-black);
}
h1, .hero h1, .thank-you h1 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--color-primary);
}
h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 10px;
  color: var(--color-primary);
}
h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 6px;
  line-height: 1.2;
}
h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
}
p, li, blockquote, cite {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-black);
}
p.subheadline {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--color-accent-dark);
  margin-bottom: 22px;
}
strong {
  font-weight: 600;
  color: var(--color-accent);
}
cite {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-size: 0.95rem;
  color: var(--color-primary);
}
blockquote {
  quotes: '«' '»';
  color: var(--color-primary);
  position: relative;
  font-style: italic;
}
blockquote p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--color-black);
}

/* ==================
  SPACING & FLEXBOX 
=================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 260px;
  min-width: 248px;
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(50,38,40,0.05);
  padding: 24px;
  transition: box-shadow .23s, transform .23s;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.card:hover {
  box-shadow: 0 6px 32px 0 rgba(50,38,40,0.14);
  transform: translateY(-2px) scale(1.01);
}
.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: var(--color-secondary);
  border-left: 5px solid var(--color-accent);
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(60,45,50,0.05);
  margin-bottom: 20px;
  margin-top: 10px;
  transition: box-shadow .18s, transform .18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px 0 rgba(215,88,67,0.12);
  transform: translateY(-1px) scale(1.01);
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}
.feature-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  font-size: 1.01rem;
  background: var(--color-white);
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 1px 8px 0 rgba(50,38,40,0.03);
  color: var(--color-black);
}
.feature-list img {
  width: 22px;
  height: 22px;
}
.filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
  align-items: center;
  color: var(--color-muted);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========================
  HEADER & NAVIGATION MENU
========================= */
header {
  background: var(--color-white);
  box-shadow: 0 2px 18px 0 rgba(170,170,179,0.06);
  padding: 0 0;
  width: 100%;
  min-height: 64px;
  position: sticky;
  top: 0;
  z-index: 102;
}
.header-logo {
  padding: 12px 0 11px 16px;
  display: flex;
  align-items: center;
  float: left;
}
.header-logo img {
  height: 36px;
  width: auto;
  filter: none;
  border-radius: 7px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  float: left;
  margin-left: 50px;
  padding-top: 4px;
}
.main-nav a {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--color-primary);
  font-size: 1rem;
  padding: 9px 0 9px 0;
  border-bottom: 2px solid transparent;
  transition: color .16s, border-color .18s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--color-primary);
  padding: 10px 10px 10px 0;
  transition: color .16s;
  z-index: 1201;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-accent-dark);
}

/****************************
      MOBILE MENU OVERLAY
*****************************/
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36, 41, 67, 0.97);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.55,0,.17,1);
  z-index: 2000;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 4px 24px rgba(35,41,67,0.19);
}
.mobile-menu-close {
  font-size: 2rem;
  color: var(--color-white);
  background: none;
  border: none;
  align-self: flex-end;
  margin: 26px 26px 18px 0;
  cursor: pointer;
  transition: color .22s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
  padding-left: 26px;
}
.mobile-nav a {
  color: var(--color-white);
  font-size: 1.25rem;
  font-family: var(--font-body);
  font-weight: 500;
  padding: 14px 0;
  transition: color .16s;
  border-bottom: 1px solid rgba(255,255,255,0.11);
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--color-accent);
}

/*****************
  HERO & CTA
*****************/
.hero {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #fdfeff 100%);
  padding-top: 56px;
  padding-bottom: 56px;
  margin-bottom: 40px;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 680px;
}
.cta,
.cta.primary,
button, .product-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  border-radius: 34px;
  padding: 12px 32px;
  margin-top: 16px;
  box-shadow: 0 2px 12px 0 rgba(215,88,67,0.08);
  transition: background .23s, box-shadow .22s, transform .17s;
  text-transform: none;
  text-decoration: none;
  letter-spacing: 0.01em;
  cursor: pointer;
}
.cta.primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.cta:hover, .cta.primary:hover, button:hover, .product-card button:hover {
  background: var(--color-accent-dark);
  color: var(--color-white);
  box-shadow: 0 4px 28px 0 rgba(35,41,67,.13);
  transform: translateY(-2px) scale(1.03);
}
.cta:active, .cta:focus {
  outline: 2px solid var(--color-accent-dark);
  background: var(--color-primary);
}

/************************
   PRODUCT, COLLECTION, SERVICE CARDS
*************************/
.product-card, .collection-card, .service-card, .team-bio {
  background: var(--color-white);
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(50,38,40,0.05);
  padding: 26px 22px 22px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
  max-width: 420px;
  transition: box-shadow .22s, transform .16s;
}
.product-card:hover, .collection-card:hover, .service-card:hover {
  box-shadow: 0 8px 32px 0 rgba(167,89,67,0.10);
  transform: translateY(-2px) scale(1.012);
}
.product-card button {
  min-width: 120px;
  margin-top: 10px;
  font-size: 1rem;
  background: var(--color-primary);
}
.team-bio h3 {
  color: var(--color-primary);
}
.service-card img {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
}

/*************************
  THANK-YOU SECTION
**************************/
.thank-you {
  padding-top: 66px;
  padding-bottom: 66px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(102deg, var(--color-secondary) 43%, #FCFCF8 100%);
}
.thank-you .content-wrapper {
  align-items: center;
  text-align: center;
}
.thank-you p {
  color: var(--color-accent-dark);
  font-size: 1.13rem;
  margin-bottom: 22px;
}

/*********************
   FOOTER
**********************/
footer {
  background: var(--color-primary);
  color: var(--color-secondary);
  padding: 36px 0 24px 0;
  font-size: 0.98rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.footer-nav a {
  color: var(--color-secondary);
  font-weight: 500;
  font-size: 1rem;
  border-bottom: 1.5px dotted transparent;
  transition: color .13s, border-bottom-color .2s;
}
.footer-nav a:hover {
  color: var(--color-accent);
  border-bottom: 1.5px dotted var(--color-accent);
}
.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  opacity: 0.93;
}
.footer-brand img {
  height: 30px;
  width: auto;
  filter: brightness(96%) grayscale(10%);
}

/***********************************
    COOKIE CONSENT BANNER & MODAL
***********************************/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: 0 -2px 24px 0 rgba(35,41,67,0.07);
  z-index: 9000;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 40px 22px 20px;
  font-size: 1rem;
  border-top: 1.5px solid var(--color-secondary);
  transition: transform 0.28s cubic-bezier(.53,.21,.45,1), opacity 0.16s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner__text {
  flex: 1 1 260px;
  margin-right: 12px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-btn {
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 26px;
  padding: 9px 25px;
  transition: background .17s, color .17s, box-shadow .22s;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--color-accent-dark);
}
.cookie-btn.reject {
  background: #E6E6E6;
  color: var(--color-primary);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #D6D6D6;
}
.cookie-btn.settings {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: 1px solid var(--color-muted);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,41,67,0.54);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 12000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s cubic-bezier(.45,0,.33,1);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal__content {
  background: var(--color-white);
  border-radius: 20px;
  max-width: 480px;
  padding: 36px 28px 28px 28px;
  box-shadow: 0 8px 48px 0 rgba(85,40,36,0.13);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal__close {
  position: absolute;
  top: 9px;
  right: 16px;
  font-size: 1.7rem;
  color: var(--color-accent);
  background: none;
  border: none;
  cursor: pointer;
  transition: color .16s;
}
.cookie-modal__close:hover {
  color: var(--color-accent-dark);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid #E7E4E2;
}
.cookie-category:last-child {
  border: none;
}
.cookie-category label {
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-body);
}
.cookie-category .toggle-switch {
  margin-left: auto;
}
.toggle-switch {
  position: relative;
  width: 40px;
  height: 22px;
  display: inline-block;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #EDEDED;
  border-radius: 22px;
  transition: background 0.14s;
}
.toggle-switch input:checked + .toggle-slider {
  background-color: var(--color-accent);
}
.toggle-slider:before {
  position: absolute;
  content: '';
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: var(--color-white);
  border-radius: 50%;
  transition: transform 0.16s;
  box-shadow: 0 1px 5px 0 rgba(60,45,50,0.08);
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(18px);
}

/****************************
       RESPONSIVE DESIGN
*****************************/
@media (max-width: 1100px) {
  .container {
    max-width: 97vw;
    padding-left: 14px;
    padding-right: 14px;
  }
}
@media (max-width: 900px) {
  .feature-list li,
  .product-card, .collection-card, .service-card, .team-bio, .testimonial-card {
    min-width: 180px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .content-wrapper {
    gap: 22px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 16px;
    top: 10px;
  }
  .header-logo {
    float: none;
    padding-left: 18px;
  }
  header {
    padding: 6px 0;
    min-height: 58px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  .hero, .thank-you {
    padding-top: 38px;
    padding-bottom: 36px;
  }
  .section {
    margin-bottom: 38px;
    padding: 26px 10px;
  }
  .content-wrapper,
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
  }
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .team-bio, .product-card, .service-card, .collection-card {
    min-width: unset;
    max-width: 100%;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    padding: 14px 6vw 16px 6vw;
    font-size: 0.98rem;
  }
  .cookie-banner__actions {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  .cookie-modal__content {
    max-width: 98vw;
    padding-left: 13px;
    padding-right: 13px;
  }
}
@media (max-width: 569px) {
  h1, .hero h1, .thank-you h1 {
    font-size: 1.32rem;
  }
  h2 {
    font-size: 1.13rem;
  }
  h3 {
    font-size: 1.01rem;
  }
  .footer-brand span {
    font-size: 0.9rem;
  }
  .footer-brand img {
    height: 22px;
  }
}

/**************************
   MISC: LISTS, BLOCKS
***************************/
ul, ol {
  padding-left: 23px;
  margin-bottom: 10px;
}
ol li {
  list-style-type: decimal;
  margin-bottom: 5px;
}
ul li {
  list-style-type: disc;
  margin-bottom: 4px;
}
.text-section strong {
  color: var(--color-primary);
}

/*************************
   FORM ELEMENTS
**************************/
input, textarea, select {
  border: 1.7px solid #E7E4E2;
  border-radius: 6px;
  padding: 9px 13px;
  font-size: 1rem;
  background: #fff;
  color: var(--color-black);
  font-family: var(--font-body);
  transition: border-color .13s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-accent);
}

/***************************
      HIDE VISUALLY
***************************/
.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

/***************************
   OVERRIDE DEFAULT BROWSER
**************************/
::-webkit-scrollbar {
  width: 8px;
  background: #EFEFEF;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb {
  background: #E6E5E6;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: #DCC6BC;
}

/***************************
   ELEVATIONS, SHADOWS
***************************/
.shadow-sm {
  box-shadow: 0 2px 10px 0 rgba(215,88,67,0.05);
}
.shadow-lg {
  box-shadow: 0 8px 38px 0 rgba(35,41,67,0.12);
}

/***************************
  UTILITY CLASSES
***************************/
.mt-0 {margin-top: 0 !important;}
.mb-0 {margin-bottom: 0 !important;}
.mt-20 {margin-top: 20px !important;}
.mb-20 {margin-bottom: 20px !important;}
.gap-16 {gap: 16px !important;}
.w-100 {width: 100% !important;}

/* End of CSS */