﻿:root {
  --bg: #f5efe8;
  --bg-soft: #fbf7f1;
  --panel: rgba(255, 250, 244, 0.88);
  --panel-strong: #fffaf4;
  --panel-dark: rgba(18, 20, 17, 0.72);
  --text: #1a1714;
  --text-soft: #6a6259;
  --title: #17120d;
  --line: rgba(100, 74, 49, 0.14);
  --brand: #9b5b2d;
  --brand-strong: #7f4720;
  --brand-soft: #efe0cf;
  --accent: #294739;
  --accent-soft: rgba(41, 71, 57, 0.1);
  --white: #ffffff;
  --shadow-lg: 0 30px 80px rgba(31, 19, 10, 0.12);
  --shadow-md: 0 18px 40px rgba(34, 21, 12, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1280px;
  --font-body: "Manrope", sans-serif;
  --font-display: "Cormorant Garamond", serif;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(155, 91, 45, 0.08), transparent 24%),
    radial-gradient(circle at right 15%, rgba(41, 71, 57, 0.08), transparent 18%),
    var(--bg);
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
}

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

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

button,
input {
  font: inherit;
}

button {
  border: 0;
  background: none;
}

.section {
  position: relative;
  padding: 110px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.9), rgba(250, 244, 237, 0.95));
}

.section-dark {
  background:
    radial-gradient(circle at top left, rgba(155, 91, 45, 0.2), transparent 24%),
    linear-gradient(135deg, #11110f, #1a1612 62%, #21160e);
  color: rgba(255, 249, 241, 0.94);
}

.section-metrics {
  padding-top: 0;
}

.container {
  position: relative;
  z-index: 1;
}

.section-kicker,
.content-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(155, 91, 45, 0.16);
  border-radius: 999px;
  background: rgba(255, 248, 241, 0.78);
  color: var(--brand-strong);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.content-chip {
  margin-bottom: 18px;
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 56px;
}

.section-heading h2 {
  margin: 18px 0 16px;
  color: var(--title);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.35rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.03rem;
  line-height: 1.8;
}

.premium-panel {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.96), rgba(249, 241, 233, 0.92));
  box-shadow: var(--shadow-lg);
}

.btn-primary-wood,
.btn-secondary-wood,
.btn-card,
.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-primary-wood,
.btn-secondary-wood,
.btn-card {
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
}

.btn-primary-wood,
.btn-card--solid,
.btn-nav-cta {
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: var(--white);
  box-shadow: 0 18px 40px rgba(127, 71, 32, 0.28);
}

.btn-primary-wood:hover,
.btn-card--solid:hover,
.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(127, 71, 32, 0.32);
}

.btn-secondary-wood,
.btn-card--ghost {
  border: 1px solid rgba(155, 91, 45, 0.2);
  background: rgba(255, 251, 246, 0.7);
  color: var(--title);
}

.btn-secondary-wood:hover,
.btn-card--ghost:hover {
  transform: translateY(-2px);
  background: var(--white);
}

