@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  /* Rezerwuje miejsce na scrollbar – zapobiega przesuwaniu przy otwieraniu menu */
  scrollbar-gutter: stable;
}

body {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #2c2c2c;
  background-color: #faf8f5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: rgba(250, 248, 245, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(92, 124, 90, 0.08);
  transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header--scrolled {
  box-shadow: 0 4px 20px rgba(45, 74, 46, 0.08);
}

.navbar {
  padding: 1.5rem 0;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #2c2c2c;
  border-radius: 10px;
  transition: color background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header-social a:hover {
  color: #5c7c5a;
  background: rgba(92, 124, 90, 0.08);
}
.header-social a svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 767px) {
  .header-social {
    display: none;
  }
}

/* Ukryj banner Google Translate */
body > .skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

.lang-switcher {
  position: relative;
}

.lang-switcher-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 36px;
  padding: 0 1rem;
  background: #5c7c5a;
  border: 1px solid rgba(45, 74, 46, 0.5);
  border-radius: 9999px;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #faf8f5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background-color border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.lang-switcher-btn:hover {
  background: #2d4a2e;
  border-color: #2d4a2e;
}
.lang-switcher-btn .lang-chevron {
  opacity: 0.9;
  transition: transform 0.3s;
}
.lang-switcher-btn[aria-expanded=true] .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 180px;
  background: #faf8f5;
  border-radius: 10px;
  box-shadow: 0 8px 40px rgba(45, 74, 46, 0.12);
  border: 1px solid #e8e2d8;
  padding: 0.25rem;
  z-index: 1100;
  display: none;
}
.lang-dropdown.is-open {
  display: block;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 0.5rem 1rem;
  border: none;
  background: transparent;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.875rem;
  color: #2c2c2c;
  cursor: pointer;
  border-radius: 6px;
  text-align: left;
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.lang-option:hover {
  background: rgba(92, 124, 90, 0.08);
}
.lang-option .lang-flag {
  font-size: 1.25em;
}

@media (max-width: 767px) {
  .lang-switcher-btn {
    min-height: 34px;
    padding: 0 0.5rem;
    font-size: 0.75rem;
  }
  .lang-dropdown {
    min-width: 160px;
  }
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.logo:hover img {
  opacity: 0.85;
}
@media (max-width: 767px) {
  .logo img {
    height: 36px;
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-menu a {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: #2c2c2c;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  transition: background-color color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-menu a:hover {
  background-color: rgba(92, 124, 90, 0.08);
  color: #5c7c5a;
}
.nav-menu a.active {
  background-color: #5c7c5a;
  color: #faf8f5;
}
@media (max-width: 767px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    background-color: #faf8f5;
    box-shadow: -4px 0 24px rgba(44, 44, 44, 0.12);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }
  .nav-menu.active {
    transform: translateX(0);
  }
  .nav-menu a {
    display: block;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 0;
    border-bottom: 1px solid #e8e2d8;
  }
  .nav-menu .nav-menu-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    border-bottom: none;
  }
  .nav-menu .nav-menu-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: 10px;
    background: rgba(92, 124, 90, 0.1);
  }
  .nav-menu .nav-menu-social a svg {
    width: 24px;
    height: 24px;
    color: #5c7c5a;
  }
}

.nav-menu .nav-menu-social {
  display: none;
}
@media (max-width: 767px) {
  .nav-menu .nav-menu-social {
    display: flex;
  }
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0.5rem;
  z-index: 1001;
}
@media (max-width: 767px) {
  .menu-toggle {
    display: flex;
  }
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #2c2c2c;
  transition: transform opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(44, 44, 44, 0.4);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-overlay.active {
  display: block;
  opacity: 1;
}
@media (min-width: 768px) {
  .nav-overlay {
    display: none !important;
  }
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  min-height: calc(100dvh - 76px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #faf8f5;
  text-align: center;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero {
    background-attachment: scroll;
    min-height: calc(100vh - 76px);
    min-height: calc(100dvh - 76px);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 51, 32, 0.75) 0%, rgba(45, 74, 46, 0.6) 50%, rgba(92, 124, 90, 0.5) 100%);
}

.floating-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(250, 248, 245, 0.03);
  will-change: transform;
}
.shape.shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation: float-1 35s ease-in-out infinite;
}
.shape.shape-2 {
  width: 250px;
  height: 250px;
  bottom: 10%;
  left: -50px;
  animation: float-2 40s ease-in-out infinite;
  animation-delay: -8s;
}
.shape.shape-3 {
  width: 150px;
  height: 150px;
  top: 40%;
  left: 20%;
  animation: float-3 30s ease-in-out infinite;
  animation-delay: -15s;
}

