:root {
  --red: #b91518;
  --red-dark: #8e1013;
  --gold: #dca62b;
  --gold-soft: #f7df9a;
  --cream: #fbf5e8;
  --cream-deep: #f3ead8;
  --ink: #25211c;
  --muted: #746b5f;
  --line: rgba(60, 45, 25, 0.14);
  --white: #fffdf8;
  --shadow: 0 18px 48px rgba(49, 35, 16, 0.11);
  --radius: 8px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.section-anchor {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 14px 34px rgba(37, 33, 28, 0.08);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.brand-logo {
  width: 78px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.16));
}

.brand-name {
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.site-header.is-scrolled .brand-name,
.site-header.menu-active .brand-name {
  color: var(--ink);
  text-shadow: none;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 700;
}

.site-header.is-scrolled .desktop-nav,
.site-header.menu-active .desktop-nav {
  color: var(--ink);
}

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

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

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius);
  background: var(--red);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(185, 21, 24, 0.22);
  transition: transform 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;
}

.header-call:hover {
  transform: translateY(-1px);
  background: var(--red-dark);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  padding: 11px;
  cursor: pointer;
}

.site-header.is-scrolled .menu-toggle,
.site-header.menu-active .menu-toggle {
  border-color: var(--line);
  background: var(--white);
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  margin: 5px 0;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.site-header.is-scrolled .menu-toggle span,
.site-header.menu-active .menu-toggle span {
  background: var(--ink);
}

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

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

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

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  background-image: url("hero-bg.png");
  background-size: cover;
  background-position: center;
  color: #fff;
  isolation: isolate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(35, 24, 13, 0.64) 0%, rgba(54, 32, 16, 0.36) 44%, rgba(55, 32, 16, 0.08) 100%),
    linear-gradient(0deg, rgba(31, 23, 16, 0.18), rgba(31, 23, 16, 0.04));
}

.hero-content {
  padding-top: var(--header-height);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1,
.about h2,
.section-heading h2,
.why-intro h2,
.cta-inner h2,
.contact-panel h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.98;
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

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

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

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 16px 34px rgba(185, 21, 24, 0.22);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.btn-light {
  background: #fff;
  color: var(--red-dark);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline {
  border-color: var(--red);
  color: var(--red-dark);
  background: transparent;
}

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 28px 22px;
  background: var(--white);
}

.line-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--red);
  background: rgba(220, 166, 43, 0.15);
}

.line-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item h2,
.product-card h3,
.advantage-card h3,
.footer-grid h2 {
  margin: 0;
  font-size: 17px;
  line-height: 1.3;
}

.trust-item p,
.product-card p,
.advantage-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.about {
  padding: 112px 0;
  background:
    linear-gradient(90deg, rgba(185, 21, 24, 0.035), transparent 38%),
    var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr;
  gap: 72px;
  align-items: start;
}

.about .section-kicker,
.products .section-kicker,
.gallery .section-kicker,
.why .section-kicker,
.contact .section-kicker {
  color: var(--red);
}

.about h2,
.section-heading h2,
.why-intro h2,
.cta-inner h2,
.contact-panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
}

.about-copy p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.about-copy .about-emphasis {
  padding-left: 20px;
  border-left: 4px solid var(--gold);
  color: var(--ink);
  font-weight: 800;
}

.products {
  padding: 108px 0;
  background: var(--cream);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  position: relative;
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 12px 32px rgba(80, 56, 21, 0.06);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--red));
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 21, 24, 0.24);
  box-shadow: var(--shadow);
}

.product-card span {
  display: inline-block;
  margin-bottom: 28px;
  color: rgba(185, 21, 24, 0.7);
  font-weight: 900;
  font-size: 13px;
}

.product-card h3 {
  font-size: 20px;
}

.gallery {
  padding: 108px 0;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-item {
  width: 100%;
  height: 230px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: 0 12px 32px rgba(80, 56, 21, 0.06);
  overflow: hidden;
  cursor: pointer;
}

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

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 72px 78px;
  background: rgba(24, 22, 18, 0.88);
}