.link-button {
  padding: 0;
  color: var(--brand-strong);
  font-weight: 800;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 18px 0;
  transition: padding 0.25s ease;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(14, 15, 13, 0.2);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

body.scrolled .site-header {
  padding: 10px 0;
}

body.scrolled .header-shell {
  background: rgba(18, 16, 13, 0.88);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

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

.brand-mark img {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.brand-mark strong {
  display: block;
  color: var(--white);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.brand-mark__eyebrow {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.navmenu ul {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.navmenu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.93rem;
  font-weight: 700;
  transition: color 0.25s ease, background 0.25s ease;
}

.navmenu a:hover,
.navmenu a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.navmenu-cta {
  margin-left: 8px;
}

.btn-nav-cta {
  min-height: 46px;
  padding: 0 18px;
}

.mobile-nav-toggle,
.nav-overlay {
  display: none;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 180px 0 110px;
  color: var(--white);
}

.hero-video-bg,
.hero-gradient,
.hero-noise {
  position: absolute;
  inset: 0;
}

.hero-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-gradient {
  background:
    linear-gradient(110deg, rgba(11, 10, 9, 0.88) 15%, rgba(18, 16, 14, 0.68) 42%, rgba(18, 16, 14, 0.82) 100%),
    radial-gradient(circle at top right, rgba(155, 91, 45, 0.34), transparent 24%),
    radial-gradient(circle at left 70%, rgba(41, 71, 57, 0.22), transparent 18%);
}

.hero-noise {
  opacity: 0.12;
  background-image: radial-gradient(rgba(255, 255, 255, 0.4) 0.5px, transparent 0.5px);
  background-size: 7px 7px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  margin: 22px 0 24px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 7vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.typed-line {
  display: inline-flex;
  align-items: baseline;
  min-height: 1.05em;
  white-space: nowrap;
  width: 18.5ch;
  justify-content: flex-start;
}

.typed-text {
  display: inline-block;
  color: #f5d9bf;
}

.typed-cursor {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  width: auto;
  margin-left: 0.02em;
}

.typed-cursor::after {
  content: "|";
  animation: blink 1s steps(1) infinite;
}

.hero-copy p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 248, 240, 0.82);
  font-size: 1rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 30px 0 22px;
}

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

.hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 248, 240, 0.86);
  font-size: 0.87rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.hero-visual__main {
  position: relative;
  overflow: hidden;
  margin-left: auto;
  width: min(100%, 470px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 36px;
  background: rgba(255, 249, 243, 0.08);
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}

.hero-visual__main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 28px;
}

.hero-badge,
.hero-floating-card {
  position: absolute;
  border-radius: 20px;
  background: rgba(255, 251, 246, 0.94);
  color: var(--title);
  box-shadow: var(--shadow-md);
}

.hero-badge {
  top: 30px;
  left: 34px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-weight: 800;
}

.hero-floating-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--text-soft);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-floating-card strong {
  font-size: 1rem;
  line-height: 1.45;
}

.hero-floating-card {
  padding: 18px 20px;
  animation: heroFloatCard 7s ease-in-out infinite;
}

.card-a {
  top: 72px;
  left: -24px;
  animation-delay: 0s;
}

.card-b {
  right: -12px;
  bottom: 36px;
  max-width: 240px;
  animation-delay: 1.4s;
}

.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 48px;
  color: rgba(255, 248, 240, 0.84);
  font-weight: 700;
}

.hero-scroll i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@keyframes heroFloatCard {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -12px, 0);
  }
}

.about-story,
.about-media,
.about-summary,
.catalog-note,
.contact-sidebar,
.contact-panel {
  padding: 36px;
}

.about-story h3,
.about-media h3,
.about-summary h3,
.catalog-note h3,
.faq-intro h2,
.contact-panel h3,
.product-modal__content h3,
.custom-modal__content h3 {
  margin: 0 0 16px;
  color: var(--title);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.about-story p,
.about-media p,
.about-summary p,
.catalog-note p,
.contact-card p,
.faq-intro p,
.product-modal__content p,
.custom-modal__content p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.about-story p + p,
.about-media p + p {
  margin-top: 14px;
}

.about-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-summary__list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.about-summary__list div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.66);
}

.about-summary__list strong,
.about-summary__list span {
  display: block;
}

.about-summary__list strong {
  color: var(--title);
  font-size: 1rem;
}

.about-summary__list span {
  margin-top: 6px;
  color: var(--text-soft);
  line-height: 1.6;
}

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

.mini-feature {
  display: flex;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
}

.mini-feature i,
.contact-card i,
.metric-card i,
.differential-card i {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-size: 1.25rem;
}

.mini-feature strong {
  display: block;
  margin-bottom: 6px;
}

.mini-feature span {
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.6;
}

.video-trigger {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  margin: 30px 0 34px;
  padding: 16px 18px;
  border: 1px solid rgba(155, 91, 45, 0.16);
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

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

.video-trigger__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: var(--white);
  font-size: 1.4rem;
}

.video-trigger__copy strong,
.video-trigger__copy small {
  display: block;
  text-align: left;
}

.video-trigger__copy small {
  color: var(--text-soft);
}

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

.about-quick-stats div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.about-quick-stats strong,
.about-quick-stats span {
  display: block;
}

.about-quick-stats strong {
  color: var(--title);
  font-size: 1rem;
}

.about-quick-stats span {
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.about-media__image {
  margin-top: 28px;
  overflow: hidden;
  border-radius: 26px;
}

.about-media__image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.section-presentation {
  padding-top: 0;
}

.presentation-panel {
  padding: 48px 36px;
  text-align: center;
}

.presentation-heading {
  margin-bottom: 24px;
}

.presentation-cta {
  display: flex;
  justify-content: center;
}

.section-catalog {
  background: linear-gradient(180deg, rgba(245, 239, 232, 0), rgba(255, 251, 246, 0.9));
}

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

.catalog-search {
  flex: 1 1 340px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-md);
}

.catalog-search i {
  color: var(--brand-strong);
}

