:root {
  --bg: #0e0f0f;
  --bg-soft: #171919;
  --panel: rgba(244, 240, 234, 0.9);
  --panel-strong: rgba(251, 248, 243, 0.96);
  --line: rgba(74, 58, 39, 0.08);
  --line-dark: rgba(20, 18, 15, 0.12);
  --text: #181613;
  --text-soft: rgba(24, 22, 19, 0.72);
  --accent: #154f9e;
  --accent-deep: #3a6faa;
  --accent-dark: #475c75;
  --cta: #f47b22;
  --cta-deep: #db6811;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --radius-xl: 0;
  --radius-lg: 0;
  --radius-md: 0;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  color: #ffffff;
  background:
    radial-gradient(circle at 14% 18%, rgba(214, 177, 121, 0.16), transparent 26%),
    radial-gradient(circle at 88% 12%, rgba(214, 177, 121, 0.12), transparent 18%),
    linear-gradient(135deg, #d8cec0 0%, #bfb1a1 46%, #8a7e72 100%);
}

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

button,
input {
  font: inherit;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  padding: 28px;
  isolation: isolate;
}

.ambient {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -2;
}

.ambient::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(245, 239, 231, 0.52) 0%, rgba(245, 239, 231, 0.16) 34%, rgba(18, 16, 14, 0.24) 100%),
    linear-gradient(180deg, rgba(14, 12, 11, 0.06) 0%, rgba(14, 12, 11, 0.28) 100%);
}

.ambient-grid {
  position: absolute;
  inset: 28px;
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.ambient-photo {
  position: relative;
  min-height: 0;
  border-radius: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: saturate(1.04) brightness(1.02) contrast(1.04);
  opacity: 0.98;
  box-shadow: 0 22px 60px rgba(29, 23, 18, 0.16);
}

.ambient-photo-main {
  grid-column: 1;
  grid-row: 1 / 3;
  background-image: url("images/bg1.png");
}

.ambient-photo-side-top {
  grid-column: 2;
  grid-row: 1;
  background-image:
    linear-gradient(180deg, rgba(250, 245, 239, 0.04) 0%, rgba(18, 16, 14, 0.1) 100%),
    url("images/bg2.png");
}

.ambient-photo-side-bottom {
  grid-column: 2;
  grid-row: 2;
  background-image:
    linear-gradient(180deg, rgba(250, 245, 239, 0.04) 0%, rgba(18, 16, 14, 0.1) 100%),
    url("images/bg3.png");
}

.ambient-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 18%, #000 82%, rgba(0, 0, 0, 0) 100%);
}

.ambient-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(26px);
  opacity: 0.42;
}

.ambient-glow-left {
  width: 380px;
  height: 380px;
  left: -120px;
  bottom: 40px;
  background: rgba(214, 177, 121, 0.16);
}

.ambient-glow-right {
  width: 320px;
  height: 320px;
  right: 100px;
  top: 120px;
  background: rgba(214, 177, 121, 0.12);
}

.topbar,
.landing {
  width: min(1320px, 100%);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.brand-link img {
  display: block;
  height: 142px;
  width: auto;
  max-width: 100%;
  filter: brightness(1.06);
}

@media (max-width: 1360px) {
  .brand-link img {
    height: 132px;
  }
}

@media (max-width: 1200px) {
  .brand-link img {
    height: 122px;
  }
}

@media (max-width: 980px) {
  .brand-link img {
    height: 108px;
  }
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-link,
.lang-button,
.button,
.catalog-link {
  transition:
    transform var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition),
    box-shadow var(--transition),
    opacity var(--transition);
}

.top-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(74, 58, 39, 0.14);
  border-radius: 0;
  background: rgba(249, 244, 236, 0.78);
  color: #3e2f1e;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(14px);
}

.top-link:hover,
.top-link:focus-visible {
  transform: translateY(-1px);
  background: rgba(251, 247, 240, 0.96);
}

.lang-switch {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(74, 58, 39, 0.14);
  border-radius: 0;
  background: rgba(249, 244, 236, 0.78);
  backdrop-filter: blur(14px);
}