@keyframes float-1 {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-30px, 25px);
  }
  50% {
    transform: translate(20px, -35px);
  }
  75% {
    transform: translate(-15px, -20px);
  }
}
@keyframes float-2 {
  0%, 100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(40px, -15px);
  }
  66% {
    transform: translate(-25px, 30px);
  }
}
@keyframes float-3 {
  0%, 100% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(25px, 20px);
  }
  40% {
    transform: translate(-20px, -25px);
  }
  60% {
    transform: translate(-15px, 15px);
  }
  80% {
    transform: translate(30px, -10px);
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .hero-content {
    padding: 2rem;
  }
}
.hero-content .hero-badge {
  display: inline-block;
  font-family: "DM Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 248, 245, 0.9);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(250, 248, 245, 0.3);
  border-radius: 9999px;
}
.hero-content h1 {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(1.75rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(26, 51, 32, 0.4);
}
.hero-content .gradient-text {
  background: linear-gradient(135deg, #e8a87c, #f5f0e8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content .hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 400;
  opacity: 0.95;
  margin-bottom: 3rem;
  text-shadow: 0 1px 10px rgba(26, 51, 32, 0.3);
}
.hero-content .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 10px;
  transition: transform background-color color border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background-color: #faf8f5;
  color: #5c7c5a;
  border: 2px solid #faf8f5;
}
.btn-primary:hover {
  background-color: transparent;
  color: #faf8f5;
  border-color: #faf8f5;
}

.btn-secondary {
  background-color: transparent;
  color: #faf8f5;
  border: 2px solid rgba(250, 248, 245, 0.6);
}
.btn-secondary:hover {
  background-color: rgba(250, 248, 245, 0.15);
  border-color: #faf8f5;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s ease-in-out infinite;
}
.scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(250, 248, 245, 0.6);
  border-radius: 12px;
  position: relative;
}
.scroll-indicator span::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(250, 248, 245, 0.8);
  border-radius: 2px;
  animation: scroll-down 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}
@keyframes scroll-down {
  0% {
    opacity: 0;
    top: 8px;
  }
  50% {
    opacity: 1;
    top: 16px;
  }
  100% {
    opacity: 0;
    top: 24px;
  }
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

.page-hero {
  position: relative;
  padding: 4rem 1.5rem;
}
@media (min-width: 768px) {
  .page-hero {
    padding: 5rem 2rem;
  }
}
.page-hero {
  text-align: center;
  background: linear-gradient(160deg, #2d4a2e 0%, #5c7c5a 50%, #1a3320 100%);
  color: #faf8f5;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.page-hero p {
  font-size: 1.0625rem;
  opacity: 0.9;
}

.section-header {
  margin-bottom: 4rem;
  text-align: left;
}
.section-header.text-center {
  text-align: center;
}
.section-header .section-label {
  display: inline-block;
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5c7c5a;
  margin-bottom: 0.5rem;
}
.section-header .section-label.light {
  color: rgba(250, 248, 245, 0.8);
}
.section-header h2 {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  color: #2c2c2c;
  line-height: 1.25;
}
.section-header.text-center .section-header h2, .why-us .section-header h2 {
  color: #faf8f5;
}
.section-header .section-description {
  margin-top: 1rem;
  font-size: 1.0625rem;
  color: #5a5a5a;
  text-align: center;
}
.text-center .section-header .section-description {
  margin-left: auto;
  margin-right: auto;
}

.about {
  padding: 4rem 1.5rem;
}
@media (min-width: 768px) {
  .about {
    padding: 5rem 2rem;
  }
}
@media (min-width: 992px) {
  .about {
    padding: 6rem 2rem;
  }
}
.about {
  background-color: #faf8f5;
}

.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}
@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

.about-image {
  position: relative;
  order: 1;
}
.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(45, 74, 46, 0.12);
}
.about-image .about-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: #faf8f5;
  padding: 1rem 1.5rem;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(45, 74, 46, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-image .about-badge .badge-number {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #5c7c5a;
  line-height: 1;
}
.about-image .about-badge .badge-text {
  font-size: 0.75rem;
  color: #5a5a5a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-content {
  order: 2;
}
.about-content h3 {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: #2d4a2e;
  margin-bottom: 1.5rem;
}
.about-content p {
  font-size: 1rem;
  line-height: 1.65;
  color: #5a5a5a;
  margin-bottom: 1rem;
}

.about-features {
  margin-top: 2rem;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #2c2c2c;
}

.check-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #5c7c5a;
}
.check-icon svg {
  width: 100%;
  height: 100%;
}

