/* ===================
   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, 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;
}
html {
  height: 100%;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #fff;
  color: #212121;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  min-height: 100vh;
  line-height: 1.65;
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #232323;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style-position: outside;
  margin-left: 1.15em;
}
av {
  text-decoration: none;
}
a {
  color: #111;
  text-decoration: underline;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #000;
  outline-offset: 2px;
}


/* ======================
   BRAND COLOR VARIABLES
======================= */
:root {
  --color-bg: #fff;
  --color-bg-alt: #F8F8F8;
  --color-ink: #191B1A;
  --color-ink-light: #393939;
  --color-primary: #22281A;
  --color-secondary: #FFFFFF;
  --color-accent: #B37739;
  --color-accent-contrast: #fff;
  --color-border: #E0E0E0;
  --color-shadow: rgba(40,40,40,0.06);
  --color-card: #fff;
  --color-overlay: rgba(30,30,30,0.82);
}

/* ======================
   TYPOGRAPHY
======================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 18px;
}
h1 {
  font-size: 2.6rem;
  line-height: 1.08;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  line-height: 1.12;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 500;
}

p, li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-ink-light);
  margin-bottom: 14px;
}
p:last-child, li:last-child {
  margin-bottom: 0;
}
strong {
  font-weight: 700;
}

.text-section h3 {
  font-size: 1.15rem;
  margin-top: 16px;
}

.text-section a {
  color: var(--color-accent);
  text-decoration: underline;
  transition: color 0.20s;
}
.text-section a:hover {
  color: var(--color-primary);
}

/* ======================
   UTILITY CONTAINERS
======================= */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  min-width: 0;
  width: 100%;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: var(--color-card);
  border-radius: 14px;
  box-shadow: 0 2px 12px var(--color-shadow);
  padding: 32px 28px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.15s;
  border: 1px solid var(--color-border);
  min-width: 250px;
}
.card:hover {
  box-shadow: 0 6px 30px rgba(30,30,30,0.12);
  transform: translateY(-8px) scale(1.015);
  z-index: 2;
}

.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;
  border-radius: 13px;
  background: #F4F4F4;
  border: 1px solid #E1E1E1;
  box-shadow: 0 2px 6px var(--color-shadow);
  margin-bottom: 20px;
  flex-wrap: wrap;
  color: #212121;
}
.testimonial-card p {
  color: #222;
  font-size: 1.10rem;
  font-style: italic;
  margin-bottom: 6px;
}
.testimonial-card span {
  color: #585858;
  font-size: 0.97rem;
  font-style: normal;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.product-cards, .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.product-card, .service-card {
  background: var(--color-bg-alt);
  border-radius: 14px;
  box-shadow: 0 2px 16px var(--color-shadow);
  padding: 32px 24px;
  min-width: 240px;
  flex: 1 1 270px;
  border: 1px solid var(--color-border);
  transition: box-shadow 0.2s, transform 0.13s;
  margin-bottom: 20px;
}
.product-card:hover, .service-card:hover {
  box-shadow: 0 8px 28px rgba(20,20,20,0.13);
  transform: translateY(-5px) scale(1.012);
}
.service-price {
  display: inline-block;
  background: var(--color-primary);
  border-radius: 20px;
  padding: 6px 16px;
  color: #fff;
  font-weight: 700;
  font-size: 0.98rem;
  margin-top: 14px;
}

/* ======================
   HEADER / NAVIGATION
======================= */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 14px var(--color-shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
header nav img {
  height: 44px;
  width: auto;
  margin-right: 16px;
}
header nav ul {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
}
header nav ul li {
  list-style: none;
}
header nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-primary);
  padding: 6px 10px;
  border-radius: 5px;
  text-decoration: none;
  transition: color 0.16s, background 0.18s;
}
header nav ul li a:hover, header nav ul li a:focus {
  background: var(--color-accent);
  color: var(--color-accent-contrast);
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--color-accent);
  color: #fff;
  padding: 13px 28px;
  border-radius: 24px;
  letter-spacing: 0.02em;
  border: none;
  font-size: 1.11rem;
  font-weight: 600;
  margin-left: 16px;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(152, 92, 24, 0.05);
  text-shadow: 0 2px 12px rgba(30,30,30,0.02);
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.14s, transform 0.12s;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 6px 24px rgba(80, 60, 10, 0.15);
}

/* ===============
   HERO/BANNERS
================= */
.hero {
  background: #fff;
  padding: 48px 0;
  margin-bottom: 60px;
  box-shadow: 0 8px 48px 0 var(--color-shadow);
  display: flex;
}
.hero .container {
  display: flex;
  align-items: center;
  min-height: 240px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 12px;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.7rem;
}
.hero p {
  font-size: 1.22rem;
  margin-bottom: 18px;
  color: #3a3a3a;
}
.hero .cta-btn {
  margin-top: 10px;
}