.lightbox[hidden] {
  display: none;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox-frame {
  width: min(100%, 1040px);
  max-height: min(78vh, 760px);
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.lightbox-frame img {
  width: 100%;
  max-height: min(78vh, 760px);
  object-fit: contain;
  background: #181612;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.94);
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  transform: translateY(-1px);
  background: #fff;
}

.lightbox-close {
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  font-size: 34px;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  width: 50px;
  height: 58px;
  font-size: 42px;
  transform: translateY(-50%);
}

.lightbox-nav:hover {
  transform: translateY(-50%) translateY(-1px);
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.why {
  padding: 108px 0;
  background: var(--cream-deep);
}

.why-grid {
  display: grid;
  gap: 42px;
}

.why-content {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
}

.why-image {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(220, 166, 43, 0.24);
  box-shadow: var(--shadow);
}

.why-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  align-content: center;
  align-items: center;
}

.advantage-card {
  min-height: unset;
  height: auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(220, 166, 43, 0.24);
}

.advantage-card h3 {
  font-size: 21px;
  line-height: 1.35;
}

.cta-band {
  padding: 72px 0;
  background: #2a2118;
  color: #fff;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
}

.cta-inner h2 {
  color: #fff;
  max-width: 650px;
  font-size: clamp(32px, 4vw, 48px);
}

.cta-inner p {
  margin: 16px 0 0;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.cta-actions {
  margin-top: 0;
  justify-content: flex-end;
}

.contact {
  padding: 108px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 28px;
  align-items: stretch;
}

.contact-panel {
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--cream);
}

.contact-list {
  display: grid;
  gap: 22px;
  margin: 30px 0;
}

.contact-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-list a,
.contact-list p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.55;
}

.address-stack {
  display: grid;
  gap: 18px;
}

.address-block {
  display: grid;
  gap: 10px;
}

.address-block + .address-block {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.address-block strong {
  color: var(--red);
  font-size: 15px;
  line-height: 1.4;
}

.direction-link {
  width: fit-content;
  font-size: 15px !important;
  color: var(--red-dark) !important;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.map-wrap {
  min-height: 410px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 410px;
  border: 0;
  display: block;
}

.site-footer {
  padding: 54px 0 24px;
  background: #181612;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 34px;
}

.footer-brand img {
  width: 136px;
  height: 88px;
  object-fit: contain;
  margin-bottom: 18px;
}

.footer-grid h2 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  font-size: 14px;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
}

.mobile-contact-bar {
  display: none;
}

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

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

@media (max-width: 1020px) {
  :root {
    --header-height: 76px;
  }

  .desktop-nav,
  .header-call {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

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

  .mobile-nav {
    position: fixed;
    top: var(--header-height);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 4px;
    padding: 16px;
    border-radius: var(--radius);
    background: rgba(255, 253, 248, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .mobile-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav a {
    padding: 13px 12px;
    border-radius: var(--radius);
    font-weight: 800;
  }

  .mobile-nav a:hover {
    background: var(--cream);
  }

  .mobile-nav .mobile-call {
    margin-top: 8px;
    text-align: center;
    background: var(--red);
    color: #fff;
  }

  .trust-grid,
  .product-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .why-grid,
  .why-content,
  .contact-grid,
  .cta-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    align-items: flex-start;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1140px);
  }

  .hero {
    min-height: 80vh;
    background-position: 62% center;
  }

  .hero h1 {
    font-size: clamp(39px, 13vw, 54px);
  }

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

  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
    padding: 0 18px;
    text-align: center;
  }

  .trust-grid,
  .product-grid,
  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-item {
    height: 170px;
  }

  .trust-item {
    padding: 24px 18px;
  }

  .about,
  .products,
  .gallery,
  .why,
  .contact {
    padding: 76px 0;
  }

  .about-grid,
  .why-grid,
  .why-content {
    gap: 34px;
  }

  .about h2,
  .section-heading h2,
  .why-intro h2,
  .contact-panel h2 {
    font-size: clamp(31px, 10vw, 42px);
  }

  .about-copy p,
  .section-heading p {
    font-size: 16px;
  }

  .product-card,
  .advantage-card,
  .contact-panel {
    padding: 24px;
  }

  .advantage-card {
    padding: 20px 24px;
  }

  .cta-band {
    padding: 58px 0;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 330px;
  }

  .lightbox {
    padding: 66px 14px 86px;
  }

  .lightbox-frame,
  .lightbox-frame img {
    max-height: 70vh;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    width: 48px;
    height: 48px;
    font-size: 36px;
    transform: none;
  }

  .lightbox-nav:hover {
    transform: translateY(-1px);
  }

  .lightbox-prev {
    left: calc(50% - 58px);
  }

  .lightbox-next {
    right: calc(50% - 58px);
  }

  .site-footer {
    padding-bottom: 86px;
  }

  .mobile-contact-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 120;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border-radius: var(--radius);
    background: rgba(255, 253, 248, 0.96);
    border: 1px solid var(--line);
    box-shadow: 0 18px 44px rgba(37, 33, 28, 0.18);
    backdrop-filter: blur(16px);
  }

  .mobile-contact-bar a {
    min-height: 46px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    font-weight: 900;
    background: var(--red);
    color: #fff;
  }

  .mobile-contact-bar a:last-child {
    background: #1f7a4c;
  }
}

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