@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Syne:wght@400;500;600;700&display=swap');

:root {
  /* Palette */
  --c-bg: #F9F9F9;
  --c-surface: #FFFFFF;
  --c-text-main: #2F3E46;
  --c-text-muted: #6B7C85;
  --c-accent: #E07A5F;
  --c-accent-hover: #C9644A;
  --c-dark: #0A0A0A;
  --c-border: #EAEAEA;

  /* Typography */
  --font-display: 'Syne', sans-serif;
  --font-body: 'Manrope', sans-serif;

  /* Spacing */
  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(1rem, 2vw, 1.5rem);
  --space-md: clamp(2rem, 4vw, 3rem);
  --space-lg: clamp(4rem, 8vw, 6rem);
  --space-xl: clamp(6rem, 12vw, 10rem);

  /* Layout */
  --container-width: 1200px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --shadow-card: 0 10px 40px -10px rgba(47, 62, 70, 0.08);
  --shadow-hover: 0 20px 60px -15px rgba(47, 62, 70, 0.15);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--c-bg);
  color: var(--c-text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button, input, textarea { font-family: inherit; border: none; outline: none; }

/* Typography System */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--c-dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.lk-titling--xl { font-size: clamp(3rem, 6vw + 1rem, 5.5rem); font-weight: 700; }
.lk-titling--lg { font-size: clamp(2rem, 4vw + 0.5rem, 3.5rem); font-weight: 600; }
.lk-titling--md { font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.25rem); font-weight: 600; }

.lk-text--lead { font-size: clamp(1.125rem, 1.5vw, 1.35rem); color: var(--c-text-muted); font-weight: 300; }
.lk-text--body { font-size: clamp(1rem, 1vw, 1.125rem); color: var(--c-text-main); }

.lk-eyebrow {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-accent);
  font-weight: 600;
  display: block;
  margin-bottom: var(--space-sm);
}

/* Layout Utilities */
.lk-wrap {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.lk-section {
  padding: var(--space-lg) 0;
  position: relative;
}

.lk-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  align-items: center;
}

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

.lk-flex-center { display: flex; align-items: center; justify-content: center; }
.lk-flex-between { display: flex; align-items: center; justify-content: space-between; }
.lk-flex-col { display: flex; flex-direction: column; }

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

/* Header / Nav */
.lk-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249, 249, 249, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 1.25rem 0;
}

.lk-nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lk-nav__list { display: flex; gap: var(--space-md); }
.lk-nav__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-text-main);
  position: relative;
}

.lk-nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-accent);
  transition: var(--transition);
}

.lk-nav__link:hover { color: var(--c-accent); }
.lk-nav__link:hover::after { width: 100%; }

/* Buttons */
.lk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.lk-btn--primary {
  background: var(--c-accent);
  color: #fff;
  box-shadow: 0 4px 15px rgba(224, 122, 95, 0.3);
}

.lk-btn--primary:hover {
  background: var(--c-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(224, 122, 95, 0.4);
}

.lk-btn--outline {
  background: transparent;
  border: 2px solid var(--c-border);
  color: var(--c-text-main);
}

.lk-btn--outline:hover {
  border-color: var(--c-dark);
  background: var(--c-dark);
  color: #fff;
}

/* Components */
.lk-card {
  background: var(--c-surface);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 1px solid transparent;
}

.lk-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(224, 122, 95, 0.2);
}

.lk-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(224, 122, 95, 0.1);
  color: var(--c-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  font-size: 1.5rem;
}

.lk-stat__number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--c-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.lk-faq__item {
  border-bottom: 1px solid var(--c-border);
  padding: var(--space-sm) 0;
}

.lk-faq__question {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
}

/* Hero Specifics */
.lk-hero {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-lg);
}

.lk-hero__img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.lk-hero__img-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 1s ease;
}

.lk-hero__img-wrapper:hover img {
  transform: scale(1.05);
}

/* Footer */
.lk-footer {
  background: var(--c-dark);
  color: #fff;
  padding: var(--space-lg) 0 2rem;
}

.lk-footer__logo {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: block;
}

.lk-footer__col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.lk-footer__link {
  display: block;
  color: #889;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.lk-footer__link:hover { color: var(--c-accent); }

.lk-footer__bottom {
  margin-top: var(--space-lg);
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  color: #667;
  font-size: 0.875rem;
}
*{box-sizing:border-box}
img,svg,video{max-width:100%;height:auto}
body{margin:0}
html{-webkit-text-size-adjust:100%}