.cta-banner {
  margin-top: 40px;
  margin-bottom: 60px;
  background: var(--color-bg-alt);
  padding: 40px 0 48px 0;
  box-shadow: 0 2px 18px var(--color-shadow);
}
.cta-banner .content-wrapper {
  align-items: center;
  text-align: center;
}
.cta-banner h2 {
  color: var(--color-primary);
  font-size: 2rem;
  margin-bottom: 14px;
}
.cta-banner .cta-btn {
  margin: 10px 0 17px 0;
}
.cta-banner p {
  color: #3a3a3a;
  font-size: 1.08rem;
}

/* ==========
   SECTIONS
============= */
section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 0;
}
section:last-child {
  margin-bottom: 0;
}

.about-snippet, .services-overview, .about, .consulting, .values, .categories, .featured-products, .services-snippet, .giftlists, .benefits, .legal, .contact, .testimonials {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}

.services, .featured-products {
  background: var(--color-bg-alt);
}

/* ===============
   FOOTER
================= */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 36px 0 24px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
footer nav {
  margin-bottom: 12px;
}
footer nav a {
  color: #fff;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  text-decoration: underline;
  margin-right: 16px;
  opacity: 0.82;
  transition: opacity 0.2s, color 0.25s;
}
footer nav a:hover {
  color: var(--color-accent);
  opacity: 1;
}
footer .text-section {
  color: #f5f5f5;
  font-size: 0.97em;
}

/* =========================
   ICONS & LISTS
========================== */
ul li, ol li {
  margin-bottom: 12px;
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}
ul li img, .categories ul li img, .giftlists ul li img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: grayscale(100%) contrast(1.1);
}
.categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.categories ul li {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 18px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.07rem;
  color: var(--color-primary);
  min-width: 128px;
  margin-bottom: 0;
  box-shadow: 0 1px 4px rgba(60,60,60,.07);
  border: 1px solid #ededed;
  transition: box-shadow 0.16s, background 0.19s;
}
.categories ul li:hover {
  background: #ececec;
  box-shadow: 0 4px 14px rgba(80,80,80,0.08);
}


/****************************
  SEARCH & FORMS
*****************************/
.catalog-search {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 18px;
}
.catalog-search label {
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 500;
}
.catalog-search input[type="text"] {
  border: 1px solid var(--color-border);
  border-radius: 7px;
  padding: 10px 14px;
  font-size: 1rem;
  font-family: 'Roboto',sans-serif;
  background: #fafbfc;
  color: var(--color-primary);
  transition: border-color 0.15s;
}
.catalog-search input[type="text"]:focus {
  border-color: var(--color-accent);
  outline: none;
}
.catalog-search button {
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.22s, box-shadow 0.13s;
}
.catalog-search button:hover, .catalog-search button:focus {
  background: var(--color-primary);
  box-shadow: 0 2px 12px rgba(40,30,20,0.11);
}

/****************************
  MOBILE NAVIGATION MENU
*****************************/
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--color-primary);
  cursor: pointer;
  margin-left: 12px;
  z-index: 201;
  transition: color 0.18s, transform 0.18s;
}
.mobile-menu-toggle:focus {
  color: var(--color-accent);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-overlay);
  z-index: 202;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.19,1,.22,1), opacity 0.19s;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.8rem;
  color: #fff;
  position: absolute;
  top: 20px;
  right: 28px;
  cursor: pointer;
  z-index: 10;
  transition: color 0.19s;
}
.mobile-menu-close:focus {
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  margin-top: 86px;
  margin-left: 34px;
  width: 88vw;
}
.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 16px 0;
  border-radius: 4px;
  width: 100%;
  transition: background 0.20s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-accent);
  background: rgba(255,255,255,0.045);
}

