:root {
  --ink: #252018;
  --muted: #6f665b;
  --accent: #a52341;
  --accent-dark: #741b31;
  --gold: #c89b3c;
  --surface: #fffaf5;
  --line: #eadfd4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
  background: #fff;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--accent-dark);
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 250, 245, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 3px 18px rgba(37, 32, 24, 0.08);
}

.site-header .container {
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  float: left;
  color: var(--ink);
  line-height: 42px;
}

.brand:hover,
.brand:focus {
  color: var(--ink);
  text-decoration: none;
}

/*.brand-mark {
  display: inline-block;
  width: 42px;
  height: 42px;
  margin-right: 10px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--accent);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 38px;
  text-align: center;
  vertical-align: top;
}
*/
/*.brand-text {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  vertical-align: top;
}
*/
.site-nav,
.header-contact {
  float: right;
}

.site-header img{
  width: 40%;
  min-width: 40%;
}

.site-nav {
  margin-right: 28px;
  line-height: 42px;
}

.site-nav a {
  display: inline-block;
  margin-left: 22px;
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
}

.header-contact {
  padding: 8px 14px;
  border: 1px solid var(--accent-dark);
  border-radius: 4px;
  background: var(--accent-dark);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}

.header-contact span {
  color: #fff;
}

.header-contact a {
  font-weight: 700;
  color: #fff;
}

.header-contact a:hover{
  text-decoration: none;
}

.carousel-item img {
  height: auto;
  object-fit: cover;
}

.carousel-item::after {
  position: absolute;
  inset: 0;
  display: block;
  content: "";
/*  background: linear-gradient(90deg, rgba(25, 18, 15, 0.72), rgba(25, 18, 15, 0.18), rgba(25, 18, 15, 0.48));*/
}

.carousel-caption {
  right: auto;
  bottom: 20%;
  left: 15%;
  width: min(700px, 84%);
  padding: 10px;
  text-align: left;
  transform: translateY(50%);
  background: #1811116b;
}

.carousel-caption h1,
.carousel-caption h2 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 30px;
  line-height: 1.08;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.36);
  font-family: "Poppins", sans-serif;
}

.carousel-caption p {
  color: #fff6ef;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.2;
}

.welcome-section,
.products-section,
.contact-section {
  padding: 72px 0;
}

.welcome-section {
  background: var(--surface);
  text-align: center;
}

.welcome-section .container {
  max-width: 920px;
}

.section-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0;
}

.welcome-section h2,
.products-section h2,
.contact-section h2 {
  margin-bottom: 18px;
  font-size: 20px;
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
}

.welcome-section p {
  margin: 0 auto;
  color: var(--muted);
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  line-height: 1.8;
}

.products-section {
  background: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(37, 32, 24, 0.07);
  transition: all 0.56s ease-in-out;
}
.product-card:hover{
  transform: translateY(10px);
  transition: all 0.53s ease-in-out;
}

.product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  height: 400px;
}

.product-card {
  position: relative;
  overflow: hidden;
}
.product-card::before {
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  content: "";
  display: block;
  height: 100%;
  left: -95%;
  position: absolute;
  top: 0;
  transform: skewX(-25deg);
  width: 50%;
  z-index: 2;
}
.product-card:hover::before, .product-card:focus::before {
  -webkit-animation: product-card 0.85s;
          animation: product-card 0.85s;
}
@-webkit-keyframes product-card {
  100% {
    left: 125%;
  }
}
@keyframes product-card {
  100% {
    left: 125%;
  }
}


.product-card h3 {
  min-height: 52px;
  margin: 0;
  padding: 16px 16px 4px;
  font-size: 16px;
  line-height: 1.25;
  text-align: center;
}

.product-card a {
  display: block;
  margin: 0 16px 18px;
  padding: 10px 12px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  background: var(--accent);
  color: #fff;
  transition: all 0.55s ease-in;
}

.product-card a:hover,
.product-card a:focus {
  background: #fff;
  color: var(--accent);
  text-decoration: none;
  transition: all 0.65s ease-in;
  transform: translateY(10px);
}

.contact-section {
  background: var(--surface);
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.office-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.office-card h3 {
  margin-bottom: 14px;
  color: var(--accent-dark);
  font-size: 22px;
}

.office-card p {
  margin-bottom: 10px;
  color: var(--muted);
  font-family: "Montserrat", sans-serif;
  line-height: 1.7;
}

.office-card p a:hover{
  text-decoration: none;
}

.site-footer {
  padding: 22px 0;
  background: var(--accent);
  color: #fff;
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}

.products-section-suits{
  padding: 0px 0 70px 0;
}

@media (max-width: 1199px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .brand,
  .site-nav,
  .header-contact {
    float: none;
    display: block;
    text-align: center;
  }

  .site-nav {
    margin: 10px 0 0;
    line-height: 1.4;
  }

  .site-nav a {
    margin: 0 12px;
  }

  .header-contact {
    width: max-content;
    max-width: 100%;
    margin: 10px auto 0;
  }

  .carousel-item img {
    height: 460px;
  }

  .carousel-caption h1,
  .carousel-caption h2 {
    font-size: 42px;
  }

  .office-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .brand-text {
    font-size: 19px;
  }

  .carousel-item img {
    height: 390px;
  }

  .carousel-caption {
    left: 6%;
  }

  .carousel-caption h1,
  .carousel-caption h2 {
    font-size: 32px;
  }

  .carousel-caption p {
    font-size: 15px;
    text-align: center;
    margin-bottom: 0;
  }

  .welcome-section,
  .products-section,
  .contact-section {
    padding: 50px 0;
  }

  .welcome-section h2,
  .products-section h2,
  .contact-section h2 {
    font-size: 16px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .product-card h3 {
    min-height: 48px;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 17px;
  }

  .product-card a {
    margin-right: 12px;
    margin-left: 12px;
  }
  .carousel-caption {
  bottom: 30%;
}
.section-kicker {
  font-size: 25px;
}
}

@media (max-width: 460px) {
  .brand-mark {
    display: block;
    margin: 0 auto 6px;
  }

  .brand-text {
    display: block;
    line-height: 1.25;
  }

  .header-contact {
    font-size: 13px;
  }

  .carousel-caption h1,
  .carousel-caption h2 {
    font-size: 28px;
    text-align: center;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}
