:root {
  --bg: #f4f0e8;
  --surface: #fffdf8;
  --surface-soft: #f7f1e6;
  --text: #1a1612;
  --muted: #5f564c;
  --primary: #1d5c38;
  --primary-light: #2a7a4d;
  --secondary: #c4843a;
  --secondary-soft: #e8c99a;
  --line: rgba(26, 22, 18, 0.1);
  --shadow-soft: 0 12px 36px rgba(22, 18, 12, 0.1);
  --shadow-strong: 0 24px 56px rgba(22, 18, 12, 0.22);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --space: 96px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  font-size: 1.7rem;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 6%, rgba(255, 236, 198, 0.55) 0%, transparent 42%),
    radial-gradient(circle at 92% 12%, rgba(196, 228, 204, 0.45) 0%, transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(232, 201, 154, 0.2) 0%, transparent 50%),
    var(--bg);
  padding-top: 108px;
  overflow-x: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

address {
  font-style: normal;
}

.container {
  width: min(1240px, calc(100% - 36px));
  margin-inline: auto;
}

.section {
  padding-block: var(--space);
}

.eyebrow {
  display: inline-block;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(29, 92, 56, 0.08);
  border: 1px solid rgba(29, 92, 56, 0.12);
}

h1,
h2,
.logo-text,
.quote-card,
.hero-quote,
.video-card h3,
.service-card h3 {
  font-family: "Cormorant Garamond", serif;
}

h1 {
  font-size: clamp(3.8rem, 5.8vw, 6.4rem);
  line-height: 1.04;
  margin-bottom: 18px;
  color: #14110d;
}

h2 {
  font-size: clamp(3.1rem, 4.2vw, 5rem);
  line-height: 1.08;
  color: #14110d;
}

.section-head {
  margin-bottom: 34px;
  max-width: 760px;
}

.section-head > p:not(.eyebrow) {
  color: var(--muted);
  margin-top: 12px;
}

.header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1240px, calc(100% - 28px));
  z-index: 100;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 32px rgba(22, 18, 12, 0.1);
  transition: box-shadow 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.header.scrolled {
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 16px 44px rgba(22, 18, 12, 0.15);
  top: 10px;
}

.header-inner {
  min-height: 74px;
  padding-inline: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  box-shadow: 0 8px 20px rgba(29, 92, 56, 0.28);
}