/* Hide desktop nav on mobile, display burger */
@media (max-width: 1023px) {
  header nav ul, header .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
    opacity: 0 !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/***************************
  COOKIE CONSENT BANNER
****************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 5000;
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 -4px 24px rgba(40,40,40,.15);
  border-top: 1px solid #dedede;
  padding: 24px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
  animation: cookieSlideIn 0.4s cubic-bezier(.42,.14,.32,.93);
}
@keyframes cookieSlideIn {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cookie-banner p {
  color: var(--color-ink-light);
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 22px;
  margin-top: 10px;
}
.cookie-banner button {
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 24px;
  border-radius: 24px;
  margin-right: 8px;
  cursor: pointer;
  font-weight: 650;
  transition: background 0.16s, color 0.14s, box-shadow 0.12s;
  outline: none;
}
.cookie-accept {
  background: var(--color-primary);
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: var(--color-accent);
}
.cookie-reject {
  background: #ececec;
  color: var(--color-primary);
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #fff9e7;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}
.cookie-settings {
  background: none;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #f7f7f7;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(30,30,30,0.66);
  z-index: 5010;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-dialog {
  background: #fff;
  color: var(--color-primary);
  max-width: 420px;
  border-radius: 18px;
  padding: 38px 32px 32px 32px;
  box-shadow: 0 8px 64px rgba(20,20,20,.16);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalPop 0.28s cubic-bezier(.62,.1,.4,.87);
  position: relative;
}
@keyframes modalPop {
  from { transform: scale(0.92) translateY(20px); opacity: 0.5; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-dialog h2 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 12px 0;
  border-bottom: 1px solid #ededed;
  gap: 12px;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category label {
  font-weight: 500;
  font-size: 1.08rem;
  color: var(--color-primary);
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--color-accent);
  width: 22px; height: 22px;
}
.cookie-modal-dialog .modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 18px;
}
.cookie-modal-close {
  background: none;
  border: none;
  position: absolute;
  top: 18px; right: 24px;
  font-size: 1.65rem;
  color: var(--color-primary);
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--color-accent);
}

/**************************
  GENERAL FLEX SPACING
***************************/
@media (max-width: 1200px) {
  .container {
    max-width: 970px;
  }
}
@media (max-width:991px) {
  .container {
    max-width: 100%;
    padding-left: 10px; padding-right: 10px;
  }
  .content-wrapper, .footer .content-wrapper {
    gap: 14px;
  }
  .card-container, .content-grid, .categories ul, .product-cards, .service-cards {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    padding: 0 8px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .card, .product-card, .service-card {
    padding: 22px 9px;
    min-width: 70vw;
    font-size: 1em;
  }
  .product-cards, .service-cards {
    flex-direction: column;
    gap: 14px;
  }
  .categories ul {
    flex-direction: column;
    gap: 8px;
  }
  .categories ul li, .giftlists ul li {
    padding: 12px 16px;
    font-size: 1em;
    min-width: 140px;
  }
  .testimonial-card {
    flex-direction: column;
    padding: 14px 9px;
    gap: 8px;
    font-size: 1em;
  }
  .hero {
    min-height: 0;
    padding: 28px 0;
  }
  .hero h1 {
    font-size: 1.7rem;
    margin-bottom: 10px;
  }
  .hero p {
    font-size: 1.07rem;
  }
  .cta-banner {
    padding: 22px 0 26px 0;
  }
  section {
    padding: 22px 0;
    margin-bottom: 32px;
  }
  footer {
    padding: 26px 0 14px 0;
  }
  .text-image-section {
    flex-direction: column;
    gap: 15px;
  }
  .content-grid {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.27rem; }
  h2 { font-size: 1.07rem; }
  .hero .container { min-height: unset; }
  .cookie-modal-dialog { max-width: 98vw; padding: 16px 5vw 18px 5vw; }
}

/******************************
  MICRO-INTERACTIONS
*******************************/
button, .cta-btn, .card, .card *, .product-card, .service-card, .categories ul li {
  transition: background 0.19s, color 0.15s, box-shadow 0.14s, border-color 0.14s, transform 0.12s;
}

/**********
  MISC
**********/
::-webkit-scrollbar {
  width: 11px;
  background: #E9E9E9;
}
::-webkit-scrollbar-thumb {
  background: #adadad;
  border-radius: 12px;
}
.hr {
  width: 100%;
  border: none;
  border-top: 1px solid #eee;
  margin: 36px 0;
}

/***********************************
  FORM COMPONENTS (fallback baseline)
***********************************/
input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
}
input[type="text"], textarea {
  border: 1px solid #E6E6E6;
  border-radius: 6px;
  padding: 9px 14px;
  margin-bottom: 12px;
  background: #fbfbfb;
  color: #242424;
  transition: border-color 0.16s;
}
input[type="text"]:focus, textarea:focus {
  border-color: var(--color-accent);
  outline: none;
}
button:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/***********************************
  MONOCHROME-SOPHISTICATED
***********************************/
body, .container, .content-wrapper, section, .card, .product-card, .service-card, .categories ul li, .testimonial-card {
  /* Enforce high-contrast, elegant look */
  background: #fff;
  color: #232323;
}
h1, h2, h3, h4, h5, h6 {
  color: #111;
  text-shadow: 0 2px 10px rgba(120,120,120,0.06);
}
.card, .product-card, .service-card {
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 2px 12px 0 rgba(60,60,60,0.07);
}
.categories ul li, .giftlists ul li {
  background: #FAFAFA;
  color: #232323;
  border: 1px solid #EAEAEA;
}
section {
  background: #fff;
}

/***********************************
  PRINT FRIENDLY
***********************************/
@media print {
  * { background: #fff !important; color: #000 !important; box-shadow: none !important; text-shadow: none !important; }
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
}
