/* --- CSS RESET & NORMALIZE --- */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, figcaption, blockquote, dl, dd {
  margin: 0;
  padding: 0;
  font-weight: inherit;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.5;
  border: none;
  background: none;
  outline: none;
  color: inherit;
}
button:hover, button:focus {
  cursor: pointer;
}

/* --- VARIABLES FOR MONOCHROME SOPHISTICATED --- */
:root {
  --black: #181818;
  --off-black: #212121;
  --white: #fff;
  --gray-light: #e5e5e5;
  --gray: #b2b2b2;
  --gray-dark: #333;
  --brand-primary: #181818; /* Instead of green, real monochrome */
  --brand-secondary: #838383;
  --brand-accent: #f6f5eb;
  --accent-hover: #edebe0;
  --shadow: rgba(24,24,24,0.12);
  --border-radius: 12px;
  --transition: 0.2s cubic-bezier(.5,.2,.3,1);

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

  --fz-xs: 14px;
  --fz-sm: 16px;
  --fz-md: 18px;
  --fz-lg: 24px;
  --fz-xl: 32px;
  --fz-xxl: 48px;
}

/* --- TYPOGRAPHY --- */
html {
  font-size: 16px;
}
body {
  color: var(--off-black);
  background: var(--white);
  font-family: var(--font-body);
  font-size: var(--fz-sm);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, .hero h1, .about-hero h1, .thank-you h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fz-xxl);
  color: var(--black);
  line-height: 1.16;
  margin-bottom: 24px;
}
h2, .hero h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fz-xl);
  color: var(--off-black);
  margin-bottom: 20px;
}
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fz-lg);
  color: var(--off-black);
  margin-bottom: 10px;
}
p, li {
  font-family: var(--font-body);
  font-size: var(--fz-sm);
  color: var(--black);
}
strong {
  font-weight: 600;
  color: var(--off-black);
}
.subheadline {
  font-size: var(--fz-lg);
  color: var(--gray-dark);
  margin-bottom: 32px;
  max-width: 600px;
}

