:root {
  --primary: #fac901;
  --secondary: #3fff2a;
  --text-color: #667085;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

[id="about"],
[id="advantages"],
[id="why-us"],
[id="reviews"] {
  scroll-margin-top: 80px;
}

body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Header: flex, justify-between, 3 items; transparent at top, solid when scrolled */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: clamp(0.5rem, 2vw, 1rem) clamp(1rem, 4vw, 1.5rem);
  background: transparent;
  transition: background 0.25s ease;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-width: 0;
}

.header.header-scrolled {
  background: #1a1a1a;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-shrink: 0;
}

/* 1) Logo: GumiSil- white, Trio. primary, 700 bold, 20px */
.logo {
  font-size: clamp(16px, 4vw, 20px);
  font-weight: 700;
  white-space: nowrap;
}

.logo-before {
  color: white;
}

.logo-after {
  color: var(--primary);
}

/* 2) Nav: white bg, height 42px, border-radius 100px, padding 4px */
.nav {
  display: flex;
  align-items: center;
  background: white;
  height: 42px;
  border-radius: 100px;
  padding: 4px;
  min-width: 0;
}

.nav-list {
  display: flex;
  align-items: stretch;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}

.nav-list li {
  display: flex;
  align-items: stretch;
  height: 100%;
}

.nav-list .nav-link {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 500;
  color: black;
  background: transparent;
  border: none;
  padding: 0 clamp(10px, 1.5vw, 16px);
  height: 100%;
  border-radius: 100px;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.nav-list .nav-link:hover {
  background: rgba(250, 201, 1, 0.15);
}

.nav-list .nav-link:active,
.nav-list .nav-link.active {
  background: var(--primary);
  color: black;
}

/* 3) Header right: 2 horizontal items */
.header-right {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  min-width: 0;
  flex-shrink: 0;
}

/* 3.1 Social: fb.png, inst.png, 8px gap */
.social {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.social img {
  display: block;
}

/* 3.2 Phone: phone.png + 2 text rows in column, white; clickable tel: link */
.phone-block {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.phone-text {
  display: flex;
  flex-direction: column;
  color: white;
  font-size: 14px;
  line-height: 1.3;
}

.phone-label {
  font-weight: 400;
}

.phone-number {
  font-weight: 600;
}

/* Burger: hidden on desktop */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.burger-line {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: var(--primary);
  transition:
    transform 0.2s,
    opacity 0.2s;
}

body.menu-open .burger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
body.menu-open .burger-line:nth-child(2) {
  opacity: 0;
}
body.menu-open .burger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Dropdown nav-menu: hidden by default */
.nav-menu {
  position: fixed;
  inset: 0;
  top: 72px;
  z-index: 100;
  background: #1a1a1a;
  visibility: hidden;
  opacity: 0;
  transition:
    visibility 0.25s,
    opacity 0.25s;
}

body.menu-open .nav-menu {
  visibility: visible;
  opacity: 1;
}

/* Hero section */
.hero {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("assets/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: clamp(1rem, 4vw, 2rem) clamp(1rem, 4vw, 1.5rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.15) 35%,
    transparent 60%
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(36px, 6vw, 40px);
  font-weight: 700;
  color: white;
  margin: 0 0 1.5rem;
  line-height: 1.2;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 50px;
  }

  .hero-card-text {
    font-size: 32px;
  }

  .hero-cta {
    font-size: 20px;
    height: 64px;
    padding: 0 24px;
  }

  .hero-cta img {
    width: 28px;
    height: 28px;
  }
}

.hero-title-accent {
  color: var(--primary);
}

.hero-card {
  width: 100%;
  min-width: 0;
  padding: clamp(12px, 3vw, 20px);
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.hero-card-text {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(14px, 2.5vw, 18px);
  font-weight: 500;
  color: white;
  margin: 0;
  line-height: 1.4;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.hero-card-text .text-primary {
  color: var(--primary);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: clamp(48px, 10vw, 56px);
  padding: 0 clamp(12px, 3vw, 16px);
  margin-top: 1.25rem;
  background: var(--secondary);
  color: black;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 600;
  text-decoration: none;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: filter 0.2s;
  white-space: nowrap;
}

.hero-cta:hover {
  filter: brightness(1.05);
}

.hero-cta img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Stats section – 3 items, adaptive */
.stats {
  background: #fafafa;
  padding: clamp(1.5rem, 5vw, 50px) clamp(1rem, 6vw, 70px);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  align-items: flex-start;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 2rem);
  max-width: 1200px;
  margin: 0 auto;
}

.stats-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.stats-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 600;
  margin: 0;
  color: #1a1a1a;
  word-wrap: break-word;
}

.stats-text {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(14px, 2.2vw, 18px);
  font-weight: 500;
  margin: 0;
  color: #1a1a1a;
  line-height: 1.4;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

@media (max-width: 768px) {
  .stats-inner {
    gap: 2.5rem;
  }

  .stats-item-cert .stats-cert {
    display: none;
  }

  .stats-title {
    font-size: 36px;
  }

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

  .stats-item {
    text-align: center;
    align-items: center;
  }

  .stats-item-cert .stats-title-row {
    justify-content: center;
  }
}

.stats-item-cert .stats-title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.stats-item-cert .stats-title {
  flex-shrink: 0;
}

.stats-cert {
  width: 48px;
  height: 48px;
  max-width: 100%;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .stats-cert {
    width: 40px;
    height: 40px;
  }
}

/* Section row: title left, text right; stacks on narrow */
.section-row {
  margin-top: 64px;
  padding: 0 32px;
}

.section-row-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-row-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(20px, 4vw, 40px);
  font-weight: 600;
  margin: 0;
  color: #1a1a1a;
  flex: 1 1 0;
  min-width: 0;
  max-width: 45%;
}

.section-row-text {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  color: #667085;
  line-height: 1.5;
  flex: 1 1 0;
  min-width: 0;
  max-width: 45%;
}

@media (max-width: 768px) {
  .section-row-inner {
    flex-direction: column;
  }

  .section-row-title,
  .section-row-text {
    max-width: none;
  }
}

/* Three-column section: image, header, text */
.three-col-section {
  margin-top: 64px;
  padding: 0 32px;
}

.three-col-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.three-col-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.three-col-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 24px;
}

.three-col-item picture {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
}

.three-col-header {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 500;
  margin: 24px 0 0;
  color: #1a1a1a;
  line-height: 1.2;
}

.three-col-text {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 500;
  margin: 12px 0 0;
  color: var(--text-color);
  line-height: 1.4;
}

@media (min-width: 769px) {
  .three-col-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }

  .three-col-item {
    flex: 1 1 0;
    min-width: 0;
  }

  .three-col-img-tall {
    height: 516px;
    object-fit: cover;
  }

  .three-col-img-mid {
    height: 384px;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .three-col-item picture,
  .three-col-img {
    height: 280px;
    object-fit: cover;
  }
}

/* Gradient section: full width, form glass + 3 absolutely placed images */
.gradient-section {
  margin-top: 64px;
  width: 100%;
  background: linear-gradient(180deg, #288334 0%, #091d0c 100%);
}

.gradient-section-inner {
  position: relative;
  width: 100%;
  min-height: 320px;
  padding: 2rem 32px;
}

/* Liquid glass form container */
.gradient-form-glass {
  width: 100%;
  max-width: 689px;
  border-radius: 40px;
  padding: 32px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
  z-index: 10;
}

.gradient-form-title {
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 500;
  color: white;
  margin: 0 0 32px;
  line-height: 1.2;
}

.gradient-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.gradient-form-btn {
  margin-top: 8px;
}

.gradient-form-input {
  width: 100%;
  max-width: 385px;
  height: 56px;
  border-radius: 9999px;
  background: white;
  border: none;
  padding: 0 24px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #1a1a1a;
}

.gradient-form-input::placeholder {
  color: #667085;
}

.gradient-form-btn {
  width: 100%;
  max-width: 385px;
  height: 56px;
  margin-top: 8px;
  border-radius: 9999px;
  background: var(--secondary);
  color: black;
  border: none;
  padding: 0 24px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: filter 0.2s;
}

.gradient-form-btn:hover {
  filter: brightness(1.05);
}

.gradient-form-btn img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.gradient-images-stack {
  position: static;
}

.gradient-img {
  display: none;
}

@media (min-width: 769px) {
  .gradient-section-inner {
    height: 571px;
    overflow: hidden;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .gradient-img {
    display: block;
    position: absolute;
    bottom: 0;
    object-fit: contain;
    object-position: bottom;
  }

  .gradient-img-vegetables {
    left: -400px;
    width: 1600px;
    z-index: 1;
  }

  .gradient-img-cert {
    left: 50%;
    transform: translateX(-20%);
    width: 361px;
    height: 504px;
    max-height: 571px;
    z-index: 2;
  }

  .gradient-img-form {
    right: 0;
    width: 467px;
    height: 505px;
    max-height: 571px;
    z-index: 3;
  }
}

/* Mobile: form full width, vegetables absolute below form, cert + fert absolute side by side */
@media (max-width: 768px) {
  .gradient-form-glass {
    max-width: none;
  }

  .gradient-form-title {
    font-size: clamp(28px, 6vw, 48px);
  }

  .gradient-form-input,
  .gradient-form-btn {
    max-width: none;
  }

  .gradient-section-inner {
    min-height: 520px;
    padding-bottom: 24px;
  }

  .gradient-images-stack {
    position: relative;
    min-height: 500px;
    margin-top: 120px;
  }

  .gradient-img {
    display: block;
    position: absolute;
    object-fit: contain;
  }

  .gradient-img-vegetables {
    top: 0;
    left: 0;
    width: 140%;
    height: auto;
    z-index: 1;
  }

  .gradient-images-stack .gradient-img-cert,
  .gradient-images-stack .gradient-img-form {
    left: 50%;
    transform: translateX(-50%);
    height: auto;
  }

  .gradient-images-stack .gradient-img-cert {
    top: -80px;

    z-index: 2;
  }

  .gradient-images-stack .gradient-img-form {
    z-index: 3;
  }
}

/* Reviews section: carousel */
.reviews-section {
  margin-top: 64px;
  padding: 0 32px;
}

.reviews-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.reviews-title {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: black;
  margin: 0;
}

.reviews-nav {
  display: flex;
  gap: 12px;
}

.reviews-btn {
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: filter 0.2s;
}

.reviews-btn img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.reviews-btn-prev {
  background: #dedede;
}

.reviews-btn-prev img {
  transform: rotate(180deg);
}

.reviews-btn-next {
  background: var(--secondary);
}

.reviews-btn:hover {
  filter: brightness(0.95);
}

.reviews-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

.reviews-track::-webkit-scrollbar {
  height: 6px;
}

.reviews-track::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.review-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: calc(100% - 32px);
  max-width: 448px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.review-img {
  width: 100%;
  height: auto;
  aspect-ratio: 448 / 478;
  object-fit: cover;
  display: block;
}

.review-body {
  padding: 0;
}

.review-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.review-quote {
  flex-shrink: 0;
}

.review-header {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: black;
  margin: 0;
  line-height: 1.2;
}

.review-text {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
  margin: 12px 0 0;
  line-height: 1.5;
}

@media (min-width: 769px) {
  .review-item {
    width: calc((100% - 48px) / 3.2);
    min-width: 280px;
    max-width: 448px;
  }

  .review-img {
    aspect-ratio: 448 / 478;
  }
}

@media (max-width: 768px) {
  .review-item {
    width: 85%;
    min-width: 260px;
  }
}

/* Promo section: card with bg, title, glass list, image, footer */
.promo-section {
  margin-top: 64px;
  padding: 0 32px;
}

.promo-card {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 24px;
  background-image: url("assets/promo-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: clamp(1.5rem, 4vw, 48px);
  overflow: hidden;
}

.promo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.2) 45%,
    transparent 70%
  );
  pointer-events: none;
  border-radius: 24px;
}

.promo-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.promo-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}

.promo-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 500;
  margin: 0;
  color: white;
  line-height: 1.2;
}

