:root {
  --color-bg-dark: #131311;
  --color-bg-dark-alt: #1c1c19;
  --color-orange: #f0a731;
  --color-orange-dark: #d4881a;
  --color-orange-light: #f7c877;
  --color-cream: #f7f4ee;
  --color-cream-alt: #efece4;
  --color-text-dark: #1a1a18;
  --color-text-light: #f7f4ee;
  --color-gray: #6f6d66;
  --color-border: #e4e0d6;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1160px;
  --font: 'Manrope', system-ui, -apple-system, Segoe UI, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--color-text-dark);
  background: var(--color-cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { margin: 0; line-height: 1.15; }
p { margin: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-orange-dark);
  margin-bottom: 14px;
}
.eyebrow-light { color: var(--color-orange-light); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary {
  background: var(--color-orange);
  color: var(--color-text-dark);
  box-shadow: 0 8px 20px rgba(240, 167, 49, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(240, 167, 49, 0.45); }
.btn-dark {
  background: var(--color-text-dark);
  color: var(--color-text-light);
}
.btn-dark:hover { transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 238, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.brand-logo { width: 38px; height: 38px; }
.brand-name {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
  font-size: 14.5px;
}
.main-nav a { opacity: 0.75; transition: opacity 0.15s ease; }
.main-nav a:hover { opacity: 1; }
.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 100%;
  height: 2px;
  background: var(--color-text-dark);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  padding: 56px 0 40px;
  text-align: center;
  overflow: hidden;
}
.badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--color-cream-alt);
  border: 1px solid var(--color-border);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-orange-dark);
  margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(56px, 13vw, 148px);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(100deg, var(--color-text-dark) 0%, var(--color-orange-dark) 55%, var(--color-orange-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.hero-visual {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}
.hero-house { width: 100%; }
.hero-floating-card {
  position: absolute;
  right: -4%;
  bottom: 12%;
  width: 250px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: left;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.hero-floating-card p {
  font-size: 13.5px;
  color: var(--color-gray);
  margin-bottom: 14px;
  line-height: 1.5;
}
.hero-floating-card .btn { padding: 10px 20px; font-size: 13px; }

.hero-pillars {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.pillar { display: flex; flex-direction: column; gap: 6px; }
.pillar-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-orange-dark);
}
.pillar-label {
  font-size: 13.5px;
  color: var(--color-gray);
  max-width: 160px;
}

/* ---------- About ---------- */
.about { padding: 90px 0; }
.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.about-text h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 18px;
}
.about-text p {
  color: var(--color-gray);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 22px;
}
.about-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 15px;
}
.about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-orange);
}
.about-image {
  background: var(--color-cream-alt);
  border-radius: var(--radius-lg);
  padding: 20px;
}

/* ---------- Categories ---------- */
.categories { padding: 90px 0; background: var(--color-cream-alt); }
.section-heading { text-align: center; margin-bottom: 48px; }
.section-heading h2 { font-size: clamp(28px, 3.4vw, 40px); }

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.category-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
}
.category-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.category-card:hover .category-img img {
  transform: scale(1.05);
}
.category-body { padding: 22px 24px 26px; }
.category-card h3 { font-size: 17px; margin-bottom: 8px; }
.category-card p { font-size: 14px; color: var(--color-gray); line-height: 1.5; }

/* ---------- Advantages (dark banner) ---------- */
.advantages { background: var(--color-bg-dark); color: var(--color-text-light); padding: 90px 0; }
.advantages-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.advantages-text h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  margin-bottom: 26px;
}
.advantages-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
  font-size: 15.5px;
  margin-bottom: 16px;
  color: rgba(247, 244, 238, 0.9);
}
.check {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-orange);
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}
.advantages-image {
  background: var(--color-bg-dark-alt);
  border-radius: var(--radius-lg);
  padding: 20px;
}

/* ---------- Process ---------- */
.process { padding: 90px 0; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.process-card {
  background: var(--color-cream-alt);
  border-radius: var(--radius-md);
  padding: 30px 26px;
}
.process-card--accent {
  background: var(--color-orange);
}
.process-card--accent .process-num,
.process-card--accent h3 { color: var(--color-text-dark); }
.process-card--accent p { color: rgba(26, 26, 24, 0.75); }
.process-num {
  display: block;
  font-weight: 800;
  font-size: 14px;
  color: var(--color-orange-dark);
  margin-bottom: 14px;
}
.process-card h3 { font-size: 17px; margin-bottom: 8px; }
.process-card p { font-size: 14px; color: var(--color-gray); line-height: 1.5; }

/* ---------- Reviews ---------- */
.reviews { padding: 90px 0; background: var(--color-cream-alt); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
}
.stars { color: var(--color-orange); letter-spacing: 2px; margin-bottom: 16px; }
.review-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-dark);
  margin-bottom: 22px;
}
.review-author { display: flex; flex-direction: column; }
.review-name { font-weight: 700; font-size: 14.5px; }
.review-role { font-size: 13px; color: var(--color-gray); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--color-orange-dark), var(--color-orange));
  color: var(--color-text-dark);
  padding: 70px 0;
  overflow: hidden;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 40px;
}
.cta-text h2 { font-size: clamp(28px, 3.4vw, 42px); margin-bottom: 14px; }
.cta-text p { font-size: 16px; margin-bottom: 26px; opacity: 0.85; }
.cta-image { max-width: 360px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-bg-dark);
  color: rgba(247, 244, 238, 0.75);
  padding-top: 70px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(247, 244, 238, 0.1);
}
.footer-brand .brand-name {
  display: block;
  color: var(--color-text-light);
  font-size: 20px;
  margin: 16px 0 10px;
}
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 260px; }
.footer-logo-badge {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
}
.footer-col h4 {
  color: var(--color-text-light);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.footer-col a {
  padding: 0.6rem;
  display: block;
  font-size: 14.5px;
  margin-bottom: 12px;
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--color-orange-light); }
.social-row { display: flex; gap: 12px; }
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(247, 244, 238, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover { background: var(--color-orange); border-color: var(--color-orange); color: var(--color-text-dark); }

.footer-wordmark {
  font-size: clamp(52px, 12vw, 150px);
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(247, 244, 238, 0.18);
  padding: 30px 0 10px;
  user-select: none;
}
.footer-bottom {
  padding: 24px 0 30px;
  text-align: center;
  font-size: 13px;
  border-top: 1px solid rgba(247, 244, 238, 0.1);
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-cream);
    padding: 20px 24px 28px;
    gap: 18px;
    border-bottom: 1px solid var(--color-border);
  }

  .about-inner,
  .advantages-inner,
  .cta-inner { grid-template-columns: 1fr; }
  .about-image, .advantages-image { order: -1; }
  .cta-image { max-width: 280px; margin: 0 auto; }

  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }

  .hero-floating-card { position: static; width: 100%; margin-top: 24px; }
}

@media (max-width: 560px) {
  .category-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .hero-pillars { gap: 32px; }
}