.catalog-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--title);
}

.catalog-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip {
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid rgba(155, 91, 45, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-soft);
  font-weight: 800;
}

.chip.is-active,
.chip:hover {
  background: var(--brand-strong);
  border-color: var(--brand-strong);
  color: var(--white);
}

.catalog-grid,
.services-grid,
.differentials-grid {
  display: grid;
  gap: 24px;
}

.catalog-grid {
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  gap: 20px;
}

.catalog-card,
.service-card,
.metric-card,
.differential-card,
.faq-item {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.catalog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 252, 248, 0.88);
  box-shadow: var(--shadow-md);
}

.catalog-card.is-hidden {
  display: none;
}

.catalog-card__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 168px;
  padding: 20px 18px 14px;
  background: linear-gradient(180deg, rgba(239, 224, 207, 0.42), rgba(255, 255, 255, 0.08));
}

.catalog-card__media img {
  width: 100%;
  max-width: 168px;
  max-height: 120px;
  object-fit: contain;
}

.catalog-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--brand-strong);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-card__body,
.catalog-card__actions {
  padding-left: 18px;
  padding-right: 18px;
}

.catalog-card__body {
  flex: 1;
  padding-top: 2px;
  padding-bottom: 14px;
}

.catalog-card__body h3,
.service-card__body h3,
.metric-card strong,
.differential-card h3,
.faq-intro h2,
.contact-card strong {
  color: var(--title);
}

.catalog-card__body h3,
.service-card__body h3,
.differential-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.catalog-card__body p,
.service-card__body p,
.differential-card p {
  color: var(--text-soft);
  line-height: 1.75;
}

.catalog-card__body p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.5em;
  font-size: 0.94rem;
  line-height: 1.7;
}

.catalog-card__actions,
.service-card__actions,
.product-modal__actions,
.contact-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.catalog-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-bottom: 18px;
}

.catalog-card .btn-card {
  min-height: 42px;
  padding: 0 14px;
  font-size: 0.88rem;
  font-weight: 800;
}

.catalog-card .btn-card i {
  font-size: 0.95rem;
}

.catalog-card .btn-card--ghost {
  background: rgba(255, 255, 255, 0.78);
}

.catalog-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
}

.services-highlight-link {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.services-highlight-link a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 248, 240, 0.88);
}

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

.service-card {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background: rgba(255, 248, 241, 0.06);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.service-card__media {
  min-height: 100%;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.service-card__body {
  padding: 30px;
}

.service-card__body h3,
.section-dark .section-heading h2,
.section-dark .content-chip,
.section-dark .catalog-note h3 {
  color: var(--white);
}

.section-dark .content-chip {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.section-dark .section-heading p,
.service-card__body p,
.service-card__body ul li,
.services-highlight-link a {
  color: rgba(255, 248, 240, 0.78);
}

.section-dark .btn-card--ghost {
  border-color: rgba(255, 255, 255, 0.14);
  background: transparent;
  color: var(--white);
}

.service-card__body ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 28px;
  padding: 0;
  list-style: none;
}

.service-card__body li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-card__body li i {
  color: #f0c79f;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: -18px;
}

.metric-card {
  padding: 34px 28px;
  border: 1px solid rgba(155, 91, 45, 0.12);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(246, 236, 224, 0.92));
  box-shadow: var(--shadow-md);
}

.metric-card strong {
  display: block;
  margin: 18px 0 8px;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.metric-card p {
  margin: 0;
  color: var(--text-soft);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow-md);
}

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

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

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

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, transparent, rgba(16, 13, 10, 0.66));
  color: var(--white);
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

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

.differential-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 252, 248, 0.82);
  box-shadow: var(--shadow-md);
}

.differential-card h3 {
  margin-top: 18px;
}

.faq-shell {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 30px;
}

.faq-intro {
  padding: 36px;
}

.faq-contact-card {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.66);
}

.faq-contact-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.faq-contact-card p {
  margin-bottom: 18px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 252, 248, 0.9);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px;
  text-align: left;
  color: var(--title);
  font-size: 1.03rem;
  font-weight: 800;
}