.promo-glass {
  border-radius: 16px;
  padding: 24px 32px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.promo-glass-text {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  color: white;
  line-height: 1.4;
}

.promo-fin {
  color: #cd8e6d;
}

.promo-n {
  color: #007d4b;
}

.promo-d {
  color: #ff7125;
}

.promo-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-img {
  width: 100%;

  height: auto;
  display: block;
}

.promo-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.promo-footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.promo-footer-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.promo-footer-location {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: white;
}

.promo-footer-flag {
  width: 57px;
  height: auto;
  flex-shrink: 0;
}

.promo-footer-right {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.promo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  padding: 0 24px;
  background: var(--secondary);
  color: black;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 9999px;
  width: fit-content;
  transition: filter 0.2s;
}

.promo-cta:hover {
  filter: brightness(1.05);
}

.promo-cta img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.promo-footer-tagline {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.4;
  max-width: 40ch;
}

@media (min-width: 769px) {
  .promo-inner {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    margin-bottom: 2rem;
  }

  .promo-left {
    flex: 1 1 50%;
    min-width: 0;
  }

  .promo-right {
    flex: 0 0 47%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 100%;
  }

  .promo-img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .promo-footer {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .promo-footer-right {
    align-items: flex-end;
    text-align: right;
  }

  .promo-footer-tagline {
    text-align: right;
  }
}

/* Gallery section: 4 items, photo + text */
.gallery-section {
  margin-top: 64px;
  padding: 0 32px;
}

.gallery-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}

.gallery-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.gallery-item-text {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin: 16px 0 0;
  color: #1a1a1a;
  line-height: 1.3;
}

/* Tablet: 2 columns, second column 96px lower */
@media (min-width: 769px) and (max-width: 1032px) {
  .gallery-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
  }

  .gallery-item:nth-child(2),
  .gallery-item:last-child {
    margin-top: 96px;
  }

  .gallery-item-offset {
    margin-top: 0;
  }
}