.logo-text {
  font-size: clamp(2.8rem, 3.5vw, 3.6rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(29, 92, 56, 0.14);
  border-radius: 14px;
  background: linear-gradient(145deg, #fff, #f3ebe0);
  padding: 11px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.menu-btn:hover,
.menu-btn:focus-visible {
  border-color: rgba(29, 92, 56, 0.28);
  box-shadow: 0 8px 20px rgba(29, 92, 56, 0.12);
}

.menu-btn span {
  display: block;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease, width 0.28s ease;
}

.menu-btn span:nth-child(1) {
  width: 100%;
}

.menu-btn span:nth-child(2) {
  width: 72%;
  margin-left: auto;
}

.menu-btn span:nth-child(3) {
  width: 88%;
  margin-left: auto;
}

.menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 100%;
  margin-left: 0;
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 100%;
  margin-left: 0;
}

.mobile-nav-head,
.mobile-nav-eyebrow,
.mobile-nav-cta,
.nav-link-index,
.nav-link-active-tag {
  display: none;
}

.menu-close-btn {
  display: none;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.nav-links {
  display: contents;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  font-size: 1.45rem;
  font-weight: 600;
  color: #3f362d;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background-color 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.nav-link-label {
  line-height: 1.2;
}

.nav-link:hover,
.nav-link:focus-visible {
  background: rgba(29, 92, 56, 0.08);
  color: var(--primary);
}

.nav-link.active {
  background: linear-gradient(135deg, rgba(29, 92, 56, 0.16), rgba(196, 132, 58, 0.2));
  color: var(--primary);
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(29, 92, 56, 0.12);
}

.logo-mark--sm {
  width: 38px;
  height: 38px;
  font-size: 1.35rem;
  border-radius: 11px;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 18, 13, 0.58);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 110;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

body.nav-open {
  overflow: hidden;
}

.hero {
  padding-top: 12px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.hero-content {
  background: linear-gradient(155deg, #fffaf2 0%, #f3e8d4 100%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 42px 38px;
}

.hero-content > p {
  color: #4d443a;
  max-width: 58ch;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 24px;
  font-size: 1.5rem;
  font-weight: 700;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  box-shadow: 0 12px 28px rgba(29, 92, 56, 0.28);
}

.btn-outline {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: #2f271f;
}

.hero-visual {
  display: grid;
  gap: 16px;
}

.hero-slider {
  position: relative;
  min-height: 380px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 3px solid rgba(255, 255, 255, 0.85);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.8s ease, transform 1.1s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12, 10, 8, 0.35) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  padding: 0;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.hero-dot.active {
  background: #fff;
  transform: scale(1.25);
}

.hero-quote {
  color: #fff;
  background: linear-gradient(140deg, #1a4a2e 0%, #2a7a4d 55%, #a86f2a 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: center;
  font-size: clamp(2.4rem, 2.8vw, 3.4rem);
  line-height: 1.18;
  padding: 26px 28px;
}

.services {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.45) 40%, transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 26px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(22, 18, 12, 0.14);
}

.service-icon {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--secondary);
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 2.6rem;
  margin-bottom: 10px;
  color: #1f1912;
}

.service-card p {
  color: var(--muted);
  font-size: 1.55rem;
}

.featured {
  background: rgba(255, 255, 255, 0.35);
}

.main-gallery {
  columns: 4 250px;
  column-gap: 16px;
}

.main-card {
  width: 100%;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  break-inside: avoid;
  display: block;
}

.main-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 20px 42px rgba(22, 18, 12, 0.18);
}

.main-card img {
  width: 100%;
  height: auto;
  transition: transform 0.45s ease;
}

.main-card:hover img {
  transform: scale(1.04);
}

.quote-strip {
  padding-block: 56px;
  background: linear-gradient(135deg, #1d5c38 0%, #2a7a4d 50%, #8f5e24 100%);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.quote-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  font-size: clamp(2.2rem, 2.5vw, 3rem);
  line-height: 1.18;
  color: #fff;
}

.products-section {
  background: linear-gradient(180deg, rgba(247, 241, 230, 0.5), transparent);
}

.products-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 14px;
}

.product-card {
  width: 100%;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 22px rgba(22, 18, 12, 0.08);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: block;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(22, 18, 12, 0.16);
  z-index: 2;
}

.product-image-wrap {
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover img {
  transform: scale(1.18);
}

.videos-section {
  background: rgba(255, 255, 255, 0.3);
}

.video-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.video-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
}

.video-preview {
  position: relative;
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #1a2e22;
  cursor: pointer;
}

.video-preview:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 2px;
}

.video-preview video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  pointer-events: none;
}

.video-play-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  color: #fff;
  background: rgba(12, 10, 8, 0.28);
  transition: background-color 0.22s ease;
  pointer-events: none;
}

.video-preview:hover .video-play-icon,
.video-preview:focus-visible .video-play-icon {
  background: rgba(12, 10, 8, 0.42);
}