.delivery {
  padding: 4rem 1.5rem;
}
@media (min-width: 768px) {
  .delivery {
    padding: 5rem 2rem;
  }
}
@media (min-width: 992px) {
  .delivery {
    padding: 6rem 2rem;
  }
}
.delivery {
  background-color: #faf8f5;
}

.delivery-wrapper {
  display: grid;
  gap: 4rem;
  margin-bottom: 5rem;
}
@media (min-width: 992px) {
  .delivery-wrapper {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
  }
}

.delivery-content .section-label {
  display: block;
  margin-bottom: 0.5rem;
}
.delivery-content h2 {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  color: #2d4a2e;
  margin-bottom: 1.5rem;
}
.delivery-content .delivery-lead {
  font-size: 1.0625rem;
  font-weight: 500;
  color: #2c2c2c;
  margin-bottom: 1rem;
}
.delivery-content p {
  font-size: 1rem;
  line-height: 1.65;
  color: #5a5a5a;
  margin-bottom: 1rem;
}
.delivery-content .delivery-highlight {
  font-weight: 600;
  color: #5c7c5a;
  margin-bottom: 2rem;
}
.delivery-content .btn-primary {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 1rem 2rem;
  background: #5c7c5a;
  color: #faf8f5 !important;
  border: 2px solid #5c7c5a;
  border-radius: 10px;
  font-weight: 600;
  transition: background-color border-color transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.delivery-content .btn-primary:hover {
  background: #2d4a2e;
  border-color: #2d4a2e;
  transform: translateY(-2px);
}

.delivery-images {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .delivery-images {
    order: -1;
  }
}

.delivery-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(45, 74, 46, 0.08);
}
.delivery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.delivery-img:hover img {
  transform: scale(1.03);
}
.delivery-img.delivery-img-main {
  aspect-ratio: 16/10;
}
.delivery-img.delivery-img-secondary {
  aspect-ratio: 16/10;
}
@media (min-width: 768px) {
  .delivery-img.delivery-img-secondary {
    max-width: 85%;
    align-self: flex-end;
  }
}

.delivery-gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .delivery-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

.delivery-gallery-item {
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(45, 74, 46, 0.06);
  transition: transform box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.delivery-gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(45, 74, 46, 0.08);
}
.delivery-gallery-item:hover img {
  transform: scale(1.05);
}
.delivery-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.features {
  padding: 4rem 1.5rem;
}
@media (min-width: 768px) {
  .features {
    padding: 5rem 2rem;
  }
}
@media (min-width: 992px) {
  .features {
    padding: 6rem 2rem;
  }
}
.features {
  background-color: #f5f0e8;
}

.features-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card {
  background: #faf8f5;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(45, 74, 46, 0.06);
  border: 1px solid #e8e2d8;
  transition: transform box-shadow border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(45, 74, 46, 0.12);
  border-color: rgba(92, 124, 90, 0.2);
}
.feature-card .feature-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.5rem;
  color: #5c7c5a;
}
.feature-card .feature-icon svg {
  width: 100%;
  height: 100%;
}
.feature-card h3 {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d4a2e;
  margin-bottom: 1rem;
}
.feature-card p {
  font-size: 1rem;
  line-height: 1.65;
  color: #5a5a5a;
  margin-bottom: 1rem;
}
.feature-card .feature-highlight {
  font-weight: 500;
  color: #5c7c5a;
  margin-bottom: 0;
}