/* PC: horizontal row, items 2 and 4 offset 142px, photo height 332px, ~25% width */
@media (min-width: 1033px) {
  .gallery-inner {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
  }

  .gallery-item {
    flex: 1 1 calc(25% - 12px);
    min-width: 0;
  }

  .gallery-item-offset {
    margin-top: 142px;
  }

  .gallery-img {
    width: 100%;
    object-fit: cover;
  }

  .gallery-item-text {
    margin-top: 16px;
  }
}

.nav-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
  overflow: auto;
}

.nav-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-menu-list .nav-menu-link {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--primary);
  background: transparent;
  border: none;
  padding: 12px 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
  border-radius: 100px;
  display: block;
  text-decoration: none;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.nav-menu-list .nav-menu-link:hover {
  background: rgba(250, 201, 1, 0.15);
}

.nav-menu-list .nav-menu-link.active {
  background: var(--primary);
  color: black;
}

/* Nav hidden and burger shown when width < 1000px */
@media (max-width: 999px) {
  .burger-btn {
    display: flex;
  }

  .header .nav {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 50px;
  }

  .hero-card-text {
    font-size: 24px;
  }
  .promo-img {
    max-width: unset;
  }
}

@media (max-width: 569px) {
  .header-right .social {
    display: none;
  }
}

