:root {
  color-scheme: dark;
  --bg: #0b0c0f;
  --bg-2: #14161b;
  --panel: rgba(22, 24, 29, 0.82);
  --panel-strong: rgba(30, 32, 38, 0.94);
  --line: rgba(255, 255, 255, 0.08);
  --text: #f4f5f7;
  --muted: #b2b7c1;
  --muted-2: #88909d;
  --accent: #c89a5f;
  --accent-2: #8ca1b4;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Trebuchet MS", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(200, 154, 95, 0.16), transparent 26%),
    radial-gradient(circle at top right, rgba(140, 161, 180, 0.12), transparent 22%),
    linear-gradient(180deg, #101217 0%, #08090c 100%);
}

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

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

.site-shell {
  width: min(1240px, calc(100% - 28px));
  margin: 0 auto;
  padding: 18px 0 44px;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  position: sticky;
  top: 14px;
  z-index: 10;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(13, 15, 18, 0.82);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), #d7aa6f);
  color: #fff;
  font-size: 1.08rem;
  font-weight: 900;
  box-shadow: 0 14px 24px rgba(200, 154, 95, 0.22);
}

.brand-text {
  min-width: 0;
}

.brand-name {
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.92rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  color: #c7cbd3;
  font-weight: 700;
}

.nav a:hover,
.nav a:focus-visible {
  color: #fff;
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 30px;
  padding: 32px 0 12px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--accent-2);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-title h2,
.page-hero h1,
.contact-hero h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  max-width: 12ch;
}

.hero p,
.section-copy p,
.card p,
.contact-card p,
.page-hero p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #22384a, #3e6175);
  box-shadow: 0 16px 30px rgba(25, 44, 60, 0.26);
}

.btn-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.contact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #d9dde4;
  font-weight: 700;
}

.hero-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(24, 27, 32, 0.98), rgba(14, 15, 19, 0.98));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-photo {
  position: relative;
  min-height: 330px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1), transparent 18%),
    linear-gradient(135deg, #1b1d22 0%, #2a2e35 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo.placeholder {
  display: grid;
  place-items: center;
  padding: 26px;
  text-align: center;
}

.hero-photo .photo-note {
  max-width: 28ch;
  color: #eff1f4;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.stat {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.stat strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.08rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.88rem;
}

.page-hero {
  margin-top: 18px;
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(24, 26, 31, 0.96), rgba(12, 13, 16, 0.96));
  box-shadow: var(--shadow);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  max-width: 14ch;
}

.page-hero p {
  margin-top: 14px;
  max-width: 72ch;
}

.section {
  margin-top: 20px;
}

.section-title {
  margin-bottom: 20px;
}

.section-title h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.6rem);
  max-width: 18ch;
}

.section-copy {
  max-width: 72ch;
}

.info-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.info-card,
.card,
.contact-card,
.panel {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

.info-card {
  padding: 18px;
}

.info-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.info-card span {
  color: var(--muted);
  line-height: 1.6;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.photo-tile {
  min-height: 170px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #1d2026, #101216);
}

.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-tile.contain img {
  object-fit: contain;
  padding: 14px;
  background: linear-gradient(145deg, #1d2026, #101216);
}

.stack {
  display: grid;
  gap: 12px;
}

.stack .card {
  padding: 18px;
}

.stack .card h3,
.card h3,
.contact-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

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

.toolbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filters button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d6dbe2;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.filters button.active {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #d2a86e);
  border-color: transparent;
}

.search {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: min(100%, 320px);
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.search span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.search input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(22, 24, 29, 0.94);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.product-media {
  aspect-ratio: 1 / 1;
  padding: 12px;
  background: linear-gradient(145deg, #1d2026, #101216);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-body {
  padding: 14px 15px 16px;
  display: grid;
  gap: 8px;
}

.product-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(200, 154, 95, 0.12);
  color: #e3bf87;
  font-size: 0.78rem;
  font-weight: 800;
}

.product-body h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.product-body p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

.pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.pager button {
  min-width: 42px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: #dde1e7;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.pager button.active {
  background: linear-gradient(135deg, var(--accent), #d2a86e);
  color: #fff;
  border-color: transparent;
}

.cta-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  padding: 22px 24px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(26, 28, 34, 0.98), rgba(14, 15, 18, 0.98));
  box-shadow: var(--shadow);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-card {
  padding: 20px;
}

.contact-card .label {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-box {
  min-height: 280px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  border-radius: 22px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  color: var(--muted);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.footer {
  margin-top: 18px;
  padding: 22px 0 0;
  color: var(--muted-2);
  text-align: center;
  font-size: 0.92rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero,
  .feature-grid,
  .contact-grid,
  .cards-grid,
  .products-grid,
  .info-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    gap: 20px;
  }

  .site-header,
  .cta-row,
  .toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .nav {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(100% - 18px, 1240px);
  }

  .site-header {
    position: static;
    border-radius: 26px;
  }

  .hero,
  .feature-grid,
  .contact-grid,
  .cards-grid,
  .products-grid,
  .info-row {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 100%;
  }

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

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