@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@300;400;500;600&family=Inter:wght@300;400;500&display=swap');

.win-page {
  --cream: #f0ece4;
  --paper: #f7f4ee;
  --charcoal: #2a2824;
  --rust: #c8482a;
  --rust-deep: #9c3620;
  --line: #cdc4b0;

  background: var(--cream);
  color: var(--charcoal);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
}

.win-page * {
  box-sizing: border-box;
}

.win-page .display {
  font-family: 'Archivo', -apple-system, sans-serif;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.win-page .eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
}

.win-page .wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

/* --- window-pane cross: signature mark --- */
.win-page .cross {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.win-page .cross::before,
.win-page .cross::after {
  content: '';
  position: absolute;
  background: var(--rust);
}
.win-page .cross::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
}
.win-page .cross::after {
  left: 50%;
  top: 0;
  height: 100%;
  width: 1px;
  transform: translateX(-50%);
}

/* --- breadcrumb --- */
.win-page .breadcrumb {
  padding: 20px 0 0;
  font-family: 'Archivo', sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a8577;
}
.win-page .breadcrumb a {
  color: #8a8577;
  text-decoration: none;
}
.win-page .breadcrumb a:hover {
  color: var(--rust);
}
.win-page .breadcrumb .rust {
  color: var(--rust);
}

/* --- hero --- */
.win-page .hero {
  padding: 40px 0 90px;
  background: transparent;
  border-bottom: none;
}
.win-page .hero .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.win-page .hero h1 {
  font-size: 42px;
  line-height: 1.14;
  margin: 18px 0 22px;
  font-weight: 300;
}
.win-page .hero p {
  color: #57534a;
  max-width: 440px;
  font-size: 16.5px;
  margin-bottom: 30px;
  line-height: 1.6;
}
.win-page .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--rust);
  color: var(--paper);
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 26px;
  text-decoration: none;
  border: 1px solid var(--rust);
  transition: background 0.2s ease, color 0.2s ease;
  font-weight: 500;
}
.win-page .btn:hover {
  background: transparent;
  color: var(--rust);
}
.win-page .hero-img {
  position: relative;
}
.win-page .hero-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.win-page .hero-img .cross {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
}
.win-page .hero-img .cross::before,
.win-page .hero-img .cross::after {
  background: var(--paper);
}

/* --- benefits --- */
.win-page .benefits {
  padding: 0 0 100px;
}
.win-page .benefits .head {
  border-top: 1px solid var(--line);
  padding-top: 46px;
  margin-bottom: 50px;
}
.win-page .benefits .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid var(--line);
}
.win-page .benefit {
  border-right: 1px solid var(--line);
  padding: 0 28px;
}
.win-page .benefit .cross {
  width: 18px;
  height: 18px;
  margin-bottom: 20px;
}
.win-page .benefit h3 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.3;
}
.win-page .benefit p {
  font-size: 13.5px;
  color: #6b675e;
  line-height: 1.5;
  margin: 0;
}

/* --- styles grid --- */
.win-page .styles {
  padding: 90px 0 100px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.win-page .styles .head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 54px;
}
.win-page .styles .head h2 {
  font-size: 32px;
  font-weight: 300;
  margin-top: 14px;
  line-height: 1.2;
}
.win-page .style-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.win-page .style-card {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.win-page .style-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.win-page .style-card .content {
  padding: 20px;
}
.win-page .style-card h4 {
  font-size: 15.5px;
  font-weight: 500;
  margin-bottom: 6px;
  line-height: 1.3;
}
.win-page .style-card p {
  font-size: 12.5px;
  color: #6b675e;
  line-height: 1.5;
  margin: 0;
}

/* --- gallery --- */
.win-page .gallery-section {
  padding: 90px 0;
}
.win-page .gallery-section .head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 46px;
}
.win-page .gallery-section .head h2 {
  font-size: 32px;
  font-weight: 300;
  margin-top: 14px;
  line-height: 1.2;
}
.win-page .gallery-wrap {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.win-page .gallery-row + .win-page .gallery-row {
  margin-top: 16px;
}
.win-page .gallery-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: win-scroll 34s linear infinite;
}
.win-page .gallery-track.reverse {
  animation-name: win-scroll-rev;
}
.win-page .gallery-track:hover {
  animation-play-state: paused;
}
.win-page .g-card {
  flex: 0 0 auto;
  width: 260px;
  height: 180px;
  border-radius: 2px;
  overflow: hidden;
}
.win-page .g-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(8%) saturate(85%);
  display: block;
}
@keyframes win-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes win-scroll-rev {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
.win-page .gallery-cta {
  text-align: center;
  margin-top: 40px;
}

/* --- FAQ --- */
.win-page .faq {
  padding: 90px 0 100px;
  border-top: 1px solid var(--line);
}
.win-page .faq .head {
  max-width: 560px;
  margin-bottom: 50px;
}
.win-page .faq .head h2 {
  font-size: 32px;
  font-weight: 300;
  margin-top: 14px;
  line-height: 1.2;
}
.win-page .faq-item {
  border-top: 1px solid var(--line);
  padding: 26px 0;
  max-width: 760px;
}
.win-page .faq-item h4 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.3;
}
.win-page .faq-item p {
  font-size: 14.5px;
  color: #57534a;
  line-height: 1.6;
  margin: 0;
}

/* --- trust strip --- */
.win-page .trust {
  padding: 46px 0;
}
.win-page .trust .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.win-page .trust .item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Archivo', sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #57534a;
}
.win-page .trust .cross {
  width: 16px;
  height: 16px;
}

/* --- CTA section --- */
.win-page .win-cta-section {
  background: var(--charcoal);
  color: var(--cream);
  padding: 80px 0;
  text-align: center;
}
.win-page .win-cta-section h2 {
  font-size: 32px;
  font-weight: 300;
  margin: 16px 0 30px;
  line-height: 1.2;
}
.win-page .win-cta-section .btn {
  background: var(--rust);
  border-color: var(--rust);
}

@media (max-width: 900px) {
  .win-page .hero .wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .win-page .benefits .grid {
    grid-template-columns: repeat(2, 1fr);
    border-bottom: 1px solid var(--line);
  }
  .win-page .benefit {
    margin-bottom: 0;
    padding: 24px 16px;
    border-bottom: 1px solid var(--line);
  }
  .win-page .benefit:nth-child(even) {
    border-right: none;
  }
  .win-page .benefit:nth-last-child(-n+2) {
    border-bottom: none;
  }
  .win-page .style-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .win-page .wrap {
    padding: 0 20px;
  }
}

@media (max-width: 600px) {
  .win-page .benefits .grid {
    grid-template-columns: 1fr;
  }
  .win-page .benefit {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .win-page .benefit:last-child {
    border-bottom: none;
  }
  .win-page .style-grid {
    grid-template-columns: 1fr;
  }
}
