:root {
  --pink: #e62e68;
  --ink: #293038;
  --muted: #68717a;
  --line: #e5e8ec;
  --soft: #f7f8fa;
  --metal: #b9c0c7;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(18, 28, 38, 0.16);
  --header-h: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(230, 46, 104, 0.45);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px clamp(18px, 4vw, 62px);
  color: var(--white);
  background: rgba(16, 20, 24, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, height 0.25s ease;
}

.site-header.scrolled,
.site-header.menu-open {
  height: 72px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(18, 28, 38, 0.13), 0 1px 0 rgba(230, 46, 104, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  width: min(245px, 50vw);
  height: 60px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: currentColor;
  padding: 9px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-h) + 50px) clamp(18px, 6vw, 90px) 104px;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
  overflow: hidden;
}

.hero::before,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero::before {
  content: "";
  z-index: -2;
  background-image: url("slider.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: contrast(1.06) saturate(1.08);
  animation: heroIntro 1.2s ease both;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(11, 15, 20, 0.68) 0%, rgba(11, 15, 20, 0.43) 42%, rgba(11, 15, 20, 0.08) 100%),
    linear-gradient(180deg, rgba(11, 15, 20, 0.14), rgba(11, 15, 20, 0.32));
}

.hero-content {
  width: min(850px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(44px, 5.4vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
}

h1 span {
  display: block;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}

h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.18;
  overflow-wrap: normal;
  word-break: normal;
}

p,
a {
  overflow-wrap: anywhere;
}

.hero-text {
  width: min(660px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 15px 28px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  overflow: hidden;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -55%;
  width: 45%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
}

.btn:hover::before {
  left: 115%;
}

.btn-primary {
  border-color: var(--pink);
  background: var(--pink);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0,35);
   backdrop-filter: blur(14px);
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: 28px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  transform: translateX(-50%);
}

.scroll-indicator span {
  position: absolute;
  left: 50%;
  top: 9px;
  width: 4px;
  height: 8px;
  background: var(--white);
  transform: translateX(-50%);
  animation: scrollPulse 1.5s ease-in-out infinite;
}

.section {
  padding: clamp(64px, 7.4vw, 108px) clamp(18px, 5vw, 72px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.two-col,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.section-heading {
  width: min(780px, 100%);
  margin-bottom: 38px;
}

.about,
.gallery {
  background: #fafafa;
}

.quality {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(41, 48, 56, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(41, 48, 56, 0.035) 1px, transparent 1px),
    var(--soft);
  background-size: 34px 34px;
}

.about-text {
  color: var(--muted);
  font-size: 18px;
}

.about-text p:first-child {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.45;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 72px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(18, 28, 38, 0.06);
}

.stat-card span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--pink);
  border: 1px solid rgba(230, 46, 104, 0.28);
  font-weight: 900;
}

.stat-card strong {
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-card,
.feature-card {
  min-height: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.product-card {
  display: grid;
  grid-template-rows: 260px 1fr;
  overflow: hidden;
  position: relative;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-card div,
.feature-card {
  padding: 26px;
}

.product-card p,
.feature-card p {
  margin: 0;
  color: var(--muted);
}

.product-card:hover,
.feature-card:hover {
  transform: translateY(-7px);
  border-color: rgba(230, 46, 104, 0.4);
  box-shadow: var(--shadow);
}

.product-card:hover img {
  transform: scale(1.06);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-link span {
  color: var(--pink);
  transition: transform 0.25s ease;
}

.product-card:hover .card-link span {
  transform: translateX(5px);
}

.quality-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.quality-list span {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 58px;
  padding: 14px 18px;
  border: 1px solid transparent;
  border-left: 4px solid var(--pink);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(18, 28, 38, 0.06);
  font-weight: 800;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.quality-list span::after {
  content: "+";
  margin-left: auto;
  color: var(--pink);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.quality-list span:hover {
  transform: translateY(-5px);
  border-color: rgba(230, 46, 104, 0.38);
  box-shadow: 0 18px 48px rgba(18, 28, 38, 0.12);
}

.quality-list span:hover::after {
  opacity: 1;
  transform: translateX(0);
}

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

.feature-card {
  min-height: 190px;
  border-top: 3px solid transparent;
}

.feature-card:hover {
  border-top-color: var(--pink);
  background: var(--white);
}

.feature-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: var(--pink);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  border: 1px solid rgba(230, 46, 104, 0.28);
  padding: 9px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  grid-auto-rows: 155px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: var(--metal);
  cursor: zoom-in;
}

.gallery-item.tall {
  grid-row: span 3;
}

.gallery-item.wide {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(11, 15, 20, 0.58));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item span {
  position: absolute;
  inset: auto 18px 18px auto;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.62);
  font-size: 30px;
  line-height: 1;
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: saturate(1.06);
}

.gallery-item:hover::after,
.gallery-item:hover span {
  opacity: 1;
}

.gallery-item:hover span {
  transform: translateY(0) scale(1);
}

.contact-panel {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 20px 60px rgba(18, 28, 38, 0.08);
}

.contact-panel a {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 850;
}

.contact-panel a:last-of-type {
  border-bottom: 0;
}

.contact-panel p {
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.map-section {
  width: 100vw;
  height: 30vh;
  min-height: 260px;
  margin-left: calc(50% - 50vw);
  background: var(--soft);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.85) contrast(1.05);
}

.site-footer {
  padding: 50px clamp(18px, 5vw, 72px) 18px;
  color: rgba(255, 255, 255, 0.78);
  background: #20262d;
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.45fr 0.85fr 1.15fr;
  gap: 34px;
}

.footer-brand img {
  width: 230px;
  height: 78px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(1.08);
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 9px;
}

.copyright {
  width: min(1180px, 100%);
  margin: 30px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(10px, 1.3vw, 13px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fixed-actions {
  position: fixed;
  right: clamp(15px, 2vw, 26px);
  bottom: clamp(18px, 3vw, 30px);
  z-index: 30;
  display: grid;
  gap: 15px;
}

.fixed-actions a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 0;
  transition: transform 0.22s ease, filter 0.22s ease;
}

.fixed-actions img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.18));
}

.fixed-actions a:hover {
  transform: translateY(-3px) scale(1.04);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 26px;
  background: rgba(10, 14, 18, 0.86);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 96vw);
  max-height: 86vh;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: transparent;
  font-size: 32px;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

.gallery .reveal {
  transform: scale(0.98) translateY(16px);
}

.gallery .reveal.visible {
  transform: scale(1) translateY(0);
}

@keyframes heroIntro {
  from {
    transform: scale(1.035);
  }
  to {
    transform: scale(1);
  }
}

@keyframes scrollPulse {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 17px);
  }
}

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

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 66px;
  }

  .site-header,
  .site-header.scrolled,
  .site-header.menu-open {
    height: var(--header-h);
    padding-inline: 16px;
  }

  .brand {
    width: min(190px, 56vw);
    height: 50px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    display: grid;
    width: min(270px, calc(100vw - 32px));
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 12px 10px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 100svh;
    padding: 102px 18px 86px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(25px, 6.8vw, 40px);
    line-height: 1.02;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    width: min(360px, 100%);
  }

  .two-col,
  .contact-grid,
  .product-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-rows: 230px 1fr;
  }

  .quality-list {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: span 1;
    grid-row: span 2;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .hero-actions {
    display: grid;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding-inline: 16px;
  }

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

  .fixed-actions {
    right: 12px;
    bottom: 14px;
    gap: 12px;
  }

  .copyright {
    font-size: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
