:root {
  --bg: #f5f2ee;
  --bg-alt: #efebe7;
  --text: #171717;
  --muted: #66615b;
  --line: #ddd4cd;
  --accent: #e28f43;
  --accent-dark: #c9772d;
  --card: rgba(251, 249, 247, 0.88);
  --shadow: 0 20px 45px rgba(23, 23, 23, 0.08);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(226,143,67,.08), transparent 35%),
    radial-gradient(circle at bottom right, rgba(226,143,67,.06), transparent 28%),
    var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .92em; }

.page-graphics { position: fixed; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.orb {
  position: absolute;
  width: 36vw;
  height: 36vw;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .18;
  animation: float 16s ease-in-out infinite;
}
.orb-1 { top: -10vw; right: -8vw; background: rgba(226,143,67,.45); }
.orb-2 { bottom: -12vw; left: -10vw; background: rgba(201,119,45,.32); animation-delay: -6s; }
.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(226,143,67,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226,143,67,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 80%);
}

.container {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section { padding: 96px 0; position: relative; }
.alt { background: linear-gradient(180deg, rgba(239,235,231,.92), rgba(239,235,231,.82)); }
.center-text { text-align: center; }
.section-narrow { width: min(840px, 100%); }
.section-head { width: min(820px, 100%); margin: 0 auto 48px; }
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

h1, h2, h3, p { margin: 0; }
h1 {
  font-size: clamp(40px, 7vw, 74px);
  line-height: 1.03;
  letter-spacing: -0.04em;
}
h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
h3 {
  font-size: 26px;
  line-height: 1.2;
}
p { font-size: 18px; color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(245, 242, 238, 0.76);
  border-bottom: 1px solid rgba(221, 212, 205, 0.72);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-weight: 600;
  color: var(--muted);
}
.nav-links a:hover { color: var(--text); }
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 12px;
  background: var(--accent);
  color: #111;
  font-weight: 800;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
  box-shadow: 0 10px 30px rgba(226,143,67,.18);
}
.btn:hover { transform: translateY(-1px); background: #e69b57; box-shadow: 0 14px 34px rgba(226,143,67,.25); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  box-shadow: none;
}
.btn-small { min-height: 44px; padding: 0 18px; }
.light-outline { border-color: rgba(255,255,255,.35); color: white; }

.hero {
  padding-top: 0;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  overflow: clip;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15,15,15,.66) 0%, rgba(15,15,15,.48) 38%, rgba(15,15,15,.32) 100%),
    linear-gradient(180deg, rgba(10,10,10,.18), rgba(10,10,10,.46));
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
  padding: 140px 0 96px;
}
.hero-copy, .hero-copy p, .hero-copy .eyebrow, .hero-copy h1 { color: white; }
.hero-copy p {
  max-width: 760px;
  margin-top: 20px;
  font-size: 21px;
  color: rgba(255,255,255,.84);
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-card,
.card,
.mini-card,
.contact-card,
.product-slider {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.hero-card { padding: 28px; }
.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.hero-logo {
  width: 110px;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(226,143,67,.15));
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.hero-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(241,230,219,.85);
  font-weight: 700;
  font-size: 14px;
}
.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.hero-stat-grid div {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(221,212,205,.8);
}
.hero-stat-grid strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 8px;
}
.hero-stat-grid span { color: var(--muted); font-size: 15px; }

.cards { display: grid; gap: 22px; }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-5 { grid-template-columns: repeat(5, 1fr); }
.card, .mini-card { padding: 28px; transition: transform .28s ease, box-shadow .28s ease; }
.card:hover, .mini-card:hover, .contact-card:hover, .product-slider:hover { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(23,23,23,.11); }
.card h3, .mini-card h3, .list-item h3 { font-size: 24px; margin-bottom: 12px; }
.mini-card p, .card p, .list-item p { font-size: 17px; }
.icon-card { min-height: 260px; }
.accent-card { background: linear-gradient(180deg, rgba(250,243,236,.98), rgba(246,235,223,.95)); }
.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}
.list-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 54px; }
.list-item {
  padding: 0 0 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
  transition: transform .25s ease;
}
.list-item:hover { transform: translateX(6px); }

.product-slider { padding: 18px; margin-bottom: 26px; }
.slider-window {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
}
.slider-track {
  display: flex;
  transition: transform .45s ease;
}
.slide {
  min-width: 100%;
  opacity: .65;
  transition: opacity .3s ease;
}
.slide.active { opacity: 1; }
.slide img {
  width: 100%;
  height: min(58vw, 560px);
  object-fit: cover;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: rgba(23,23,23,.65);
  color: white;
  font-size: 30px;
  cursor: pointer;
}
.slider-btn.prev { left: 16px; }
.slider-btn.next { right: 16px; }
.slider-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 16px 0 8px;
}
.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #d7ccc3;
  cursor: pointer;
}
.slider-dots button.active { background: var(--accent); transform: scale(1.2); }
.slider-note {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

.contact-section {
  position: relative;
  overflow: hidden;
  color: white;
}
.contact-bg {
  position: absolute;
  inset: 0;
}
.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18,18,18,.74) 0%, rgba(18,18,18,.55) 42%, rgba(18,18,18,.42) 100%),
    linear-gradient(180deg, rgba(18,18,18,.10), rgba(18,18,18,.36));
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 1;
  min-height: 520px;
}
.contact-copy p { color: rgba(255,255,255,.86); max-width: 620px; }
.contact-card {
  padding: 32px;
  background: rgba(251, 249, 247, 0.9);
  border: 1px solid rgba(255,255,255,.22);
}
.contact-card p { color: var(--text); }
.contact-card p + p { margin-top: 14px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.site-footer { padding: 24px 0 40px; border-top: 1px solid rgba(221, 212, 205, 0.72); }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

@keyframes float {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(0,-18px,0) scale(1.04); }
}

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

@media (max-width: 900px) {
  .nav-links,
  .nav > .btn-small { display: none; }
  .menu-toggle { display: block; }
  .site-header.open .nav {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .site-header.open .nav-links {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 14px;
    padding-bottom: 8px;
  }
  .hero-grid,
  .two-col,
  .contact-grid,
  .list-grid,
  .cards-2 { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-grid { padding: 120px 0 72px; }
}

@media (max-width: 720px) {
  .section { padding: 78px 0; }
  .cards-5,
  .cards-4 { grid-template-columns: 1fr; }
  .brand span { display: none; }
  .hero-copy p { font-size: 18px; }
  .slide img { height: 340px; }
  .slider-btn { width: 42px; height: 42px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