.video-meta {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: linear-gradient(180deg, #fffdf8, #f5efe4);
}

.video-card h3 {
  font-size: 2.4rem;
  line-height: 1.05;
  color: #1a1612;
}

.video-card p {
  font-size: 1.45rem;
  color: var(--muted);
  margin-top: 6px;
}

.video-play-btn {
  margin-top: auto;
  padding-top: 14px;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border-radius: 999px;
  width: max-content;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 1.4rem;
  box-shadow: 0 8px 20px rgba(29, 92, 56, 0.22);
  transition: transform 0.2s ease;
}

.video-play-btn:hover {
  transform: translateY(-2px);
}

.contact {
  padding-top: 72px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: stretch;
}

.contact-content {
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.contact-lead {
  color: var(--muted);
  margin-top: 10px;
}

.contact-list {
  list-style: none;
  margin-top: 24px;
  display: grid;
  gap: 18px;
}

.contact-label {
  display: block;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-list a {
  color: var(--primary);
  font-weight: 700;
}

.contact-btn {
  margin-top: 26px;
}

.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 3px solid rgba(255, 255, 255, 0.85);
  min-height: 380px;
}

.map-embed {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

.footer {
  margin-top: 20px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
  padding-block: 28px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px 24px;
  align-items: center;
}

.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.footer-brand p:last-child {
  color: var(--muted);
  font-size: 1.45rem;
  margin-top: 4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
}

.footer a {
  color: var(--primary);
  font-weight: 700;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 95;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(29, 92, 56, 0.32);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, box-shadow 0.2s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(29, 92, 56, 0.38);
}

.gallery-error {
  color: #8b2f2f;
  background: #fff0f0;
  border: 1px solid #f0c8c8;
  border-radius: var(--radius-md);
  padding: 16px 18px;
}

.video-modal,
.image-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.video-modal.active,
.image-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.modal-open {
  overflow: hidden;
}

.video-modal-box,
.image-modal-box {
  width: min(960px, 100%);
  background: #101010;
  color: #fff;
  border-radius: 18px;
  padding: 12px;
  position: relative;
  box-shadow: var(--shadow-strong);
}

.video-close,
.image-modal-close {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  margin-bottom: 10px;
}

.video-modal video {
  width: 100%;
  max-height: 76vh;
  border-radius: 10px;
  background: #000;
}

[data-active-image] {
  width: 100%;
  min-height: 240px;
  max-height: 74vh;
  display: block;
  margin-inline: auto;
  object-fit: contain;
  border-radius: 10px;
  background: #111;
}

.image-stage {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
}

.image-stage .image-nav {
  position: static;
  transform: none;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 2.6rem;
  line-height: 1;
}

.image-counter {
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.35rem;
  margin-top: 10px;
}

.thumb-strip {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.thumb-strip button {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  border-radius: 8px;
  width: 68px;
  height: 52px;
  overflow: hidden;
  opacity: 0.75;
  flex: 0 0 auto;
}

.thumb-strip button.active {
  border-color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}

.thumb-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  :root {
    --space: 72px;
  }

  body {
    padding-top: 96px;
  }

  .header {
    top: 10px;
    left: 10px;
    right: 10px;
    width: auto;
    transform: none;
    border-radius: 20px;
  }

  .header-inner {
    min-height: 66px;
    padding-inline: 16px;
  }

  .logo-text {
    font-size: 2.6rem;
  }

  .menu-btn {
    display: inline-flex;
  }

  .navbar {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    max-width: 100%;
    height: 100dvh;
    z-index: 120;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    border-radius: 0;
    border: none;
    border-left: 1px solid var(--line);
    background: var(--surface);
    box-shadow: -16px 0 40px rgba(22, 18, 12, 0.14);
    transform: translateX(105%);
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
  }

  .navbar.active {
    transform: translateX(0);
  }

  .mobile-nav-head,
  .mobile-nav-eyebrow,
  .mobile-nav-cta {
    display: flex;
    flex-shrink: 0;
  }

  .mobile-nav-head {
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 18px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    color: var(--text);
  }

  .mobile-nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
  }

  .mobile-nav-brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }

  .mobile-nav-brand-text strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.3rem;
    line-height: 1;
    font-weight: 700;
    color: var(--primary);
  }

  .mobile-nav-brand-text span {
    font-size: 1.25rem;
    color: var(--muted);
    letter-spacing: 0.02em;
  }

  .menu-close-btn {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    flex-shrink: 0;
    position: relative;
  }

  .menu-close-btn span {
    position: absolute;
    width: 16px;
    height: 2px;
    background: #3b332b;
    border-radius: 2px;
  }

  .menu-close-btn span:first-child {
    transform: rotate(45deg);
  }

  .menu-close-btn span:last-child {
    transform: rotate(-45deg);
  }

  .mobile-nav-eyebrow {
    margin: 0;
    padding: 16px 18px 8px;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
    color: var(--muted);
    background: var(--surface);
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 12px 12px;
    flex: 1;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--surface);
  }

  .nav-link {
    width: 100%;
    justify-content: flex-start;
    gap: 12px;
    padding: 13px 14px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--line);
    color: #3b332b;
    box-shadow: none;
  }

  .nav-link-index {
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: var(--surface-soft);
    color: var(--muted);
    font-size: 1.15rem;
    font-weight: 700;
    flex-shrink: 0;
  }

  .nav-link-label {
    flex: 1;
    font-size: 1.5rem;
  }

  .nav-link-active-tag {
    display: none;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(29, 92, 56, 0.1);
    white-space: nowrap;
  }

  .nav-link.active {
    background: #fff;
    border-color: rgba(29, 92, 56, 0.28);
    border-left: 4px solid var(--primary);
    color: var(--primary);
    box-shadow: 0 4px 14px rgba(29, 92, 56, 0.08);
    transform: none;
    padding-left: 11px;
  }

  .nav-link.active .nav-link-index {
    background: rgba(29, 92, 56, 0.12);
    color: var(--primary);
  }

  .nav-link.active .nav-link-active-tag {
    display: inline-flex;
  }

  .navbar.active .nav-link {
    animation: navItemIn 0.38s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  }

  .navbar.active .nav-link:nth-child(1) { animation-delay: 0.04s; }
  .navbar.active .nav-link:nth-child(2) { animation-delay: 0.07s; }
  .navbar.active .nav-link:nth-child(3) { animation-delay: 0.1s; }
  .navbar.active .nav-link:nth-child(4) { animation-delay: 0.13s; }
  .navbar.active .nav-link:nth-child(5) { animation-delay: 0.16s; }
  .navbar.active .nav-link:nth-child(6) { animation-delay: 0.19s; }

  @keyframes navItemIn {
    from {
      opacity: 0;
      transform: translateX(10px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .mobile-nav-cta {
    margin-top: 0;
    flex-direction: column;
    gap: 8px;
    padding: 14px 12px calc(14px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: #fff;
  }

  .mobile-nav-call,
  .mobile-nav-mail {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 12px;
    font-size: 1.4rem;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .mobile-nav-call {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    box-shadow: 0 8px 20px rgba(29, 92, 56, 0.2);
  }

  .mobile-nav-mail {
    color: var(--primary);
    background: var(--surface);
    border: 1px solid var(--line);
  }

  .mobile-nav-call:hover,
  .mobile-nav-mail:hover,
  .mobile-nav-call:focus-visible,
  .mobile-nav-mail:focus-visible {
    transform: translateY(-1px);
  }

  .hero-layout,
  .quote-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-slider {
    min-height: 300px;
  }

  .video-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-content {
    padding: 30px 26px;
  }
}

@media (max-width: 660px) {
  .container {
    width: min(1240px, calc(100% - 22px));
  }

  .main-gallery {
    columns: 2 140px;
    column-gap: 10px;
  }

  .products-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .video-gallery,
  .services-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .quote-card {
    font-size: 2.2rem;
  }

  .image-stage .image-nav {
    width: 38px;
    height: 38px;
    font-size: 2.1rem;
  }

  .thumb-strip button {
    width: 54px;
    height: 44px;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 46px;
    height: 46px;
    font-size: 2.1rem;
  }
}
