.elementor-kit-6{--e-global-color-primary:#4D5B47;--e-global-color-secondary:#F5F1E8;--e-global-color-text:#C46A3C;--e-global-typography-primary-font-family:"Fraunces";--e-global-typography-primary-font-size:18px;--e-global-typography-primary-font-weight:700;--e-global-typography-secondary-font-family:"IBM Plex Sans";--e-global-typography-secondary-font-size:13px;--e-global-typography-secondary-font-weight:600;--e-global-typography-text-font-family:"IBM Plex Sans";--e-global-typography-text-font-size:10px;--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 button,.elementor-kit-6 input[type="button"],.elementor-kit-6 input[type="submit"],.elementor-kit-6 .elementor-button{background-color:#C46A3C;font-family:"Fraunces", Sans-serif;font-size:18px;font-weight:400;line-height:18px;color:#FFFFFF;padding:12px 24px 12px 24px;}.elementor-kit-6 button:hover,.elementor-kit-6 button:focus,.elementor-kit-6 input[type="button"]:hover,.elementor-kit-6 input[type="button"]:focus,.elementor-kit-6 input[type="submit"]:hover,.elementor-kit-6 input[type="submit"]:focus,.elementor-kit-6 .elementor-button:hover,.elementor-kit-6 .elementor-button:focus{background-color:#4D5B47;color:#FFFFFF;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS *//* ==========================================
   DESIGN TOKENS
========================================== */

:root {
  --font-main: "Fraunces", serif;

  --text: #111;
  --muted: rgba(0,0,0,0.75);
  --border: rgba(0,0,0,0.08);

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 48px;
  --space-5: 80px;

  --radius: 16px;
}

/* ==========================================
   TYPOGRAPHY SYSTEM
========================================== */

.t-eyebrow {
  font-family: var(--font-main);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 12px;
}

.t-h2 {
  font-family: var(--font-main);
  font-size: 44px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin: 0;
}

.t-body {
  font-family: var(--font-main);
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.78;
}

/* ==========================================
   LAYOUT SYSTEM
========================================== */

.l-section {
  padding: var(--space-5) 0;
}

.l-container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

/* ==========================================
   GRID SYSTEM
========================================== */

.l-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ==========================================
   CARD SYSTEM
========================================== */

.c-card {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  transition: all 0.3s ease;
}

.c-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.c-card h3 {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 10px;
}

.c-card p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.75;
  margin: 0;
}

/* ==========================================
   SCROLL ANIMATION SYSTEM
========================================== */

.a-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.a-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   RESPONSIVE SYSTEM
========================================== */

/* TABLET */
@media (max-width: 1024px) {

  .t-h2 {
    font-size: 38px;
  }

  .l-grid-2 {
    gap: 20px;
  }

  .c-card {
    padding: 22px;
  }
}

/* MOBILE LANDSCAPE */
@media (max-width: 900px) and (orientation: landscape) {

  .t-h2 {
    font-size: 32px;
  }

  .l-grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .c-card {
    padding: 20px;
  }
}

/* MOBILE PORTRAIT */
@media (max-width: 767px) {

  .l-section {
    padding: 60px 0;
  }

  .t-h2 {
    font-size: 30px;
  }

  .t-body {
    font-size: 15px;
  }

  .l-grid-2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .c-card {
    padding: 20px;
  }

  .c-card h3 {
    font-size: 18px;
  }

  .c-card p {
    font-size: 15px;
  }
}

/* SMALL PHONES */
@media (max-width: 480px) {

  .t-h2 {
    font-size: 28px;
  }

  .c-card {
    padding: 18px;
  }
}/* End custom CSS */