/* RESET & BASE TYPOGRAPHY --------------------------------------------------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #20443B;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #20443B;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #D9C48B;
  outline-offset: 3px;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 10px;
}
address {
  font-style: normal;
  color: #20443B;
  font-size: 0.95rem;
}
/* --- GEOMETRIC STRUCTURED TYPOGRAPHY ---------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  letter-spacing: 0.03em;
  color: #20443B;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.18;
  margin-bottom: 24px;
  text-transform: uppercase;
}
h2 {
  font-size: 2rem;
  line-height: 1.22;
  margin-bottom: 20px;
  text-transform: uppercase;
}
h3 {
  font-size: 1.325rem;
  line-height: 1.25;
  margin-bottom: 16px;
}
h4 {
  font-size: 1.13rem;
  margin-bottom: 12px;
}
.subheadline {
  font-size: 1.13rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #20443B;
}
/* --- GENERAL CONTAINER AND FLEX LAYOUTS-------------------------------------------------- */
.container {
  max-width: 1100px;
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* SPACING & SECTIONS */
section, .section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: #fff;
}
@media (max-width: 768px) {
  section, .section {
    margin-bottom: 30px;
    padding: 28px 0;
  }
}
/* CARDS AND FLEX CONTAINERS ------------------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(32,68,59,0.06), 0 1.5px 6px rgba(217,196,139,0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 20px;
  min-width: 220px;
  flex: 1 1 250px;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 4px 18px rgba(32,68,59,0.13), 0 2px 10px rgba(217,196,139,0.10);
}
.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;
}
@media (max-width: 768px) {
  .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1.5px 5px rgba(32,68,59,0.08);
  padding: 28px 18px;
  margin-bottom: 18px;
}
/* --- HEADER AND NAVIGATION ------------------------------------------------------------- */
header {
  background: #20443B;
  color: #fff;
  padding-top: 0;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  background: #20443B;
  padding: 0 20px;
  min-height: 68px;
  gap: 24px;
  z-index: 20;
  position: relative;
}
.main-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  padding: 8px 0;
  margin-right: 8px;
  position: relative;
  border-bottom: 2.5px solid transparent;
  transition: color 0.18s, border-color 0.22s;
}
.main-nav a.btn-primary {
  background: #D9C48B;
  color: #20443B;
  border-radius: 32px;
  padding: 8px 32px;
  margin-left: 14px;
  border: none;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(32,68,59,0.12);
  transition: background 0.15s, color 0.15s, box-shadow 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #D9C48B;
  border-bottom: 2.5px solid #D9C48B;
}
.main-nav a.btn-primary:hover,
.main-nav a.btn-primary:focus {
  background: #20443B;
  color: #fff;
  box-shadow: 0 4px 22px rgba(32,68,59,0.15);
}
.main-nav img {
  height: 46px;
  margin-right: 24px;
}
@media (max-width: 1020px) {
  .main-nav {
    gap: 12px;
  }
  .main-nav a {
    font-size: 0.97rem;
    padding: 6px 0;
  }
}
/* --- MOBILE NAVIGATION ------------------------------------------------------------------ */
.mobile-menu-toggle {
  display: none;
  background: #D9C48B;
  color: #20443B;
  font-size: 2.1rem;
  line-height: 1;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 10px;
  right: 18px;
  z-index: 51;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(32,68,59,0.11);
  transition: background 0.14s, color 0.14s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #20443B;
  color: #D9C48B;
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 320px;
  background: #20443B;
  box-shadow: -3px 0 32px rgba(32,68,59,0.14);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.88,0.01,0.42,0.98);
  padding: 30px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  color: #D9C48B;
  font-size: 2rem;
  margin: 0 24px;
  border: none;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 44px 0 0 34px;
  width: 240px;
}
.mobile-nav a {
  color: #D9C48B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px 0;
  border-bottom: 2.5px solid transparent;
  border-radius: 0;
  display: block;
  transition: color 0.18s, border-color 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #fff;
  border-bottom: 2.5px solid #fff;
}
/* --- HERO AND FEATURE AREAS ------------------------------------------------------------- */
.hero {
  background: linear-gradient(90deg, #D9C48B 0%, #fff 58%);
  clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 400px;
}
.hero .content-wrapper {
  flex: 1 1 100%;
  align-items: flex-start;
  padding-bottom: 36px;
}
.hero h1 {
  color: #20443B;
  font-size: 2.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.hero .subheadline {
  color: #20443B;
}
@media (max-width: 700px) {
  .hero .container {
    min-height: 240px;
    padding: 28px 0 20px;
  }
  .hero h1 {
    font-size: 1.53rem;
  }
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 0 0;
}
.features .feature-grid > div {
  flex: 1 1 240px;
  background: #F8F9F8;
  border-radius: 12px;
  box-shadow: 0 1.5px 8px rgba(32,68,59,0.07);
  padding: 30px 18px 24px 18px;
  min-width: 200px;
  text-align: center;
  transition: box-shadow 0.18s, transform 0.17s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.features .feature-grid > div:hover {
  box-shadow: 0 4px 18px rgba(32,68,59,0.15);
  transform: translateY(-2.5px) scale(1.03);
}
.features .feature-grid img {
  height: 48px;
  margin-bottom: 8px;
  filter: grayscale(40%);
}
.features .feature-grid h3 {
  font-size: 1.18rem;
  color: #20443B;
}
.features .feature-grid p {
  color: #20443B;
  font-size: 1rem;
}
@media (max-width: 900px) {
  .features .feature-grid {
    flex-direction: column;
  }
}
/* --- BUTTONS ------------------------------------------------------------- */
.btn-primary {
  display: inline-block;
  background: #20443B;
  color: #fff !important;
  border-radius: 32px;
  padding: 13px 40px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.06rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 12px rgba(32,68,59,0.08);
  margin-top: 12px;
  margin-bottom: 10px;
  transition: background 0.14s, color 0.14s, box-shadow 0.13s, transform 0.13s;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #D9C48B;
  color: #20443B !important;
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 20px rgba(32,68,59,0.16);
}
/* LINK BUTTONS (for product links etc.) */
.content-wrapper a:not(.btn-primary) {
  color: #20443B;
  background: none;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  text-decoration: underline;
  text-underline-offset: 2px;
  border-radius: 0;
  padding: 2px 2px;
  transition: color 0.13s;
}
.content-wrapper a:not(.btn-primary):hover {
  color: #D9C48B;
}
/* --- TESTIMONIALS ------------------------------------------------------- */
.testimonials {
  background: #f7f6f3;
  border-radius: 0 0 44px 44px;
  box-shadow: 0 1.5px 8px rgba(32,68,59,0.09);
  padding-top: 38px;
  padding-bottom: 46px;
}
.testimonials h2 {
  color: #20443B;
  margin-bottom: 30px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1.5px 10px rgba(32,68,59,0.07);
  padding: 20px 26px 22px 26px;
  margin-bottom: 26px;
  max-width: 500px;
  color: #20443B;
  font-size: 1.09rem;
  transition: box-shadow 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 5px 16px rgba(32,68,59,0.13);
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  color: #20443B;
  font-weight: 500;
}
.testimonial-meta span {
  color: #D9C48B;
  font-size: 1.14em;
  letter-spacing: 0.2em;
}
@media (max-width: 900px) {
  .testimonials {
    border-radius: 0 0 26px 26px;
    padding: 20px 0 28px 0;
  }
  .testimonial-card {
    margin-bottom: 20px;
    padding: 14px 16px 14px 16px;
  }
}
@media (max-width:600px) {
  .testimonial-card {
    max-width: 98vw;
  }
}
/* --- BRAND/PRODUCTS HIGHLIGHT AREAS ------------------------------------- */
.highlight {
  background: #20443B;
  color: #fff;
  border-radius: 32px;
  padding: 44px 0 56px 0;
  box-shadow: 0 3px 26px rgba(32,68,59,0.11);
}
.highlight h2,
.highlight p {
  color: #fff;
}
.highlight .btn-primary {
  background: #D9C48B;
  color: #20443B !important;
}
.highlight .btn-primary:hover {
  background: #fff;
  color: #20443B !important;
}
@media (max-width:768px) {
  .highlight {
    border-radius: 20px;
    padding: 30px 0 38px 0;
  }
}
.brands h2 {
  margin-bottom: 12px;
}
.brands a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #20443B;
  text-underline-offset: 3px;
  margin-bottom: 4px;
}
.brands a:hover {
  color: #D9C48B;
}
.brands p {
  color: #20443B;
  max-width: 600px;
  margin-top: 10px;
}
/* --- BLOG AND TEXT BLOCKS ------------------------------------------------ */
.blog-hero {
  background: #D9C48B;
  border-radius: 0 0 44px 44px;
  box-shadow: 0 1.5px 8px rgba(32,68,59,0.09);
  color: #20443B;
  padding-bottom: 40px;
}
.blog-hero h1,
.blog-hero h2 {
  color: #20443B;
}
.blog-hero ul,
.featured-posts ul {
  margin-top: 18px;
  margin-bottom: 0;
  padding-left: 18px;
}
.blog-hero li,
.featured-posts li {
  margin-bottom: 10px;
  line-height: 1.6;
}
.featured-posts {
  background: #fff;
}
.featured-posts h2 {
  color: #20443B;
}
.featured-posts ul {
  margin-top: 0;
}
/* --- FOOTER ------------------------------------------------------------- */
footer {
  background: #20443B;
  padding: 32px 0 14px 0;
  color: #fff;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #D9C48B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  margin-bottom: 6px;
  border-bottom: 2.5px solid transparent;
  transition: color 0.16s, border-color 0.16s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #fff;
  border-bottom: 2.5px solid #D9C48B;
}
footer address,
footer p {
  font-size: 0.97rem;
  color: #fff;
}
footer p {
  margin-top: 6px;
  opacity: 0.84;
  letter-spacing: 0.01em;
}
@media (max-width: 700px) {
  .footer-nav {
    flex-direction: column;
    gap: 12px;
  }
  footer {
    padding: 24px 0 10px 0;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* --- FORMS & CONTACT --------------------------------------------------- */
input, textarea, select {
  border-radius: 8px;
  border: 1.5px solid #D9C48B;
  padding: 10px 14px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 16px;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: #20443B;
  outline: none;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #20443B;
  font-weight: 600;
  font-size: 0.99rem;
  margin-bottom: 6px;
}
/* --- COOKIE BANNER & MODAL --------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #20443B;
  padding: 22px 16px 22px 16px;
  box-shadow: 0 -2px 22px rgba(32,68,59,0.08);
  z-index: 20001;
  gap: 22px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: transform 0.34s cubic-bezier(0.7,0.05,0.36,1.04);
}
.cookie-banner.hidden {
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner .cookie-button, .cookie-banner .cookie-settings-btn {
  background: #20443B;
  color: #fff;
  border: none;
  border-radius: 28px;
  padding: 10px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  margin-left: 14px;
  cursor: pointer;
  box-shadow: 0 1.5px 6px rgba(32,68,59,.08);
  transition: background 0.14s, color 0.12s, box-shadow 0.13s;
}
.cookie-banner .cookie-button.reject {
  background: #fff;
  color: #20443B;
  border: 1.5px solid #D9C48B;
}
.cookie-banner .cookie-button:hover,
.cookie-banner .cookie-button:focus,
.cookie-banner .cookie-settings-btn:hover,
.cookie-banner .cookie-settings-btn:focus {
  background: #D9C48B;
  color: #20443B;
  box-shadow: 0 3px 10px rgba(32,68,59,0.13);
}
.cookie-banner .cookie-button.reject:hover {
  background: #D9C48B;
  color: #20443B;
}
@media (max-width:600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.98rem;
    padding: 18px 10px 18px 10px;
  }
  .cookie-banner .cookie-button, .cookie-banner .cookie-settings-btn {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
}
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(32,68,59,0.34);
  z-index: 22000;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  padding: 30px 28px;
  box-shadow: 0 4px 36px rgba(32,68,59,0.16);
  max-width: 420px;
  width: 96vw;
  position: relative;
  color: #20443B;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookiePopupIn 0.41s cubic-bezier(.62, .02, .36, 1.09);
}
@keyframes cookiePopupIn {
  0% { opacity: 0; transform: scale(0.93) translateY(60px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.44rem;
  margin-bottom: 6px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.cookie-modal label {
  font-size: 1rem;
  margin-bottom: 0;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #D9C48B;
  width: 20px;
  height: 20px;
  border-radius: 6px;
}
.cookie-modal .category-desc {
  font-size: 0.99rem;
  color: #637068;
  margin-bottom: 8px;
  margin-top: -4px;
  margin-left: 32px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.cookie-modal .cookie-modal-action-btn {
  background: #20443B;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 9px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 1.5px 8px rgba(32,68,59,.08);
  transition: background 0.14s, color 0.12s;
}
.cookie-modal .cookie-modal-action-btn.reject {
  background: #fff;
  color: #20443B;
  border: 1.5px solid #D9C48B;
}
.cookie-modal .cookie-modal-action-btn:hover ,
.cookie-modal .cookie-modal-action-btn:focus  {
  background: #D9C48B;
  color: #20443B;
}
.cookie-modal .cookie-modal-action-btn.reject:hover {
  background: #D9C48B;
  color: #20443B;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #20443B;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #D9C48B;
}
@media (max-width: 480px){
  .cookie-modal {
    padding: 18px 6vw;
  }
}
/* --- GEOMETRIC VISUAL ELEMENTS -------------------------------------------------------- */
/* Angled divider example – can be included between sections */
.divider-angled {
  height: 34px;
  width: 100%;
  background: linear-gradient(93deg, #D9C48B 0%, #fff 70%);
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
  margin: 0;
}
/* Example geometric badge */
.geometric-badge {
  display: inline-flex;
  background: #20443B;
  color: #D9C48B;
  border-radius: 0 18px 0 18px;
  padding: 5px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

/* --- SCROLLBAR (for geometric feel) ---------------------------------------------------- */
::-webkit-scrollbar {
  width: 10px;
  background: #f5f5f3;
}
::-webkit-scrollbar-thumb {
  background: #D9C48B;
  border-radius: 10px;
}

/* --- MISCELLANEOUS -------------------------------------------------------- */
.text-section {
  margin: 16px 0;
  color: #20443B;
  font-size: 1.06rem;
  line-height: 1.68;
}
ul, ol {
  padding-left: 22px;
}
.text-section ul li {
  list-style-type: square;
}

/* --- MEDIA QUERIES: TYPOGRAPHY SCALE ON SMALL SCREENS ------------------- */
@media (max-width: 600px) {
  h1 {
    font-size: 1.57rem;
    margin-bottom: 18px;
  }
  h2 {
    font-size: 1.23rem;
    margin-bottom: 14px;
  }
  h3 {
    font-size: 1.06rem;
    margin-bottom: 10px;
  }
}

/* --- MICRO-ANIMATIONS --------------------------------------------------------- */
.btn-primary,
.main-nav a.btn-primary,
.cookie-banner .cookie-button,
.cookie-banner .cookie-settings-btn {
  transition: background 0.15s, color 0.15s, box-shadow 0.2s, transform 0.13s;
}
.card, .feature-item, .features .feature-grid > div {
  transition: box-shadow 0.13s, transform 0.13s;
}
.card:active, .feature-item:active, .features .feature-grid > div:active {
  transform: scale(0.98);
}

/* --- FOCUS VISIBLE -------------------------------------------------------------- */
:focus-visible {
  outline: 2.5px solid #D9C48B;
  outline-offset: 2.5px;
}

/* --- UTILITIES ------------------------------------------------------- */
.d-none { display: none!important; }

/* --- END OF STYLE.CSS ---------------------------------------------------------- */