

:root {
  --c-bg: #FAF8F5;
  --c-fg: #2A2420;
  --c-muted: #9B8B7F;
  --c-accent: #D4956F;
  
  --c-light: #F5F1ED;
  --c-dark: #3D3530;
  --c-accent-light: #E8C4A0;
  
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  
  --font-display: 'Lora', 'Garamond', serif;
  --font-body: 'Inter', '-apple-system', 'BlinkMacSystemFont', sans-serif;
  
  --z-base: 0;
  --z-sticky: 10;
  --z-modal: 100;
  --z-tooltip: 1000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background-color: var(--c-bg);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1.6;
  color: var(--c-fg);
  background-color: var(--c-bg);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--c-dark);
}

h1 {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: var(--space-4);
}

h2 {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: var(--space-3);
}

h3 {
  font-size: clamp(20px, 2.5vw, 32px);
  margin-bottom: var(--space-2);
}

p {
  margin-bottom: var(--space-2);
  font-size: clamp(14px, 1vw, 18px);
}

small, .caption {
  font-size: 12px;
  color: var(--c-muted);
}

a {
  color: var(--c-accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--c-dark);
}

a:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
}

button, input[type="button"], input[type="submit"] {
  font-family: var(--font-body);
  font-size: clamp(14px, 1vw, 16px);
  padding: var(--space-2) var(--space-4);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

button:focus-visible,
input[type="button"]:focus-visible,
input[type="submit"]:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
}

.btn-primary {
  background-color: var(--c-accent);
  color: var(--c-bg);
}

.btn-primary:hover {
  background-color: var(--c-dark);
}

.btn-secondary {
  background-color: var(--c-light);
  color: var(--c-dark);
  border: 1px solid var(--c-muted);
}

.btn-secondary:hover {
  background-color: var(--c-muted);
  color: var(--c-bg);
}

.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-4);
}

@media (max-width: 640px) {
  .container {
    padding-inline: var(--space-3);
  }
}

header {
  background-color: var(--c-bg);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--c-light);
}

.header-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-4);
}

.logo-mark {
  width: 48px;
  height: 48px;
  display: block;
}

.logo-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-name {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  color: var(--c-dark);
}

@media (max-width: 640px) {
  .header-wrapper {
    padding-inline: var(--space-3);
  }
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
  padding: var(--space-6) 0;
  position: relative;
  min-height: 500px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-heading {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: var(--space-4);
}

.hero-lead {
  font-size: clamp(16px, 1.2vw, 20px);
  color: var(--c-muted);
  margin-bottom: var(--space-4);
  line-height: 1.7;
}

.hero-image {
  position: relative;
  width: 100%;
  
  height: 100%;
  background-color: var(--c-accent-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    min-height: auto;
  }
  
  .hero-image {
    order: -1;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: var(--space-4) 0;
    gap: var(--space-3);
  }
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-4);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-4);
}

@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
}

.flex-row {
  display: flex;
  gap: var(--space-4);
  align-items: center;
}

.flex-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

@media (max-width: 640px) {
  .flex-row {
    flex-direction: column;
    gap: var(--space-3);
  }
}

section {
  padding: var(--space-6) 0;
}

@media (max-width: 640px) {
  section {
    padding: var(--space-4) 0;
  }
}

.section-heading {
  text-align: center;
  margin-inline: auto;
  max-width: 600px;
  margin-bottom: var(--space-4);
}

.section-lead {
  text-align: center;
  margin-inline: auto;
  max-width: 600px;
  margin-bottom: var(--space-5);
  font-size: clamp(16px, 1.1vw, 18px);
  color: var(--c-muted);
  line-height: 1.7;
}

.card {
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-3);
}

.card-icon img,
.card-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.card-heading {
  font-size: clamp(18px, 1.5vw, 24px);
  margin-bottom: var(--space-2);
  color: var(--c-dark);
}

.card-body {
  color: var(--c-muted);
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1.6;
  flex-grow: 1;
}

.card-meta {
  font-size: 12px;
  color: var(--c-muted);
  margin-top: var(--space-3);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}

.split-section.reversed {
  direction: rtl;
}

.split-section.reversed > * {
  direction: ltr;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.split-image {
  position: relative;
  width: 100%;
  
  min-height: 350px;
  height: 100%;
  background-color: var(--c-accent-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.split-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .split-section {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  
  .split-section.reversed {
    direction: ltr;
  }
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  position: relative;
  padding-left: var(--space-4);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--c-accent-light);
}

.timeline-step {
  position: relative;
  padding-left: var(--space-4);
}

.timeline-step::before {
  content: '';
  position: absolute;
  left: -11px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--c-accent);
  border: 2px solid var(--c-bg);
}

.timeline-number {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 32px);
  font-weight: 700;
  color: var(--c-accent);
  margin-right: var(--space-2);
}

.timeline-heading {
  font-size: clamp(18px, 1.5vw, 24px);
  margin-bottom: var(--space-1);
  color: var(--c-dark);
}

.timeline-body {
  color: var(--c-muted);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .timeline {
    padding-left: var(--space-3);
  }
  
  .timeline-step {
    padding-left: var(--space-3);
  }
}

.product-card {
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}

.product-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  background-color: var(--c-accent-light);
  overflow: hidden;
}