/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--brand-accent);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px var(--shadow);
  padding: 32px 24px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.content-grid, .feature-grid, .service-cards, .service-list, .footer-nav {
  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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: var(--gray-light);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 18px 0 rgba(24,24,24,0.06);
  color: var(--black);
  min-width: 240px;
  max-width: 500px;
  /* High contrast for readability */
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HEADER & NAVIGATION --- */
header {
  width: 100%;
  background: var(--white);
  box-shadow: 0 3px 16px 0 rgba(24,24,24,0.08);
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
.logo img {
  height: 48px;
  width: auto;
}
nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
nav a {
  padding: 8px 0;
  font-family: var(--font-display);
  font-size: var(--fz-sm);
  color: var(--off-black);
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
nav a.active, nav a:focus, nav a:hover {
  color: var(--black);
}
nav a.cta {
  background: var(--black);
  color: var(--white);
  border-radius: 28px;
  padding: 10px 28px;
  margin-left: 12px;
  font-weight: 700;
  font-size: var(--fz-sm);
  box-shadow: 0 2px 12px 0 rgba(24,24,24,0.08);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
nav a.cta:hover, nav a.cta:focus {
  background: var(--gray-dark);
  color: var(--brand-accent);
  box-shadow: 0 4px 24px 0 rgba(24,24,24,0.12);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--black);
  cursor: pointer;
  margin-left: 16px;
  z-index: 110;
}

/* --- HERO SECTIONS --- */
.hero,
.about-hero,
.services-hero,
.products-hero,
.inspiration-hero,
.testimonials-hero,
.thank-you,
.policy-hero {
  background: var(--white);
  padding: 60px 0 48px 0;
  box-shadow: 0 6px 36px 0 rgba(24,24,24,0.02);
  display: flex;
  align-items: center;
}
.hero .content-wrapper,
.about-hero .content-wrapper,
.services-hero .content-wrapper,
.products-hero .content-wrapper,
.inspiration-hero .content-wrapper,
.testimonials-hero .content-wrapper,
.thank-you .content-wrapper,
.policy-hero .content-wrapper {
  align-items: flex-start;
}

/* --- BUTTONS, CTAs --- */
a.cta, button.cta {
  display: inline-block;
  background: var(--off-black);
  color: var(--white);
  border-radius: 28px;
  padding: 12px 36px;
  font-family: var(--font-display);
  font-size: var(--fz-md);
  font-weight: 700;
  box-shadow: 0 2px 12px 0 rgba(24,24,24,0.06);
  letter-spacing: 0.04em;
  border: none;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  outline: none;
}
a.cta:hover, a.cta:focus, button.cta:hover, button.cta:focus {
  background: var(--black);
  color: var(--brand-accent);
  box-shadow: 0 8px 24px 0 rgba(24,24,24,0.12);
  transform: translateY(-2px) scale(1.04);
}
.main-cta {
  margin-top: 20px;
}

/* --- FEATURES GRID & SERVICE CARDS --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 20px;
}
.feature-grid li {
  background: var(--brand-accent);
  border-radius: var(--border-radius);
  padding: 32px 20px;
  min-width: 200px;
  max-width: 280px;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px 0 rgba(24,24,24,0.04);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.service-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 28px 20px;
  min-width: 240px;
  max-width: 320px;
  box-shadow: 0 4px 18px 0 rgba(24,24,24,0.05);
  margin-bottom: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: 0 8px 32px 0 rgba(24,24,24,0.12);
  transform: translateY(-3px) scale(1.03);
}
.service-price {
  margin-top: 12px;
  font-size: var(--fz-sm);
  color: var(--gray-dark);
  letter-spacing: 0.02em;
  font-weight: 500;
}

/* --- TESTIMONIALS --- */
.testimonial-card span {
  color: var(--black);
  margin-left: 8px;
  font-size: var(--fz-sm);
  font-family: var(--font-display);
  letter-spacing: .07em;
  font-weight: 800;
}
.testimonial-card strong {
  margin-top: 0;
  font-size: var(--fz-sm);
  color: var(--black);
}

/* --- FOOTER --- */
footer {
  background: var(--white);
  border-top: 2px solid var(--gray-light);
  padding: 32px 0 0 0;
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-nav a {
  color: var(--gray-dark);
  font-size: var(--fz-xs);
  padding: 6px 2px;
  transition: color var(--transition);
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--black);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
  font-size: var(--fz-xs);
  color: var(--gray);
}
.footer-brand img {
  height: 28px;
  width: auto;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--white);
  z-index: 200;
  transform: translateX(100%);
  box-shadow: 0 4px 32px 0 rgba(24,24,24,0.16);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 24px;
  transition: transform 0.35s cubic-bezier(.72,.08,.4,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2rem;
  margin: 4px 24px 20px 16px;
  background: none;
  border: none;
  color: var(--off-black);
  cursor: pointer;
  align-self: flex-end;
  z-index: 202;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding-left: 32px;
}
.mobile-nav a {
  font-size: 1.2rem;
  color: var(--black);
  font-family: var(--font-display);
  padding: 12px 0;
  font-weight: 600;
  transition: color var(--transition);
  border-bottom: 1px solid var(--gray-light);
  margin-right: 20px;
  min-width: 160px;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--gray-dark);
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 12px 20px 12px;
  box-shadow: 0 -6px 24px 0 rgba(24,24,24,0.15);
  font-size: var(--fz-sm);
  animation: cookie-slide-in 0.5s cubic-bezier(.75,.05,.5,1);
}
@keyframes cookie-slide-in {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: var(--white);
  margin-bottom: 12px;
  text-align: center;
  max-width: 640px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.cookie-banner button {
  border-radius: 24px;
  font-size: var(--fz-sm);
  font-weight: 600;
  padding: 10px 24px;
  border: none;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.cookie-banner .accept {
  background: var(--white);
  color: var(--black);
}
.cookie-banner .accept:hover {
  background: var(--gray-light);
}
.cookie-banner .reject {
  background: var(--gray);
  color: var(--black);
}
.cookie-banner .reject:hover {
  background: var(--gray-light);
  color: var(--off-black);
}
.cookie-banner .settings {
  background: none;
  color: var(--white);
  text-decoration: underline;
}
.cookie-banner .settings:hover {
  color: var(--gray-light);
  text-decoration: none;
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 400;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(24,24,24,0.50);
  display: none; /* Show when .open */
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
  animation: cookie-modal-in 0.35s cubic-bezier(.82,.07,.32,1);
}
@keyframes cookie-modal-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: var(--white);
  color: var(--black);
  border-radius: var(--border-radius);
  box-shadow: 0 8px 40px 0 rgba(24,24,24,0.22);
  max-width: 480px;
  width: 92vw;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal h2 {
  margin-bottom: 8px;
  font-size: var(--fz-lg);
  font-weight: 700;
  color: var(--black);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-categories label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fz-sm);
}
.cookie-categories input[type="checkbox"] {
  accent-color: var(--black);
}
.cookie-preference-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 22px;
  top: 18px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--gray-dark);
  cursor: pointer;
}

/* --- CARDS, SPECIAL SECTIONS, DETAILS --- */
.card, .service-card, .feature-grid li {
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover, .feature-grid li:hover {
  box-shadow: 0 10px 32px 0 rgba(24,24,24,0.13);
  transform: translateY(-1.5px) scale(1.015);
}

/* --- LISTS & DETAILS --- */
ul, ol {
  margin-left: 1.1em;
}
ul li, ol li {
  margin-bottom: 10px;
  line-height: 1.6;
}
.features ul, .values ul, .team ul, .policy-content ul {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 18px;
}

/* --- MISCALLENEOUS --- */
::-webkit-scrollbar {
  width: 10px;
  background: var(--gray-light);
}
::-webkit-scrollbar-thumb {
  background: var(--gray);
  border-radius: 6px;
}

hr {
  border: none;
  border-top: 1px solid var(--gray-light);
  margin: 36px 0;
}

/* --- SPACING --- */
div + section, section + section {
  margin-top: 52px;
}
@media (max-width: 768px) {
  .section, section {
    padding: 28px 10px;
    margin-bottom: 40px;
  }
}

/* --- RESPONSIVE LAYOUT --- */
@media (max-width: 1180px) {
  .container {
    max-width: 1000px;
  }
}
@media (max-width: 900px) {
  nav {
    gap: 12px;
  }
  .service-cards {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  h1, .hero h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.12rem; }
  .container, .content-wrapper { padding: 0 6px; }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .feature-grid, .service-cards {
    flex-direction: column;
    gap: 20px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .testimonial-card {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 520px) {
  h1, .hero h1 { font-size: 1.22rem; }
  h2 { font-size: 1.1rem; }
  .service-card { padding: 18px 9px; }
}

/* --- FORMS, LINKS --- */
input, textarea, select {
  border-radius: var(--border-radius);
  border: 1px solid var(--gray-light);
  background: var(--brand-accent);
  padding: 12px;
  font-size: var(--fz-sm);
  margin-bottom: 18px;
  transition: border var(--transition), box-shadow var(--transition);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--black);
  box-shadow: 0 2px 8px 0 rgba(24,24,24,0.13);
}
label {
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 4px;
  font-size: var(--fz-xs);
  display: block;
}
a {
  transition: color var(--transition);
  cursor: pointer;
}
a:hover, a:focus {
  color: var(--gray-dark);
}
a.cta, button.cta {
  margin-top: 16px;
}

/* --- SPECIAL BLOCKS & STATES --- */
blockquote {
  border-left: 2px solid var(--black);
  padding: 20px 24px;
  background: var(--gray-light);
  font-style: italic;
  color: var(--black);
  border-radius: var(--border-radius);
  margin: 28px 0;
}

/* --- Z-INDEX LAYERS --- */
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
  z-index: 105;
}
.mobile-menu.open {
  z-index: 200;
}
.cookie-modal-overlay.open {
  z-index: 400;
}

/* --- VISUAL HIERARCHY & MICRO-INTERACTIONS --- */
.card:active, .service-card:active, .feature-grid li:active {
  transform: scale(0.98) translateY(1px);
  box-shadow: 0 2px 8px 0 rgba(24,24,24,0.09);
}
.button:focus, .card:focus, .service-card:focus, a:focus {
  outline: 2px solid var(--black);
  outline-offset: 1px;
}

/* --- POLICIES, LEGAL, REFERENCE --- */
.policy-content, .policy-hero {
  background: var(--brand-accent);
  border-radius: var(--border-radius);
  margin-top: 24px;
  margin-bottom: 24px;
  color: var(--black);
}
.policy-hero h1 {
  color: var(--black);
}
.policy-content ul {
  list-style-type: disc inside;
}

/* --- THANK YOU PAGE --- */
.thank-you .content-wrapper {
  align-items: center;
  text-align: center;
}
.thank-you p {
  margin-top: 12px;
  margin-bottom: 8px;
  color: var(--off-black);
}

/* --- MAP SECTION PLACEHOLDER --- */
.map {
  background: var(--gray-light);
  border-radius: var(--border-radius);
  padding: 32px 24px;
  margin-bottom: 48px;
}
.map h2 {
  margin-bottom: 10px;
}

/* --- SECTION HEADINGS CENTRALIZATION --- */
.section h2, section h2 {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: var(--fz-xl);
  letter-spacing: 0.03em;
}

/* --- END --- */
