:root {
  --bg: #080809;
  --bg-soft: #101114;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --glass: rgba(18, 18, 20, 0.62);
  --glass-border: rgba(244, 211, 142, 0.24);
  --text: #f6f1e8;
  --text-muted: #cbb899;
  --gold: #d5ae62;
  --gold-bright: #f3d799;
  --gold-deep: #8d6a35;
  --border: rgba(214, 174, 98, 0.34);
  --gradient-gold: linear-gradient(
    132deg,
    #f4dba2 0%,
    #cfa35b 43%,
    #8a662f 100%
  );
  --shadow-soft: 0 18px 44px rgba(0, 0, 0, 0.44);
  --shadow-gold: 0 20px 46px rgba(186, 138, 54, 0.26);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(214, 174, 98, 0.18),
      transparent 36%
    ),
    radial-gradient(circle at 90% 2%, rgba(166, 120, 44, 0.2), transparent 30%),
    radial-gradient(
      circle at 80% 90%,
      rgba(214, 174, 98, 0.1),
      transparent 42%
    ),
    linear-gradient(170deg, #080809 0%, #0c0d10 45%, #080809 100%);
  font-family: "Manrope", "Segoe UI", sans-serif;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  z-index: -2;
  pointer-events: none;
}

body::before {
  width: min(44vw, 520px);
  height: min(44vw, 520px);
  right: -100px;
  top: 15%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(244, 212, 138, 0.18),
    rgba(244, 212, 138, 0)
  );
  filter: blur(12px);
}

body::after {
  width: min(36vw, 420px);
  height: min(36vw, 420px);
  left: -120px;
  bottom: 8%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(157, 118, 49, 0.16),
    rgba(157, 118, 49, 0)
  );
  filter: blur(16px);
}

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

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

.container {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 5.2rem 0;
  position: relative;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0.02em;
  font-family: "Cormorant Garamond", Georgia, serif;
}

h1 {
  letter-spacing: 0.03em;
}

p {
  margin: 0;
  line-height: 1.78;
  color: #f5efe1;
}

.section-intro {
  max-width: 680px;
  margin-bottom: 2.2rem;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--gold-bright);
  letter-spacing: 0.22em;
  font-size: 0.73rem;
  text-transform: uppercase;
  margin-bottom: 0.86rem;
  font-weight: 700;
}

.kicker::before {
  content: "";
  width: 36px;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(244, 215, 151, 0),
    rgba(244, 215, 151, 0.75)
  );
}

.glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 5, 7, 0.76);
  border-bottom: 1px solid rgba(214, 174, 98, 0.16);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 86px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(214, 174, 98, 0.42);
  box-shadow: 0 10px 22px rgba(212, 177, 106, 0.24);
  background: #111;
}

.brand-name {
  font-size: 1.16rem;
  letter-spacing: 0.16em;
  font-weight: 600;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.brand-sub {
  font-size: 0.74rem;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 1.4rem;
  align-items: center;
}

.nav-link {
  font-size: 0.93rem;
  color: #f8f0df;
  opacity: 0.84;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 240ms ease,
    opacity 240ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-bright);
  opacity: 1;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  font-size: 1.18rem;
}

.hero {
  padding: 4.7rem 0 2.8rem;
  position: relative;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      125deg,
      rgba(214, 174, 98, 0.11),
      rgba(214, 174, 98, 0) 38%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(214, 174, 98, 0.18),
      rgba(214, 174, 98, 0) 36%
    );
  pointer-events: none;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 2rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.1vw, 4.9rem);
  margin-bottom: 1.15rem;
}

.hero p {
  max-width: 58ch;
  margin-bottom: 2rem;
  color: #f3ead8;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(214, 174, 98, 0.36);
  box-shadow: var(--shadow-gold);
  background: linear-gradient(145deg, #17100a, #0f1013 54%, #101115);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transform: scale(1.03);
  filter: saturate(1.08) contrast(1.04);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(9, 9, 10, 0.88),
      rgba(9, 9, 10, 0.18) 52%,
      rgba(9, 9, 10, 0.56)
    ),
    radial-gradient(
      circle at 70% 22%,
      rgba(246, 218, 154, 0.22),
      rgba(246, 218, 154, 0) 35%
    );
}