.product-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-content {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-heading {
  font-size: clamp(18px, 1.5vw, 22px);
  color: var(--c-dark);
  margin-bottom: var(--space-2);
}

.product-price {
  font-family: var(--font-display);
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 700;
  color: var(--c-accent);
  margin-bottom: var(--space-2);
}

.product-description {
  color: var(--c-muted);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.6;
  margin-bottom: var(--space-3);
  flex-grow: 1;
}

.product-cta {
  display: inline-block;
}

.faq-item {
  background-color: #FFFFFF;
  padding: var(--space-4);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.faq-question {
  font-weight: 600;
  color: var(--c-dark);
  font-size: clamp(16px, 1.1vw, 18px);
  margin-bottom: var(--space-2);
}

.faq-answer {
  color: var(--c-muted);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.6;
}

.testimonial {
  background-color: #FFFFFF;
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.2vw, 20px);
  font-style: italic;
  color: var(--c-dark);
  margin-bottom: var(--space-3);
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: var(--c-dark);
  font-size: clamp(14px, 1vw, 16px);
}

.testimonial-role {
  font-size: 12px;
  color: var(--c-muted);
}

.section-light {
  background-color: var(--c-bg);
  color: var(--c-fg);
}

.section-dark {
  background-color: #2A2420;
  color: #FFFFFF;
}

.section-dark h2,
.section-dark h3,
.section-dark .section-lead {
  color: #FFFFFF;
}

.section-dark a {
  color: var(--c-accent-light);
}

.section-dark .card {
  background-color: #3D3530;
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.section-dark .card-heading {
  color: #FFFFFF;
}

.section-dark .card-body,
.section-dark .card-meta {
  color: #E0D7D0;
}

footer {
  background-color: var(--c-dark);
  color: var(--c-light);
  padding: var(--space-6) 0 var(--space-4);
  margin-top: var(--space-6);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}

.footer-section h3 {
  color: #FFFFFF;
  margin-bottom: var(--space-3);
  font-size: clamp(16px, 1.2vw, 20px);
}

.footer-link {
  display: block;
  color: var(--c-light);
  margin-bottom: var(--space-2);
  font-size: clamp(14px, 1vw, 16px);
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--c-accent-light);
}

.footer-link:focus-visible {
  outline: 2px solid var(--c-accent-light);
  outline-offset: 2px;
}

.footer-address {
  font-size: clamp(12px, 0.95vw, 14px);
  line-height: 1.7;
  color: var(--c-light);
}

.footer-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin-bottom: var(--space-4);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: 12px;
  color: var(--c-muted);
}

@media (max-width: 640px) {
  footer {
    padding: var(--space-4) 0 var(--space-3);
  }
  
  .footer-content {
    gap: var(--space-3);
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact-form {
  max-width: 600px;
  margin-inline: auto;
}

.form-group {
  margin-bottom: var(--space-4);
  display: flex;
  flex-direction: column;
}

label {
  display: block;
  margin-bottom: var(--space-1);
  font-weight: 500;
  font-size: 14px;
  color: var(--c-dark);
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  font-family: var(--font-body);
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--c-light);
  border-radius: var(--radius-md);
  font-size: clamp(14px, 1vw, 16px);
  color: var(--c-fg);
  background-color: #FFFFFF;
}

input[type="text"]:focus-visible,
input[type="email"]:focus-visible,
input[type="tel"]:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
  border-color: var(--c-accent);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.text-center {
  text-align: center;
}

.hidden {
  display: none;
}

@media (max-width: 640px) {
  .hide-mobile {
    display: none;
  }
}

@media (min-width: 641px) {
  .show-mobile {
    display: none;
  }
}

.footer-section { padding: 0; }

.btn-primary h1, .btn-primary h2, .btn-primary h3 { color: #fff; }

html { color: #111111 !important; }
.btn-primary { color: #ffffff !important; }
.btn-secondary:hover { color: #ffffff !important; }

header { color: #111111 !important; }
.hero-image { color: #111111 !important; }

.card { color: #111111 !important; }
.split-image { color: #111111 !important; }
.timeline::before { color: #111111 !important; }
.timeline-step::before { color: #ffffff !important; }

.product-card { color: #111111 !important; }
.product-image { color: #111111 !important; }

.faq-item { color: #111111 !important; }

.testimonial { color: #111111 !important; }
.footer-divider { color: #111111 !important; }

.hero-image img,
.split-image img,
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.btn-primary h1, .btn-primary h2, .btn-primary h3 { color: #fff; }

html { color: #111111 !important; }
.btn-primary { color: #ffffff !important; }
.btn-secondary:hover { color: #ffffff !important; }
header { color: #111111 !important; }
.hero-image { color: #111111 !important; }
.card { color: #111111 !important; }
.split-image { color: #111111 !important; }
.timeline::before { color: #111111 !important; }
.timeline-step::before { color: #ffffff !important; }
.product-card { color: #111111 !important; }
.product-image { color: #111111 !important; }
.faq-item { color: #111111 !important; }
.testimonial { color: #111111 !important; }
.footer-divider { color: #111111 !important; }

.hero-image img,
.split-image img,
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* wh-heading-contrast */
.btn-primary h1, .btn-primary h2, .btn-primary h3 { color: #fff; }

/* wh-contrast-fix */
/* Auto-injected: text color did not meet 4.5:1 against declared background. */
html { color: #111111 !important; }
.btn-primary { color: #ffffff !important; }
.btn-secondary:hover { color: #ffffff !important; }
header { color: #111111 !important; }
.hero-image { color: #111111 !important; }
.card { color: #111111 !important; }
.split-image { color: #111111 !important; }
.timeline::before { color: #111111 !important; }
.timeline-step::before { color: #ffffff !important; }
.product-card { color: #111111 !important; }
.product-image { color: #111111 !important; }
.faq-item { color: #111111 !important; }
.testimonial { color: #111111 !important; }
.footer-divider { color: #111111 !important; }

/* wh-img-fill */
.hero-image img,
.split-image img,
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