@media (max-width: 360px) {
  .phone-block img {
    display: none;
  }

  .hero-title {
    font-size: 50px;
  }

  .hero-card-text {
    font-size: 24px;
  }
}

@media (max-width: 500px) {
  .header {
    padding: 0.5rem 0.75rem;
  }

  .header-left {
    gap: 8px;
  }

  .logo {
    font-size: 16px;
  }

  .header-right {
    gap: 0.75rem;
  }

  .phone-text {
    font-size: 12px;
  }

  .burger-btn {
    width: 36px;
    height: 36px;
    padding: 6px;
  }

  .nav-menu {
    top: 60px;
  }

  .nav-menu-inner {
    padding: 1rem;
  }

  .nav-menu-list .nav-menu-link {
    font-size: 14px;
    padding: 10px 0;
  }

  .hero-title {
    font-size: 50px;
  }

  .hero-card-text {
    font-size: 24px;
  }

  .hero-cta {
    font-size: 15px;
  }
}

/* Hide nav-menu dropdown when horizontal nav is visible (width >= 1000px) */
@media (min-width: 1000px) {
  .nav-menu {
    display: none;
  }
}

/* Footer */
.site-footer {
  background: white;
  color: #1a1a1a;
  padding: 48px 32px 24px;
  margin-top: 64px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  max-width: 1200px;
  margin: 0 auto 32px;
}

