@layer base {
:root {
  --color-background: #fdfaf5;
  --color-surface: #ffffff;
  --color-surface-alt: #f6f1e8;
  --color-text: #231f1a;
  --color-text-soft: #5f574b;
  --color-primary: #556b2f;
  --color-primary-soft: #7c8f55;
  --color-primary-muted: rgba(85, 107, 47, 0.08);
  --color-success: #2f8f5b;
  --color-warning: #c97a1a;
  --color-danger: #b84032;
  --color-border-subtle: #e0d5c4;
  --color-border-strong: #c2ad8e;
  --color-terracotta: #c46a3b;
  --color-brick: #8b3e29;
  --color-oak: #c9a36a;
  --color-stone: #d2c7b3;
  --gray-50: #f9f6f1;
  --gray-100: #f0e6d8;
  --gray-200: #e3d4bd;
  --gray-300: #d1bea0;
  --gray-400: #bca483;
  --gray-500: #9a8363;
  --gray-600: #78644b;
  --gray-700: #5a4a38;
  --gray-800: #3e3225;
  --gray-900: #251e16;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Cormorant Garamond", "Playfair Display", "Times New Roman", serif;
  --font-display: "Cormorant Garamond", "Playfair Display", "Times New Roman", serif;
  --font-mono: "SF Mono", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --line-height-tight: 1.2;
  --line-height-snug: 1.35;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.7;
  --space-0: 0;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
  --space-40: 10rem;
  --space-48: 12rem;
  --space-64: 16rem;
  --space-96: 24rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 999px;
  --shadow-soft: 0 8px 24px rgba(24, 16, 8, 0.08);
  --shadow-elevated: 0 18px 45px rgba(24, 16, 8, 0.18);
  --shadow-subtle: 0 1px 3px rgba(18, 10, 4, 0.12);
  --shadow-card: 0 14px 40px rgba(30, 22, 12, 0.14);
  --transition-fast: 120ms ease-out;
  --transition-normal: 200ms ease-out;
  --transition-slow: 320ms ease-out;
}

*, *::before, *::after {
  box-sizing: border-box;
}
#home-hero-heading{
  color: #fff;
}
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul,
ol,
fieldset,
legend,
pre {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: var(--font-size-md);
  line-height: var(--line-height-relaxed);
  background-color: var(--color-background);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  border: none;
  background: none;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
  padding-left: 0;
}

fieldset {
  border: 0;
}

textarea {
  resize: vertical;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--color-text);
  line-height: var(--line-height-tight);
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-4);
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  margin-bottom: var(--space-3);
}

h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin-bottom: var(--space-3);
}

h4 {
  font-size: 1.25rem;
  margin-bottom: var(--space-2);
}

h5 {
  font-size: 1.125rem;
  margin-bottom: var(--space-2);
}

h6 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

p {
  margin-bottom: var(--space-4);
  color: var(--color-text-soft);
}

strong,
b {
  font-weight: 600;
}

a[href] {
  color: var(--color-primary);
  transition: color var(--transition-normal), opacity var(--transition-fast);
}

a[href]:hover {
  color: var(--color-primary-soft);
}

a[href]:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

:focus:not(:focus-visible) {
  outline: none;
}

.visually-hidden,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.container-wide {
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--space-4);
  max-width: 1320px;
}

.section {
  padding-block: var(--space-12);
}

.section-alt {
  padding-block: var(--space-12);
  background: radial-gradient(circle at top, rgba(196, 106, 59, 0.06), transparent 55%), linear-gradient(to bottom, #fdfaf5 0%, #f6f1e8 100%);
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.flex-wrap {
  flex-wrap: wrap;
}

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

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: var(--space-2);
}

.gap-4 {
  gap: var(--space-4);
}

.gap-6 {
  gap: var(--space-6);
}

.gap-8 {
  gap: var(--space-8);
}

.grid {
  display: grid;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  background: linear-gradient(135deg, #556b2f 0%, #7c8f55 100%);
  color: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-normal), border-color var(--transition-fast), color var(--transition-fast);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-elevated);
  background: linear-gradient(135deg, #4b6129 0%, #74874f 100%);
}

.btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-subtle);
}

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-outline {
  background: rgba(253, 250, 245, 0.9);
  color: var(--color-primary);
  border-color: rgba(85, 107, 47, 0.4);
  box-shadow: var(--shadow-subtle);
}

.btn-outline:hover {
  background: rgba(246, 241, 232, 0.98);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(148, 121, 88, 0.35);
  color: var(--color-text);
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.72);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="search"],
input[type="password"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-subtle);
  background-color: rgba(255, 255, 255, 0.96);
  color: var(--color-text);
  font-size: var(--font-size-sm);
  line-height: 1.4;
  box-shadow: 0 1px 2px rgba(30, 18, 10, 0.05);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}

input::placeholder,
textarea::placeholder {
  color: rgba(95, 87, 75, 0.65);
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  border-color: rgba(85, 107, 47, 0.7);
  box-shadow: 0 0 0 1px rgba(85, 107, 47, 0.4);
}

input:disabled,
select:disabled,
textarea:disabled {
  background-color: rgba(244, 237, 226, 0.9);
  color: rgba(95, 87, 75, 0.8);
  cursor: not-allowed;
}

label {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-size: var(--font-size-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-700);
}

.card {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(252, 247, 238, 0.98));
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(195, 174, 140, 0.6);
}

