* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #222222;
  line-height: 1.6;
}

/* HEADER */

.site-header {
  width: 100%;
  padding: 14px 18px;
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.logo {
  text-decoration: none;
  color: #222222;
  font-weight: bold;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.site-logo-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
  border-radius: 50%;
}

.site-header nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-header nav a {
  text-decoration: none;
  color: #222222;
  font-size: 14px;
  font-weight: bold;
}

/* HERO */

.hero {
  width: 100%;
  min-height: 92vh;
  position: relative;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 92vh;
  object-fit: cover;
  display: block;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.70), rgba(0,0,0,0.12));
}

.hero-content {
  position: absolute;
  bottom: 45px;
  left: 18px;
  right: 18px;
  z-index: 2;
  color: #ffffff;
  text-align: center;
}

.small-title {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-content h1 {
  font-size: 34px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 22px;
}

.hero-buttons,
.contact-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons a,
.contact-buttons a,
.main-btn,
.card-btn {
  text-decoration: none;
  background: #ffffff;
  color: #222222;
  padding: 13px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
  border: none;
}

.gold-btn,
.hero-buttons .gold-btn,
.main-btn,
.card-btn {
  background: #d8b98c;
  color: #ffffff;
}

/* ABOUT */

.about {
  padding: 55px 20px;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.about h2 {
  font-size: 30px;
  margin-bottom: 15px;
}

.about p {
  font-size: 16px;
  color: #555555;
  margin-bottom: 14px;
}

/* HOME CATEGORIES */

.home-categories {
  padding: 20px 18px 60px;
  background: #f8f6f2;
}

.category-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  margin: 25px auto;
  max-width: 1050px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.category-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.category-card div {
  padding: 25px 20px;
  text-align: center;
}

.category-card h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.category-card p {
  color: #555555;
  margin-bottom: 20px;
}

/* PAGE HERO */

.page-hero {
  padding: 70px 20px;
  background: #f8f6f2;
  text-align: center;
}

.page-hero h1 {
  font-size: 36px;
  margin-bottom: 12px;
}

.page-hero p {
  max-width: 650px;
  margin: 0 auto;
  color: #555555;
}

/* PRODUCTS */

.products {
  padding: 50px 18px;
  background: #ffffff;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1150px;
  margin: 0 auto;
}

.product-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 24px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.product-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  display: block;
}

.product-card h3 {
  margin-top: 18px;
  font-size: 20px;
  padding: 0 12px;
}

.product-card p {
  padding: 0 16px;
  color: #555555;
}

.code {
  color: #222222 !important;
  font-weight: bold;
  margin: 6px 0;
}

.price {
  margin: 10px 0 16px;
  font-weight: bold;
  color: #8a6a3d !important;
}

/* WHY */

.why {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

.why h2 {
  font-size: 30px;
  margin-bottom: 25px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}

.why-grid div {
  background: #f8f6f2;
  border-radius: 18px;
  padding: 24px 18px;
}

.why-grid h3 {
  margin-bottom: 8px;
}

/* HOW */

.how {
  padding: 60px 20px;
  background: #f8f6f2;
  text-align: center;
}

.how h2 {
  font-size: 30px;
  margin-bottom: 25px;
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 950px;
  margin: 0 auto;
}

.steps div {
  background: #ffffff;
  padding: 25px 18px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.steps span {
  width: 42px;
  height: 42px;
  background: #d8b98c;
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin-bottom: 12px;
}

/* CONTACT */

.contact {
  padding: 60px 20px;
  text-align: center;
  background: #222222;
  color: #ffffff;
}

.contact h2 {
  font-size: 30px;
  margin-bottom: 12px;
}

.contact p {
  max-width: 650px;
  margin: 0 auto 18px;
  color: #eeeeee;
}

.phone {
  font-weight: bold;
  color: #ffffff !important;
}

/* FOOTER */

footer {
  background: #111111;
  color: #ffffff;
  text-align: center;
  padding: 32px 18px;
  font-size: 14px;
}

footer h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.footer-links {
  margin: 18px 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
}

.copyright {
  color: #cccccc;
  font-size: 13px;
}

/* TABLET */

@media (min-width: 650px) {
  .product-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* DESKTOP */

@media (min-width: 900px) {
  .hero-content h1 {
    font-size: 56px;
  }

  .hero-content p {
    font-size: 19px;
  }

  .category-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .category-card.reverse img {
    order: 2;
  }

  .category-card img {
    height: 420px;
  }

  .category-card div {
    text-align: left;
    padding: 45px;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .product-card img {
    height: 330px;
  }
}.alteration-hero {
  width: 100%;
  min-height: 92vh;
  position: relative;
  overflow: hidden;
}

.alteration-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.70), rgba(0,0,0,0.12));
}