.faq-question i {
  transition: transform 0.25s ease;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 26px 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.faq-item.faq-active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.faq-active .faq-answer p {
  padding-bottom: 24px;
}

.faq-item.faq-active .faq-question i {
  transform: rotate(45deg);
}

.section-contact {
  padding-bottom: 120px;
}

.contact-card {
  display: flex;
  gap: 16px;
  padding: 22px 0;
}

.contact-card + .contact-card {
  border-top: 1px solid var(--line);
}

.contact-card span,
.contact-panel__footer span,
.footer-contact span {
  display: block;
  margin-bottom: 6px;
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.contact-card a,
.footer-links a,
.footer-contact a {
  color: var(--brand-strong);
  font-weight: 800;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-map {
  overflow: hidden;
  border-radius: 28px;
  min-height: 420px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

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

.contact-panel__footer div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
}

.contact-panel__footer strong {
  color: var(--title);
  line-height: 1.6;
}

.site-footer {
  padding: 90px 0 34px;
  background: #15120f;
  color: rgba(255, 248, 240, 0.82);
}

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

.brand-mark--footer strong {
  color: var(--white);
}

.footer-brand p,
.footer-cta p {
  margin: 20px 0 0;
  line-height: 1.8;
}

.footer-contact {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.site-footer h3 {
  margin: 0 0 20px;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.footer-links {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
}

.custom-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.custom-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.custom-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(8px);
}

.custom-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 252, 248, 1), rgba(246, 238, 230, 0.98));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.custom-modal__dialog--video {
  width: min(1080px, 100%);
}

.custom-modal__content,
.product-modal__layout {
  padding: 26px;
}

.custom-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(19, 16, 12, 0.08);
  color: var(--title);
}

.custom-modal video {
  width: 100%;
  margin-top: 20px;
  border-radius: 24px;
}

.product-modal__layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
}

.product-modal__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(239, 224, 207, 0.56), rgba(255, 255, 255, 0.3));
}

.product-modal__media img {
  max-height: 260px;
  object-fit: contain;
}

.product-modal__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: var(--white);
  box-shadow: 0 18px 40px rgba(127, 71, 32, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.scroll-top.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
}

@media (max-width: 1199px) {
  .catalog-grid,
  .differentials-grid,
  .metrics-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid,
  .faq-shell,
  .product-modal__layout,
  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card__media img {
    min-height: 320px;
  }

  .footer-grid {
    gap: 26px;
  }
}

@media (max-width: 991px) {
  .section {
    padding: 92px 0;
  }

  .navmenu {
    position: fixed;
    top: 88px;
    right: 16px;
    left: 16px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: rgba(17, 15, 13, 0.96);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.26);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

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

  .navmenu a,
  .btn-nav-cta {
    justify-content: flex-start;
    width: 100%;
  }

  .navmenu-cta {
    margin-left: 0;
  }

  .mobile-nav-toggle,
  .nav-overlay {
    display: block;
  }

  .mobile-nav-toggle {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 1.4rem;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 8, 0.48);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  body.mobile-nav-active .navmenu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.mobile-nav-active {
    overflow: hidden;
  }

  body.mobile-nav-active .nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .hero-section {
    min-height: auto;
    padding-top: 150px;
  }

  .about-feature-grid,
  .contact-panel__footer {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-visual__main {
    margin: 0 auto;
  }

  .card-a,
  .card-b {
    position: static;
    margin-top: 14px;
  }

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

@media (max-width: 767px) {
  .section {
    padding: 78px 0;
  }

  .header-shell {
    padding: 12px 14px;
  }

  .brand-mark img {
    width: 46px;
    height: 46px;
  }

  .brand-mark strong {
    font-size: 0.98rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.9rem, 15vw, 4.4rem);
  }

  .typed-line {
    display: block;
    min-height: 2.15em;
    white-space: normal;
    width: 100%;
  }

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

  .hero-meta {
    gap: 8px;
  }

  .hero-floating-card {
    animation-duration: 5.6s;
  }

  .hero-actions,
  .catalog-card__actions,
  .service-card__actions,
  .contact-panel__actions,
  .product-modal__actions,
  .catalog-note,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .catalog-grid,
  .metrics-grid,
  .differentials-grid,
  .footer-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item--lg,
  .gallery-item--wide {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-grid {
    grid-auto-rows: 240px;
  }

  .about-story,
  .about-media,
  .about-summary,
  .catalog-note,
  .faq-intro,
  .contact-sidebar,
  .contact-panel,
  .custom-modal__content,
  .product-modal__layout {
    padding: 24px;
  }

  .catalog-card__body,
  .catalog-card__actions {
    padding-left: 18px;
    padding-right: 18px;
  }

  .catalog-card__actions {
    grid-template-columns: 1fr;
  }

  .contact-map,
  .contact-map iframe,
  .service-card__media img {
    min-height: 280px;
  }

  .scroll-top {
    right: 18px;
    bottom: 18px;
  }
}
