:root {
  --bg: #f8f4ee;
  --surface: #ffffff;
  --text: #1f140f;
  --muted: #705c53;
  --primary: #c92a2a;
  --primary-dark: #971f1f;
  --accent: #f5c247;
  --dark: #1f1715;
  --border: #ecd8ce;
  --radius: 16px;
  --shadow: 0 18px 35px rgba(49, 26, 15, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3, h4, p { margin-top: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.topbar {
  background: #15100f;
  color: #f7ebe2;
  font-size: 0.86rem;
}

.topbar-wrap {
  min-height: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), #e05656);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.brand strong { display: block; font-size: 1rem; }
.brand small { color: var(--muted); font-size: 0.82rem; font-weight: 700; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  font-weight: 700;
  color: #3f2c25;
  position: relative;
}

.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  height: 2px;
  width: 100%;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after { transform: scaleX(1); }

.btn {
  border: 0;
  border-radius: 12px;
  padding: 0.82rem 1.3rem;
  background: linear-gradient(135deg, var(--primary), #e05252);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 0.62rem 1rem; font-size: 0.88rem; }
.btn-ghost {
  background: #fff;
  color: #361f18;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  width: 44px;
  height: 44px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #2c1a15;
  margin: 4px auto;
}

.hero {
  position: relative;
  padding: 5rem 0;
  background:
    linear-gradient(110deg, rgba(27, 16, 12, 0.92), rgba(68, 24, 21, 0.72)),
    url("https://images.unsplash.com/photo-1544025162-d76694265947?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 78% 34%, rgba(255, 200, 90, 0.25), transparent 30%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.7rem;
  padding: 0.36rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1 {
  font-family: "Paytone One", sans-serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.12;
  margin-bottom: 1rem;
}

h2 {
  font-family: "Paytone One", sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.2;
}

.hero-content p { color: #f7e9df; max-width: 620px; }
.hero-actions { margin: 1.5rem 0 2rem; display: flex; gap: 0.8rem; flex-wrap: wrap; }

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 1fr));
  gap: 0.7rem;
  max-width: 560px;
}

.hero-metrics div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
}

.hero-metrics h3 { margin: 0; font-size: 1.5rem; }
.hero-metrics p { margin: 0.1rem 0 0; font-size: 0.86rem; }

.hero-media {
  position: relative;
  min-height: 460px;
}

.hero-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.promo-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  background: #fff;
  color: #281712;
  border-radius: 14px;
  padding: 0.9rem 1rem;
  box-shadow: var(--shadow);
}

.promo-badge span {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--primary);
}

.promo-badge strong {
  display: block;
  font-size: 1.2rem;
  margin: 0.2rem 0;
}

.promo-badge small { color: #6a5249; }

.section { padding: 5.4rem 0; }
.section-light-red { background: #fff2ef; }
.section-dark { background: linear-gradient(120deg, #1d1615, #2a1b18); color: #f8ebe3; }

#services.section-light-red {
  position: relative;
  background:
    linear-gradient(rgba(255, 242, 239, 0.9), rgba(255, 242, 239, 0.9)),
    url("https://images.unsplash.com/photo-1607623814075-e51df1bdc82f?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
}

.section-title {
  max-width: 700px;
  margin-bottom: 1.7rem;
}

.section-title .eyebrow {
  background: #ffe4db;
  border: 1px solid #ffc6b2;
  color: var(--primary);
}

.section-title p { color: var(--muted); }

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(190px, 1fr));
  gap: 1rem;
}

.category-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
}

.category-card:hover { transform: translateY(-4px); }
.category-card img { width: 100%; height: 230px; object-fit: cover; }
.category-info { padding: 1rem; }
.category-info p { color: var(--muted); margin: 0.3rem 0 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-media img {
  border-radius: 20px;
  min-height: 430px;
  object-fit: cover;
}

.about-content p { color: #e9d8ce; }
.about-content ul { padding-left: 1.1rem; margin: 1rem 0 1.4rem; }
.about-content li + li { margin-top: 0.4rem; }

.deal {
  margin-top: -34px;
  position: relative;
  z-index: 3;
}

.deal-wrap {
  background: linear-gradient(120deg, var(--primary), #922121);
  color: #fff;
  border-radius: 18px;
  padding: 1.3rem 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr auto;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.deal-wrap p { margin-bottom: 0; color: #ffe8dd; }

.deal-countdown {
  display: flex;
  gap: 0.7rem;
}

.deal-countdown div {
  min-width: 64px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  text-align: center;
  padding: 0.35rem;
}

.deal-countdown span {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
}

.deal-countdown small { font-size: 0.73rem; letter-spacing: 0.03em; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 1rem;
}

.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.product-card:hover { transform: translateY(-5px); }
.product-card img { width: 100%; height: 215px; object-fit: cover; }
.product-body { padding: 1rem; }
.product-body p { color: var(--muted); margin: 0.45rem 0 0.75rem; }

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-row strong {
  font-size: 1rem;
  color: #22120d;
}

.price-row a {
  font-weight: 700;
  color: var(--primary);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(190px, 1fr));
  gap: 1rem;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.service-card p { color: var(--muted); }

.cta-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 0.7rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border-radius: 10px;
  border: 1px solid #e4cdc2;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #ffd2c3;
  border-color: #e89980;
}

.site-footer {
  background: #120f0e;
  color: #e8d6ca;
  padding: 3rem 0 1.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1rem;
}

.footer-grid h3,
.footer-grid h4 { color: #fff; }
.footer-grid a { display: block; margin-bottom: 0.35rem; }

.footer-bottom {
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 0.8rem;
}

.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 0;
  background: linear-gradient(135deg, var(--primary), #ea5a5a);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
}

.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }

@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .cta-wrap {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .product-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }

  .deal-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .topbar-wrap {
    flex-direction: column;
    justify-content: center;
    padding: 0.5rem 0;
  }

  .menu-toggle { display: block; }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 4%;
    right: 4%;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: 12px;
    padding: 0.8rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    display: none;
  }

  .site-nav.open { display: flex; }

  .category-grid,
  .product-grid,
  .service-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section { padding: 4.2rem 0; }
}