.why-us {
  position: relative;
  padding: 4rem 1.5rem;
}
@media (min-width: 768px) {
  .why-us {
    padding: 5rem 2rem;
  }
}
@media (min-width: 992px) {
  .why-us {
    padding: 6rem 2rem;
  }
}
.why-us {
  background: linear-gradient(180deg, #2d4a2e 0%, #1a3320 100%);
  color: #faf8f5;
  text-align: center;
}

.why-us-bg {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.why-content {
  position: relative;
  z-index: 1;
}

.why-intro {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 500;
  margin-bottom: 3rem;
  opacity: 0.95;
}

.why-grid {
  display: grid;
  gap: 2rem;
  margin: 3rem 0;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  background: rgba(250, 248, 245, 0.08);
  backdrop-filter: blur(8px);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(250, 248, 245, 0.12);
  text-align: center;
  transition: transform background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.why-card:hover {
  transform: translateY(-4px);
  background: rgba(250, 248, 245, 0.12);
}
.why-card .why-number {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #e8a87c;
  margin-bottom: 1rem;
  opacity: 0.9;
}
.why-card h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.why-card p {
  font-size: 0.875rem;
  opacity: 0.9;
  line-height: 1.65;
}

.why-summary {
  font-size: 1.0625rem;
  max-width: 700px;
  margin: 3rem auto;
  line-height: 1.65;
  opacity: 0.95;
}

.tagline {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #e8a87c;
  margin-bottom: 2rem;
}

.btn-cta {
  display: inline-flex;
  margin-top: 1.5rem;
  background: #faf8f5 !important;
  color: #5c7c5a !important;
  border-color: #faf8f5 !important;
}
.btn-cta:hover {
  background: #e8a87c !important;
  color: #1a3320 !important;
  border-color: #e8a87c !important;
}

.testimonials {
  padding: 4rem 1.5rem;
}
@media (min-width: 768px) {
  .testimonials {
    padding: 5rem 2rem;
  }
}
@media (min-width: 992px) {
  .testimonials {
    padding: 6rem 2rem;
  }
}
.testimonials {
  background-color: #faf8f5;
}
@media (max-width: 767px) {
  .testimonials {
    overflow-x: hidden;
  }
  .testimonials .testimonials-wrapper {
    margin: 0 -1.5rem;
    width: calc(100% + 2 * 1.5rem);
  }
}

.testimonials-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1.5rem;
}
@media (max-width: 767px) {
  .testimonials-wrapper {
    padding: 0;
    gap: 0;
  }
}

.testimonial-nav {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 2px solid #e8e2d8;
  color: #5c7c5a;
  background: #faf8f5;
  z-index: 2;
  transition: background-color border-color color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-nav:hover:not(:disabled) {
  background-color: #5c7c5a;
  border-color: #5c7c5a;
  color: #faf8f5;
}
.testimonial-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.testimonial-nav svg {
  width: 24px;
  height: 24px;
}
@media (max-width: 767px) {
  .testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    box-shadow: 0 4px 20px rgba(45, 74, 46, 0.08);
  }
  .testimonial-nav.testimonial-prev {
    left: 0.5rem;
  }
  .testimonial-nav.testimonial-next {
    right: 0.5rem;
  }
  .testimonial-nav svg {
    width: 18px;
    height: 18px;
  }
}

.testimonials-container {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.testimonials-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 767px) {
  .testimonials-track {
    gap: 1.5rem;
  }
}

.testimonial-card {
  flex: 0 0 100%;
  min-width: 0;
  padding: 3rem;
  background: #f5f0e8;
  border-radius: 20px;
  border: 1px solid #e8e2d8;
}
@media (max-width: 767px) {
  .testimonial-card {
    flex: 0 0 100%;
    padding: 2rem 1.5rem;
    width: 100%;
    box-sizing: border-box;
  }
}
@media (min-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 2rem / 2);
  }
}
@media (min-width: 992px) {
  .testimonial-card {
    flex: 0 0 calc(33.333% - 2rem * 2 / 3);
  }
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: #b8860b;
}
.testimonial-stars svg {
  width: 20px;
  height: 20px;
}

.testimonial-text {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.0625rem;
  font-style: italic;
  line-height: 1.65;
  color: #2c2c2c;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: #5c7c5a;
  color: #faf8f5;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.author-avatar svg {
  width: 28px;
  height: 28px;
}

.author-name {
  font-weight: 600;
  color: #2c2c2c;
}

.author-position {
  font-size: 0.875rem;
  color: #5a5a5a;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: #e8e2d8;
  cursor: pointer;
  transition: background-color transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-dot.active {
  background: #5c7c5a;
  transform: scale(1.2);
}
.testimonial-dot:hover {
  background: #5c7c5a;
  opacity: 0.8;
}

.partners {
  padding: 4rem 1.5rem;
}
@media (min-width: 768px) {
  .partners {
    padding: 5rem 2rem;
  }
}
@media (min-width: 992px) {
  .partners {
    padding: 6rem 2rem;
  }
}
.partners {
  background-color: #f5f0e8;
  text-align: center;
}
.partners h3 {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d4a2e;
  margin-bottom: 4rem;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 140px;
}
@media (min-width: 768px) {
  .partner-logo {
    width: 200px;
    height: 160px;
  }
}
@media (min-width: 992px) {
  .partner-logo {
    width: 220px;
    height: 180px;
  }
}
.partner-logo {
  padding: 1.5rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(44, 44, 44, 0.08);
  filter: grayscale(100%);
  opacity: 0.7;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
  transition: filter opacity box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  box-shadow: 0 4px 20px rgba(44, 44, 44, 0.12);
}
.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  max-height: 100px;
}
@media (min-width: 768px) {
  .partner-logo img {
    max-height: 130px;
  }
}
@media (min-width: 992px) {
  .partner-logo img {
    max-height: 150px;
  }
}