.hero-smoke {
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background:
    radial-gradient(
      ellipse at 20% 80%,
      rgba(245, 242, 236, 0.16),
      rgba(245, 242, 236, 0) 55%
    ),
    radial-gradient(
      ellipse at 60% 100%,
      rgba(245, 242, 236, 0.16),
      rgba(245, 242, 236, 0) 62%
    ),
    radial-gradient(
      ellipse at 80% 70%,
      rgba(245, 242, 236, 0.09),
      rgba(245, 242, 236, 0) 52%
    );
  animation: smokeRise 7.8s ease-in-out infinite;
}

.hero-badge {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.1rem;
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(12, 12, 14, 0.72);
  border: 1px solid rgba(244, 212, 138, 0.34);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.mt-xs {
  margin-top: 0.55rem;
}

.mt-sm {
  margin-top: 0.6rem;
}

.mt-md {
  margin-top: 0.75rem;
}

.mt-lg {
  margin-top: 1rem;
}

.mt-xl {
  margin-top: 1.2rem;
}

.footer-title {
  color: var(--gold);
}

.hero-badge h3 {
  font-size: 1.3rem;
  margin-bottom: 0.45rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.88rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.84rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease,
    border-color 260ms ease;
}

.btn-primary {
  color: #221606;
  background: var(--gradient-gold);
  box-shadow: 0 12px 28px rgba(212, 177, 106, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(212, 177, 106, 0.5);
}

.btn-ghost {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 212, 138, 0.56);
  background: rgba(255, 255, 255, 0.07);
}

.stats-grid,
.products-grid,
.services-grid,
.feature-grid,
.related-grid {
  display: grid;
  gap: 1rem;
}

.services-grid-wide {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

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

.stat {
  padding: 1.4rem;
  position: relative;
}

.stat::after {
  content: "";
  position: absolute;
  inset: auto 1.2rem 0.8rem 1.2rem;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(214, 174, 98, 0),
    rgba(214, 174, 98, 0.66),
    rgba(214, 174, 98, 0)
  );
}

.stat h3 {
  font-size: 1.7rem;
  color: var(--gold-bright);
  margin-bottom: 0.35rem;
}

.products-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.product-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(214, 174, 98, 0.22);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
  transition:
    transform 360ms ease,
    border-color 260ms ease,
    box-shadow 360ms ease;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(244, 212, 138, 0.74);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.5);
}

.product-media {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(155deg, #33250e, #111 65%);
  overflow: hidden;
}

.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 80% 20%,
    rgba(212, 177, 106, 0.33),
    transparent 35%
  );
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 520ms ease;
}

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

.product-body {
  padding: 1.1rem;
}

.product-body h3 {
  font-size: 1.4rem;
  margin-bottom: 0.42rem;
}

.product-body p {
  color: #e8dcc6;
  font-size: 0.95rem;
}

.page-hero {
  padding: 3.4rem 0;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 12% 50%,
      rgba(214, 174, 98, 0.14),
      rgba(214, 174, 98, 0) 30%
    ),
    linear-gradient(170deg, rgba(214, 174, 98, 0.06), rgba(214, 174, 98, 0));
}

.page-hero h1 {
  font-size: clamp(2rem, 4.3vw, 3.3rem);
  margin-bottom: 0.75rem;
}

.products-toolbar {
  display: grid;
  gap: 1rem;
  padding: 1.15rem;
  margin-bottom: 1.4rem;
}

.search-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.62rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 212, 138, 0.32);
  background: rgba(255, 255, 255, 0.02);
}

.search-wrap input {
  width: 100%;
  background: transparent;
  border: 0;
  color: var(--text);
  font: inherit;
  outline: none;
}

.search-wrap input::placeholder {
  color: #d5c09a;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.filter-chip {
  border: 1px solid rgba(244, 212, 138, 0.3);
  background: rgba(255, 255, 255, 0.02);
  color: #f5eeda;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font: inherit;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.filter-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(244, 212, 138, 0.58);
}

.filter-chip.is-active {
  background: rgba(214, 174, 98, 0.2);
  color: #ffe9bd;
  border-color: rgba(244, 212, 138, 0.68);
}

.products-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.no-results {
  display: none;
  padding: 1.4rem;
  border: 1px dashed rgba(244, 212, 138, 0.4);
  border-radius: var(--radius-md);
  color: #f4e9d2;
}