.card-soft {
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.96);
  padding: var(--space-4);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(211, 199, 176, 0.8);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.7rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(196, 106, 59, 0.45);
  background: rgba(244, 229, 213, 0.95);
  font-size: var(--font-size-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-terracotta);
}

.badge-soft {
  border-color: rgba(120, 100, 75, 0.25);
  background: rgba(250, 247, 242, 0.98);
  color: var(--gray-700);
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.9rem;
  border-radius: var(--radius-full);
  background: rgba(85, 107, 47, 0.08);
  color: var(--gray-700);
  font-size: var(--font-size-xs);
}

.hero-full {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-overlay-warm {
  position: relative;
}

.hero-overlay-warm::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(196, 106, 59, 0.55), transparent 55%), radial-gradient(circle at bottom right, rgba(85, 107, 47, 0.58), transparent 52%), linear-gradient(135deg, rgba(15, 8, 4, 0.72), rgba(30, 16, 8, 0.88));
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative;
  color: #fff;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
}

.stats-item {
  min-width: 9rem;
}

.stats-number {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 500;
}

.text-xs {
  font-size: var(--font-size-xs);
}

.text-sm {
  font-size: var(--font-size-sm);
}

.text-md {
  font-size: var(--font-size-md);
}

.text-lg {
  font-size: var(--font-size-lg);
}

.text-muted {
  color: var(--color-text-soft);
}

.text-accent {
  color: var(--color-terracotta);
}

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

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

.border-top-brick {
  border-top: 3px solid rgba(139, 62, 41, 0.65);
}

.border-bottom-olive {
  border-bottom: 2px solid rgba(85, 107, 47, 0.45);
}

.bg-cream {
  background-color: #f6f1e8;
}

.bg-stone {
  background-color: var(--color-stone);
}

.bg-oak {
  background-color: #f2e3cd;
}

.bg-brick {
  background: radial-gradient(circle at top, rgba(196, 106, 59, 0.38), rgba(139, 62, 41, 0.96));
}

.shadow-soft {
  box-shadow: var(--shadow-soft);
}

.shadow-elevated {
  box-shadow: var(--shadow-elevated);
}

.rounded-sm {
  border-radius: var(--radius-sm);
}

.rounded-md {
  border-radius: var(--radius-md);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.rounded-full {
  border-radius: var(--radius-full);
}

.sticky-cta {
  position: fixed;
  inset-inline-end: var(--space-4);
  inset-block-end: var(--space-4);
  z-index: 40;
}

.sticky-cta-inner {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: radial-gradient(circle at top left, rgba(196, 106, 59, 0.28), transparent 60%), rgba(24, 14, 8, 0.75);
  padding: 0.4rem 0.4rem 0.4rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(236, 220, 198, 0.6);
  box-shadow: var(--shadow-elevated);
}

.sticky-cta-label {
  display: none;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 231, 215, 0.8);
  background: linear-gradient(135deg, #f7eee2, #fdf9f2);
  color: var(--color-primary);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.icon-button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-elevated);
}

.icon-button:active {
  transform: translateY(0);
  box-shadow: var(--shadow-subtle);
}

.header-blur {
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  background: linear-gradient(to bottom, rgba(253, 250, 245, 0.96), rgba(249, 241, 228, 0.92));
  border-bottom: 1px solid rgba(211, 191, 159, 0.72);
}

.nav-link {
  position: relative;
  padding-block: 0.2rem;
  font-size: var(--font-size-sm);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-700);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(196, 106, 59, 0.9), rgba(85, 107, 47, 0.9));
  transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  width: 100%;
}

.nav-link[aria-current="page"] {
  color: var(--color-primary);
}

.footer {
  background: radial-gradient(circle at top, rgba(21, 12, 7, 0.92), #110b07);
  color: rgba(252, 246, 235, 0.96);
}

.footer a[href] {
  color: rgba(252, 246, 235, 0.9);
}

.footer a[href]:hover {
  color: #fff;
}

.footer-disclaimer {
  font-size: var(--font-size-xs);
  color: rgba(232, 219, 201, 0.86);
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  border: 1px dashed rgba(148, 121, 88, 0.65);
  font-size: var(--font-size-xs);
  color: var(--gray-700);
  background: rgba(252, 247, 240, 0.96);
}

.carousel-dots {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.25);
}

.carousel-dot.is-active {
  width: 18px;
  background: linear-gradient(90deg, #c46a3b, #556b2f);
  border-color: transparent;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: var(--line-height-relaxed);
}

.masonry-grid {
  column-count: 1;
  column-gap: var(--space-4);
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: var(--space-4);
}

.stat-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: var(--font-size-xs);
  color: rgba(252, 246, 235, 0.85);
}

.ambient-border {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 18px 50px rgba(8, 3, 0, 0.65);
}

@media (min-width: 600px) {
  .container {
    padding-inline: var(--space-6);
  }

  .container-wide {
    padding-inline: var(--space-6);
  }

  .section,
  .section-alt {
    padding-block: var(--space-16);
  }

  .masonry-grid {
    column-count: 2;
  }

  .sticky-cta-label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-inline-end: 0.4rem;
    font-size: var(--font-size-xs);
    color: rgba(255, 250, 244, 0.95);
  }
}

@media (min-width: 900px) {
  .masonry-grid {
    column-count: 3;
  }

  .hero-full {
    min-height: 90vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
}