.scroll-hidden {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.scroll-hidden.reveal {
  opacity: 1;
  transform: translateY(0);
}

.carousel-section {
  padding: 4rem 0;
  background-color: #f5f0e8;
  overflow: hidden;
}

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 2rem;
  animation: carousel-scroll 40s linear infinite;
}

.carousel-slide {
  flex: 0 0 280px;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(45, 74, 46, 0.08);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-slide:hover img {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .carousel-slide {
    flex: 0 0 220px;
    height: 220px;
  }
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes carousel-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.menu-section {
  padding: 4rem 1.5rem;
}
@media (min-width: 768px) {
  .menu-section {
    padding: 5rem 2rem;
  }
}
@media (min-width: 992px) {
  .menu-section {
    padding: 6rem 2rem;
  }
}
.menu-section {
  background: #f5f0e8;
}
@media (max-width: 767px) {
  .menu-section {
    padding: 3rem 1rem;
  }
}
@media (max-width: 767px) {
  .menu-section .container {
    padding-left: 0;
    padding-right: 0;
  }
}

.menu-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 5rem;
}
.menu-intro p {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #5a5a5a;
  margin: 0;
}
@media (max-width: 767px) {
  .menu-intro {
    margin-bottom: 4rem;
  }
  .menu-intro p {
    font-size: 1.0625rem;
  }
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .menu-grid {
    gap: 1rem;
  }
}
@media (min-width: 768px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

.menu-category-tile {
  background: #faf8f5;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(45, 74, 46, 0.08);
  border: 1px solid #e8e2d8;
  display: flex;
  flex-direction: column;
  transition: box-shadow transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-category-tile:hover {
  box-shadow: 0 8px 40px rgba(45, 74, 46, 0.12);
  transform: translateY(-2px);
}
.menu-category-tile[data-category="1"] .menu-tile-header {
  border-left: 4px solid #c17f59;
}
.menu-category-tile[data-category="2"] .menu-tile-header {
  border-left: 4px solid #5c7c5a;
}
.menu-category-tile[data-category="3"] .menu-tile-header {
  border-left: 4px solid #2d4a2e;
}
.menu-category-tile[data-category="4"] .menu-tile-header {
  border-left: 4px solid #b8860b;
}

.menu-tile-header {
  padding: 2rem 3rem;
  background: #faf8f5;
  border-bottom: 1px solid #e8e2d8;
  position: relative;
}
@media (max-width: 767px) {
  .menu-tile-header {
    padding: 1.5rem 1rem;
  }
}
.menu-tile-header .menu-tile-number {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #5c7c5a;
  letter-spacing: 0.15em;
  margin-bottom: 0.25rem;
  opacity: 0.8;
}
.menu-tile-header h2 {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d4a2e;
  margin: 0;
  line-height: 1.25;
}
@media (max-width: 767px) {
  .menu-tile-header h2 {
    font-size: 1.25rem;
  }
}

.menu-tile-common {
  padding: 1.5rem 3rem;
  background: rgba(92, 124, 90, 0.03);
  border-bottom: 1px solid rgba(232, 226, 216, 0.5);
}
@media (max-width: 767px) {
  .menu-tile-common {
    padding: 1rem 1rem;
  }
}

.menu-common-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8a8a8a;
  margin-bottom: 0.5rem;
}

.menu-common-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.menu-common-tags .menu-tag {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  color: #5a5a5a;
  background: #faf8f5;
  border: 1px solid #e8e2d8;
  border-radius: 9999px;
}
@media (max-width: 767px) {
  .menu-common-tags .menu-tag {
    font-size: 0.875rem;
  }
}

.menu-tile-content {
  padding: 2rem 3rem 3rem;
  flex: 1;
}
@media (max-width: 767px) {
  .menu-tile-content {
    padding: 1rem 1rem 2rem;
  }
}

.menu-days-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .menu-days-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .menu-days-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.menu-day-tile {
  background: rgba(92, 124, 90, 0.04);
  border-radius: 14px;
  padding: 1.5rem;
  border: 1px solid rgba(232, 226, 216, 0.6);
  transition: background-color border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 767px) {
  .menu-day-tile {
    padding: 1rem;
  }
}
.menu-day-tile:hover {
  background: rgba(92, 124, 90, 0.08);
  border-color: rgba(92, 124, 90, 0.3);
}
.menu-day-tile h3 {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #2d4a2e;
  margin: 0 0 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed #e8e2d8;
}
@media (max-width: 767px) {
  .menu-day-tile h3 {
    font-size: 1rem;
  }
}

.menu-themes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .menu-themes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.menu-theme-tile {
  background: linear-gradient(135deg, rgba(92, 124, 90, 0.06) 0%, rgba(92, 124, 90, 0.02) 100%);
  border-radius: 14px;
  padding: 1.5rem;
  border: 1px solid #e8e2d8;
  transition: transform box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-theme-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(45, 74, 46, 0.06);
}
.menu-theme-tile h3 {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #5c7c5a;
  margin: 0 0 0.5rem;
}

.menu-dishes {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-dishes li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.25rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #5a5a5a;
}
.menu-dishes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: #5c7c5a;
  border-radius: 50%;
  opacity: 0.7;
}
.menu-dishes li:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .menu-dishes li {
    font-size: 0.9375rem;
  }
}