.no-results.is-visible {
  display: block;
}

.service-item {
  padding: 1.35rem;
}

.service-item h3 {
  margin-bottom: 0.55rem;
  color: var(--gold-bright);
  font-size: 1.4rem;
}

.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-box {
  padding: 1.2rem;
  border: 1px solid rgba(214, 174, 98, 0.22);
}

.feature-box h3 {
  color: var(--gold-bright);
  margin-bottom: 0.45rem;
  font-size: 1.35rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-wrap,
.contact-info,
.about-panel {
  padding: 1.35rem;
}

label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--gold-bright);
  font-weight: 600;
  font-size: 0.9rem;
}

.input,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(214, 174, 98, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.8rem 0.9rem;
  font: inherit;
  margin-bottom: 0.9rem;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.input:focus,
textarea:focus {
  border-color: rgba(244, 212, 138, 0.64);
  box-shadow: 0 0 0 2px rgba(214, 174, 98, 0.15);
  outline: none;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.site-footer {
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(214, 174, 98, 0.2);
  background: rgba(3, 3, 3, 0.58);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-note {
  margin-top: 1.1rem;
  color: #c9b081;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 700ms ease,
    transform 700ms ease,
    filter 700ms ease;
  filter: blur(3px);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.gallery-main {
  grid-column: span 2;
  min-height: 280px;
}

.gallery-shot {
  border-radius: var(--radius-sm);
  min-height: 140px;
  border: 1px solid rgba(214, 174, 98, 0.23);
  background: linear-gradient(145deg, #36280f, #111 58%);
  overflow: hidden;
}

.gallery-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.gallery-shot:hover img {
  transform: scale(1.06);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 0.62rem;
  border-bottom: 1px solid rgba(214, 174, 98, 0.2);
}

.spec-table th {
  color: var(--gold-bright);
  width: 36%;
}

ul.feature-list {
  padding-left: 1.1rem;
  color: #f2e8d4;
}

ul.feature-list li {
  margin-bottom: 0.45rem;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
}

.page-visual {
  margin-top: -0.8rem;
}

.page-visual-media {
  position: relative;
  min-height: 330px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(244, 212, 138, 0.3);
  box-shadow: var(--shadow-soft);
}

.page-visual-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.page-visual-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8, 8, 9, 0.72), rgba(8, 8, 9, 0.15) 50%),
    radial-gradient(
      circle at 80% 20%,
      rgba(244, 212, 138, 0.24),
      rgba(244, 212, 138, 0)
    );
}

.atmosphere {
  position: relative;
  overflow: hidden;
}

.atmosphere::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 15% 30%,
      rgba(214, 174, 98, 0.16),
      transparent 38%
    ),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.03) 0 1px,
      rgba(255, 255, 255, 0) 1px 18px
    );
  opacity: 0.45;
}

.atmosphere-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
}

.atmosphere-image {
  min-height: 330px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(244, 212, 138, 0.3);
}

.atmosphere-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08);
}

.atmosphere-copy {
  padding: 1.35rem;
}

.atmosphere-copy h2 {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  margin-bottom: 0.7rem;
}

.decorative-line {
  height: 1px;
  margin: 1rem 0 0;
  background: linear-gradient(
    to right,
    rgba(244, 212, 138, 0),
    rgba(244, 212, 138, 0.64),
    rgba(244, 212, 138, 0)
  );
}

@keyframes smokeRise {
  0%,
  100% {
    transform: translate3d(0, 8px, 0);
    opacity: 0.7;
  }
  50% {
    transform: translate3d(0, -10px, 0);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-smoke,
  .reveal,
  .product-card,
  .btn {
    animation: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-layout,
  .footer-grid,
  .product-layout,
  .about-layout,
  .atmosphere-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 460px;
  }

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

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    top: 84px;
    right: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    border-radius: 14px;
    border: 1px solid rgba(214, 174, 98, 0.28);
    background: rgba(4, 4, 4, 0.95);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 220ms ease,
      opacity 220ms ease;
  }

  .nav-links.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .gallery-main {
    min-height: 220px;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 3.8rem 0;
  }

  .hero {
    padding-top: 3rem;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .hero-visual {
    min-height: 380px;
  }
}