.footer-logo {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.footer-logo .logo-before {
  color: #1a1a1a;
}

.footer-logo .logo-after {
  color: var(--primary);
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.footer-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.footer-phone .phone-text {
  color: #1a1a1a;
}

.footer-columns {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 32px;
}

.footer-col-title {
  width: 100%;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: black;
  margin: 0 0 32px;
  line-height: 1.2;
  text-align: left;
}

.site-footer .footer-col-title {
  color: #1a1a1a;
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-form-input {
  width: 100%;
  max-width: 385px;
  height: 56px;
  border-radius: 9999px;
  background: white;
  border: 2px solid #606060;
  padding: 0 24px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #1a1a1a;
}

.footer-form-input::placeholder {
  color: #667085;
}

.footer-form-btn {
  width: 100%;
  max-width: 385px;
  height: 56px;
  border-radius: 9999px;
  background: var(--secondary);
  color: black;
  border: none;
  padding: 0 24px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.2s;
}

.footer-form-btn:hover {
  filter: brightness(1.05);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-nav a {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
}

.footer-contact-item img {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.footer-contact-item a {
  color: #1a1a1a;
  text-decoration: none;
}

.footer-contact-item a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 24px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #667085;
}

.footer-ic {
  flex-shrink: 0;
}

.footer-trio {
  color: var(--secondary);
}

@media (max-width: 768px) {
  .footer-col-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-col-form .footer-col-title {
    text-align: left;
  }
  .footer-col-form .footer-form {
    align-items: center;
    max-width: 385px;
    width: 100%;
  }
  .header-inner {
    margin-left: 0;
    margin-right: auto;
  }
}

@media (min-width: 769px) {
  .footer-columns {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

/* Order success modal */
.order-success-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.order-success-overlay[aria-hidden="true"] {
  display: none;
}

.order-success-modal {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 24px;
  padding: 2rem 2.5rem;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.order-success-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2d3748;
  margin: 0 0 1rem;
}

.order-success-text {
  font-size: 1.125rem;
  color: #4a5568;
  margin: 0 0 1.5rem;
  line-height: 1.5;
}

.order-success-info {
  background: #f7fafc;
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.order-success-info-item {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #2d3748;
}

.order-success-info-item:last-child {
  margin-bottom: 0;
}

.order-success-info-label {
  font-weight: 600;
  color: #667eea;
}

.order-success-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background: var(--primary);
  color: #1a1a1a;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.2s;
}

.order-success-close:hover {
  filter: brightness(1.05);
}

/* Thank you page styles */
.thank-you-section {
  margin: 0;
  padding: 2rem 1rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d3748 100%);
}

.thank-you-container {
  max-width: 600px;
  width: 100%;
}

.thank-you-card {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 40px;
  padding: 3rem 2.5rem;
  text-align: center;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 50%;
  color: #1a1a1a;
}

.thank-you-icon svg {
  width: 48px;
  height: 48px;
}

.thank-you-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: white;
  margin: 0 0 1rem;
}

.thank-you-text {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 2rem;
  line-height: 1.6;
}

.thank-you-info {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

.thank-you-info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.thank-you-info-item:last-child {
  border-bottom: none;
}

.thank-you-info-label {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.thank-you-info-value {
  color: white;
  font-weight: 500;
  font-size: 1rem;
}

.thank-you-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  padding: 0 24px;
  border-radius: 9999px;
  background: var(--primary);
  color: #1a1a1a;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: filter 0.2s;
}

.thank-you-btn:hover {
  filter: brightness(1.05);
}

@media (max-width: 768px) {
  .thank-you-section {
    margin: 0;
    padding: 1.5rem 1rem;
  }

  .thank-you-card {
    padding: 2rem 1.5rem;
    border-radius: 24px;
  }

  .thank-you-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
  }

  .thank-you-icon svg {
    width: 36px;
    height: 36px;
  }

  .thank-you-info {
    padding: 1.25rem;
  }

  .thank-you-info-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