.menu-backpack .menu-backpack-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2c2c2c;
  margin: 0 0 0.5rem;
}

.menu-dishes-backpack li {
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .menu-dishes-backpack li {
    font-size: 0.9375rem;
  }
}

.menu-footer {
  text-align: center;
  margin-top: 5rem;
  padding: 3rem 4rem;
  background: #faf8f5;
  border-radius: 28px;
  box-shadow: 0 4px 20px rgba(45, 74, 46, 0.08);
  border: 1px solid #e8e2d8;
}
@media (max-width: 767px) {
  .menu-footer {
    margin-top: 4rem;
    padding: 2rem 1rem;
  }
}
.menu-footer p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.menu-footer p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .menu-footer p {
    font-size: 1rem;
  }
}

.cta-link {
  color: #5c7c5a;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cta-link:hover {
  color: #2d4a2e;
  border-bottom-color: #2d4a2e;
}

.order-info {
  font-size: 0.875rem;
  color: #8a8a8a;
}

.gallery-section {
  padding: 4rem 1.5rem;
}
@media (min-width: 768px) {
  .gallery-section {
    padding: 5rem 2rem;
  }
}
@media (min-width: 992px) {
  .gallery-section {
    padding: 6rem 2rem;
  }
}
.gallery-section {
  background-color: #f5f0e8;
}

.gallery-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  aspect-ratio: 4/3;
  box-shadow: 0 2px 8px rgba(45, 74, 46, 0.06);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 51, 32, 0.4) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover {
  transform: scale(1.02);
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item:hover::after {
  opacity: 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(26, 51, 32, 0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 16px 60px rgba(45, 74, 46, 0.15);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #faf8f5;
  cursor: pointer;
  z-index: 1001;
  border-radius: 9999px;
  background: rgba(250, 248, 245, 0.1);
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.lightbox-close:hover {
  background: rgba(250, 248, 245, 0.2);
}
.lightbox-close svg {
  width: 24px;
  height: 24px;
}
@media (max-width: 767px) {
  .lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
  }
  .lightbox-close svg {
    width: 20px;
    height: 20px;
  }
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(250, 248, 245, 0.15);
  color: #faf8f5;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  z-index: 1001;
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(250, 248, 245, 0.3);
}
.lightbox-prev svg,
.lightbox-next svg {
  width: 24px;
  height: 24px;
}
@media (max-width: 767px) {
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
  }
  .lightbox-prev svg,
  .lightbox-next svg {
    width: 20px;
    height: 20px;
  }
}

.lightbox-prev {
  left: 2rem;
}
@media (max-width: 767px) {
  .lightbox-prev {
    left: 1rem;
  }
}

.lightbox-next {
  right: 2rem;
}
@media (max-width: 767px) {
  .lightbox-next {
    right: 1rem;
  }
}

.contact-section {
  padding: 4rem 1.5rem;
}
@media (min-width: 768px) {
  .contact-section {
    padding: 5rem 2rem;
  }
}
@media (min-width: 992px) {
  .contact-section {
    padding: 6rem 2rem;
  }
}
.contact-section {
  background-color: #f5f0e8;
}

.contact-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  margin-bottom: 4rem;
}
@media (min-width: 992px) {
  .contact-grid {
    gap: 4rem;
    grid-template-columns: 1fr 1.2fr;
  }
}