.lang-button {
  min-width: 56px;
  min-height: 42px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: rgba(49, 37, 24, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.lang-button.is-active {
  background: linear-gradient(135deg, rgba(21, 79, 158, 0.98), rgba(58, 111, 170, 0.94));
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(21, 79, 158, 0.22);
}

.landing {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 24px;
  align-items: stretch;
}

.panel {
  border: 1px solid rgba(74, 58, 39, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-copy {
  position: relative;
  padding: 42px;
  background:
    linear-gradient(180deg, rgba(249, 250, 251, 0.78) 0%, rgba(247, 248, 250, 0.56) 100%),
    rgba(248, 249, 250, 0.3);
  overflow: hidden;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: auto -60px -120px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 79, 158, 0.08), transparent 68%);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.eyebrow,
.status-pill,
.catalog-label,
.contact-label {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(60, 47, 33, 0.76);
  font-size: 0.78rem;
  font-weight: 700;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 0;
  background: rgba(21, 79, 158, 0.05);
  border: 1px solid rgba(21, 79, 158, 0.14);
  color: #23456e;
  font-size: 0.74rem;
  font-weight: 700;
}

.hero-copy h1 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(2.35rem, 4vw, 3.65rem);
  color: #231b14;
  margin-bottom: 22px;
}

.lead {
  max-width: 62ch;
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(37, 28, 20, 0.82);
  margin-bottom: 16px;
}

.body-text {
  max-width: 58ch;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(37, 28, 20, 0.66);
}

.body-text-secondary {
  margin-top: 10px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  margin-bottom: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 0;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(21, 79, 158, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(21, 79, 158, 0.32);
}

.button-secondary {
  border: 1px solid rgba(73, 57, 37, 0.14);
  background: rgba(255, 255, 255, 0.58);
  color: #2c2218;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.84);
}

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

.feature-card {
  min-height: 200px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(249, 250, 251, 0.56) 0%, rgba(246, 248, 250, 0.34) 100%);
  border: 1px solid rgba(74, 58, 39, 0.08);
}

.feature-index {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(21, 79, 158, 0.88);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.feature-card h2 {
  max-width: 12ch;
  font-size: 1.22rem;
  line-height: 1.28;
  color: #231b14;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(35, 27, 20, 0.68);
}

.consult-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: 100%;
  margin-top: 18px;
  margin-left: 0;
  padding: 18px 20px;
  border: 1px solid rgba(73, 90, 112, 0.1);
  border-left: 3px solid var(--cta);
  background: linear-gradient(180deg, rgba(249, 250, 251, 0.5) 0%, rgba(246, 248, 250, 0.28) 100%);
}

.consult-kicker {
  display: inline-flex;
  color: rgba(21, 79, 158, 0.86);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.consult-copy {
  color: rgba(31, 23, 17, 0.76);
  font-size: 0.92rem;
  line-height: 1.64;
  text-wrap: pretty;
}

.hero-visual {
  display: grid;
  gap: 24px;
}

.product-card {
    padding: 26px;
    background: linear-gradient(180deg, rgba(243, 246, 249, 0.96) 0%, rgb(230 235 240 / 51%) 100%);
    color: var(--text);
}

.product-stage {
  position: relative;
  min-height: 430px;
  padding: 26px;
  border-radius: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(21, 79, 158, 0.06), transparent 40%),
    linear-gradient(180deg, rgba(247, 249, 251, 0.97) 0%, rgba(232, 236, 241, 0.88) 100%);
  border: 1px solid rgba(73, 90, 112, 0.12);
}

.product-halo {
  position: absolute;
  inset: auto 8% -18% 8%;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58, 66, 78, 0.2), rgba(58, 66, 78, 0) 72%);
  filter: blur(18px);
}

.product-stage img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 540px);
  margin: 0 auto;
  filter: drop-shadow(0 28px 36px rgba(15, 12, 10, 0.22));
}

.catalog-action-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 22px;
}

.catalog-main-button {
  min-width: 220px;
  background: linear-gradient(135deg, var(--cta) 0%, var(--cta-deep) 100%);
  box-shadow: 0 18px 38px rgba(244, 123, 34, 0.26);
}

.catalog-main-button:hover,
.catalog-main-button:focus-visible {
  box-shadow: 0 22px 44px rgba(244, 123, 34, 0.34);
}

.contact-label {
  display: inline-flex;
  color: rgba(24, 22, 19, 0.56);
  font-size: 0.72rem;
  font-weight: 700;
}

.contact-card {
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(245, 248, 250, 0.82) 0%, rgba(235, 239, 243, 0.64) 100%);
  color: #201812;
}

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

.contact-item {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(73, 90, 112, 0.1);
  background: rgba(255, 255, 255, 0.58);
}

.contact-value {
  display: block;
  margin-top: 10px;
  color: #1f2329;
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.6;
  word-break: break-word;
}

.contact-value-email {
  font-size: 0.85rem;
  line-height: 1.55;
}

.contact-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  margin-top: 20px;
  padding: 18px 6px 0;
}

.socials {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(74, 58, 39, 0.1);
}

.socials a:hover,
.socials a:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.92);
}

.socials img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.contact-note {
  max-width: 32ch;
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(34, 26, 19, 0.62);
  text-align: right;
}

.hero-copy,
.product-card,
.contact-card {
  animation: panel-rise 700ms ease both;
}

.product-card {
  animation-delay: 90ms;
}

.contact-card {
  animation-delay: 160ms;
}

@keyframes panel-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .site-shell {
    padding: 20px;
  }

  .ambient-photo-main {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .ambient-grid {
    inset: 20px;
  }

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

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

  .consult-strip {
    width: min(100%, 100%);
  }

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

@media (max-width: 780px) {
  .site-shell {
    padding: 16px;
  }

  .ambient-grid {
    inset: 16px;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }

  .ambient-photo-main,
  .ambient-photo-side-top,
  .ambient-photo-side-bottom {
    opacity: 0.72;
  }

  .ambient-photo-side-top,
  .ambient-photo-side-bottom {
    display: none;
  }

  .topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .brand-link {
    align-self: flex-start;
  }

  .brand-link img {
    width: min(100%, 260px);
    height: auto;
  }

  .topbar-actions {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .hero-copy,
  .product-card,
  .contact-card {
    padding: 22px;
    border-radius: 0;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.3rem, 10vw, 3.4rem);
  }

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

  .feature-card {
    min-height: auto;
  }

  .consult-strip {
    padding: 16px;
  }

  .consult-copy {
    font-size: 0.92rem;
  }

  .product-stage {
    min-height: 320px;
    padding: 16px;
  }

  .contact-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-note {
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 620px) {
  .brand-link img {
    width: min(100%, 230px);
    height: auto;
  }
}

@media (max-width: 480px) {
  .brand-link img {
    width: min(100%, 205px);
    height: auto;
  }
}

@media (max-width: 360px) {
  .brand-link img {
    width: min(100%, 182px);
    height: auto;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
}