.contact-box {
  background: #faf8f5;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(45, 74, 46, 0.06);
  border: 1px solid #e8e2d8;
}
.contact-box h2 {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d4a2e;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-box h2 .contact-icon {
  width: 32px;
  height: 32px;
  color: #5c7c5a;
}
.contact-box p {
  font-size: 1rem;
  line-height: 1.65;
  color: #5a5a5a;
  margin-bottom: 1rem;
}

.phone-number {
  text-align: center;
  margin: 2rem 0;
}
.phone-number a {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #5c7c5a;
  padding: 1.5rem 2rem;
  background: rgba(92, 124, 90, 0.08);
  border-radius: 14px;
  border: 2px solid rgba(92, 124, 90, 0.2);
  transition: background-color color border-color transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.phone-number a:hover {
  background: #5c7c5a;
  color: #faf8f5;
  border-color: #5c7c5a;
  transform: translateY(-2px);
}
.phone-number a .icon-phone {
  width: 24px;
  height: 24px;
}

.contact-info {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: #f5f0e8;
  border-radius: 10px;
  border-left: 4px solid #5c7c5a;
}
.contact-info p {
  margin-bottom: 0.5rem;
}
.contact-info p:last-child {
  margin-bottom: 0;
}
.contact-info.contact-info-email {
  margin-top: 2rem;
}
.contact-info a {
  color: #5c7c5a;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-info a:hover {
  color: #2d4a2e;
}

.warning-text {
  color: #856404;
  font-weight: 500;
  font-size: 0.875rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #2c2c2c;
  font-size: 0.875rem;
}
.form-group input,
.form-group textarea {
  padding: 1rem;
  border: 1px solid #e8e2d8;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #5c7c5a;
  box-shadow: 0 0 0 3px rgba(92, 124, 90, 0.15);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-group small {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: #8a8a8a;
}

.form-message {
  padding: 1rem;
  border-radius: 10px;
  font-size: 0.875rem;
}
.form-message.success {
  background: rgba(92, 124, 90, 0.1);
  color: #2d4a2e;
  border: 1px solid rgba(92, 124, 90, 0.3);
}
.form-message.error {
  background: rgba(220, 53, 69, 0.1);
  color: #721c24;
  border: 1px solid rgba(220, 53, 69, 0.3);
}

.btn-submit {
  padding: 1rem 2rem;
  background: #5c7c5a;
  color: #faf8f5;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-submit:hover:not(:disabled) {
  background: #2d4a2e;
  transform: translateY(-2px);
}
.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.contact-additional {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .contact-additional {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .contact-additional {
    grid-template-columns: repeat(3, 1fr);
  }
}

.info-card {
  background: #faf8f5;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(45, 74, 46, 0.06);
  border: 1px solid #e8e2d8;
  text-align: center;
  transition: transform box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(45, 74, 46, 0.08);
}
.info-card h3 {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d4a2e;
  margin-bottom: 1rem;
}
.info-card p {
  font-size: 1rem;
  line-height: 1.65;
  color: #5a5a5a;
}

.geo-section {
  padding: 4rem 1.5rem;
}
@media (min-width: 768px) {
  .geo-section {
    padding: 5rem 2rem;
  }
}
@media (min-width: 992px) {
  .geo-section {
    padding: 6rem 2rem;
  }
}
.geo-section {
  background-color: #faf8f5;
  border-top: 1px solid #e8e2d8;
}

.geo-content {
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  .geo-content {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.geo-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.geo-card {
  padding: 3rem;
  background: #f5f0e8;
  border-radius: 20px;
  border: 1px solid #e8e2d8;
}
.geo-card .geo-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  color: #5c7c5a;
}
.geo-card .geo-icon svg {
  width: 100%;
  height: 100%;
}
.geo-card h3 {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d4a2e;
  margin-bottom: 0.5rem;
}
.geo-card p {
  font-size: 1rem;
  color: #5a5a5a;
  margin-bottom: 0.5rem;
}
.geo-card .geo-area {
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.geo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #5c7c5a;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.geo-link:hover {
  color: #2d4a2e;
}
.geo-link svg {
  width: 18px;
  height: 18px;
}

.geo-coords {
  padding: 1rem;
  background: rgba(92, 124, 90, 0.05);
  border-radius: 10px;
  font-size: 0.875rem;
  color: #5a5a5a;
}

.geo-map-wrap {
  min-height: 280px;
}
@media (min-width: 768px) {
  .geo-map-wrap {
    min-height: 350px;
  }
}

.geo-osm-map {
  width: 100%;
  min-height: 280px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(45, 74, 46, 0.08);
  position: relative;
  /* Nakładka kolorystyczna - paleta strony (sage, forest, cream) */
}
.geo-osm-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(160deg, rgba(92, 124, 90, 0.08) 0%, transparent 40%, rgba(45, 74, 46, 0.05) 70%, rgba(245, 240, 232, 0.04) 100%);
  mix-blend-mode: multiply;
  border-radius: 20px;
}
.geo-osm-map {
  /* Ciepły, stonowany odcień nawiązujący do górskiej palety */
}
.geo-osm-map .leaflet-tile-pane {
  filter: sepia(0.06) hue-rotate(-12deg) saturate(0.92);
}
@media (min-width: 768px) {
  .geo-osm-map {
    min-height: 350px;
  }
}

.geo-map-towns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #5a5a5a;
}
.geo-map-towns .geo-town {
  padding: 0.25rem 0.5rem;
  background: rgba(92, 124, 90, 0.1);
  border-radius: 6px;
}
.geo-map-towns .geo-town::after {
  content: ",";
  margin-left: 2px;
}
.geo-map-towns .geo-town:last-child::after {
  display: none;
}

.faq-section {
  padding: 4rem 1.5rem;
}
@media (min-width: 768px) {
  .faq-section {
    padding: 5rem 2rem;
  }
}
@media (min-width: 992px) {
  .faq-section {
    padding: 6rem 2rem;
  }
}
.faq-section {
  background-color: #f5f0e8;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e8e2d8;
}
.faq-item:first-child {
  border-top: 1px solid #e8e2d8;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem 1rem;
  text-align: left;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #2c2c2c;
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-question:hover {
  background: rgba(92, 124, 90, 0.05);
}
.faq-question span {
  flex: 1;
  padding-right: 1rem;
}
.faq-question .faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #5c7c5a;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-question[aria-expanded=true] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
}
.faq-answer p {
  padding: 0 1rem 1.5rem 1rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #5a5a5a;
  margin: 0;
}
.faq-answer[hidden] {
  display: none;
}

.footer {
  background: #1a3320;
  color: #faf8f5;
  padding: 5rem 1.5rem 2rem;
}

.footer-content {
  display: grid;
  gap: 4rem;
  margin-bottom: 4rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: rgba(250, 248, 245, 0.85);
  border-radius: 10px;
  transition: color background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-social a:hover {
  color: #faf8f5;
  background: rgba(250, 248, 245, 0.15);
}
.footer-social a svg {
  width: 22px;
  height: 22px;
}

.footer-section h4 {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #e8a87c;
  margin-bottom: 1.5rem;
}
.footer-section p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(250, 248, 245, 0.8);
  margin-bottom: 0.5rem;
}
.footer-section ul li {
  margin-bottom: 0.5rem;
}
.footer-section ul li a {
  color: rgba(250, 248, 245, 0.8);
  font-size: 0.875rem;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-section ul li a:hover {
  color: #e8a87c;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 248, 245, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(250, 248, 245, 0.6);
  margin: 0;
}
.footer-bottom .footer-credit {
  font-size: 0.75rem;
  opacity: 0.85;
}
.footer-bottom .footer-credit a {
  color: rgba(250, 248, 245, 0.75);
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-bottom .footer-credit a:hover {
  color: #e8a87c;
}

.go-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #5c7c5a;
  color: #faf8f5;
  border-radius: 9999px;
  box-shadow: 0 8px 40px rgba(45, 74, 46, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity visibility transform background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.go-to-top:hover {
  background: #2d4a2e;
  color: #faf8f5;
}
.go-to-top svg {
  width: 24px;
  height: 24px;
}
.go-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .go-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
  }
  .go-to-top svg {
    width: 22px;
    height: 22px;
  }
}

/* Po tłumaczeniu Google dodaje html.translated-ltr lub html.translated-rtl */
html.translated-ltr body,
html.translated-rtl body {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif !important;
}
html.translated-ltr,
html.translated-rtl {
  /* Google owija treść w font/span – wymuszamy nasze fonty */
}
html.translated-ltr font,
html.translated-ltr .notranslate,
html.translated-rtl font,
html.translated-rtl .notranslate {
  font-family: inherit !important;
}

/*# sourceMappingURL=style.css.map */
