:root {
  --bg: #faf7f2;
  --bg-alt: #ffffff;
  --primary: #6e4b3a;
  --accent: #8b6f47;
  --accent-light: #c59b6d;
  --text: #2a2522;
  --muted: #7a726b;
  --green: #5a7c4a;
  --green-light: #7a9c6a;
  --max-width: 1100px;
  --radius: 14px;
  --shadow-soft: 0 12px 35px rgba(0,0,0,0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #f4e8da 0, #faf7f2 40%, #ffffff 100%);
  color: var(--text);
  line-height: 1.6;
}

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

a[href^="tel:"],
a[href^="mailto:"] {
  color: var(--green);
  transition: color 0.2s ease-out;
}

a[href^="tel:"]:hover,
a[href^="mailto:"]:hover {
  color: var(--green-light);
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--green);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

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

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(250, 247, 242, 0.9);
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

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

.logo img {
  height: 65px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  line-height: 1.2;
}

.logo-text span {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  margin-top: 0.2rem;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.2rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.2s ease-out;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.45rem 1rem;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  font-size: 0.9rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, background 0.15s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--green-light);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.22);
}

.hero {
  max-width: var(--max-width);
  margin: 2.5rem auto 2.5rem;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #221c18;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.btn-primary {
  padding: 0.75rem 1.6rem;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, background 0.15s;
}

.btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

.btn-ghost {
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: background 0.15s ease-out, border 0.15s ease-out;
}

.btn-ghost:hover {
  background: #fff;
  border-color: rgba(0,0,0,0.18);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-meta span {
  display: flex;
  flex-direction: column;
}

.hero-meta strong {
  font-size: 0.92rem;
  color: var(--green);
}

.hero-media {
  position: relative;
}

.hero-card {
  background: var(--bg-alt);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: 1rem;
  overflow: hidden;
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.25), transparent 40%);
  pointer-events: none;
}

.hero-image-placeholder {
  height: 270px;
  border-radius: 18px;
  background-image: linear-gradient(135deg, #7a9c6a, #5a7c4a);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  color: #fff;
  font-size: 0.95rem;
}

.hero-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 18px;
}

.text-muted {
  color: var(--muted);
}

.text-small {
  font-size: 0.9rem;
}

.text-xs {
  font-size: 0.8rem;
}

.mt-small {
  margin-top: 0.5rem;
}

.mt-medium {
  margin-top: 0.9rem;
}

.mt-large {
  margin-top: 0.8rem;
}

.hero-tag {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(250, 247, 242, 0.92);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green);
}

.hero-floating {
  position: absolute;
  right: -0.4rem;
  bottom: -0.4rem;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.96);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  font-size: 0.8rem;
  min-width: 160px;
}

main {
  background: radial-gradient(circle at top, #f1e6d9 0, #faf7f2 50%, #ffffff 100%);
  padding: 2rem 0 3.5rem;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto 2.8rem;
  padding: 0 1.5rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.section-title {
  font-size: 1.45rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2b2420;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 26rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}

.card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.6rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.card-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--green);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.card-title {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  color: #2b2420;
  font-weight: 600;
}

.card-text {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.product-features {
  list-style: none;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.product-features li {
  padding: 0.3rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.product-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: bold;
}

.card-link {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--green);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.card-link span {
  display: inline-block;
  transition: transform 0.15s ease-out;
}

.card:hover .card-link span {
  transform: translateX(3px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.tag {
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.8);
  color: var(--muted);
}

.contact-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem 1.4rem;
  display: grid;
  gap: 0.9rem;
  font-size: 0.9rem;
}

.contact-card h3 {
  margin-bottom: 0.3rem;
  font-size: 1rem;
  color: #2b2420;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.highlight-box {
  background: linear-gradient(135deg, rgba(90, 124, 74, 0.08), rgba(122, 156, 106, 0.05));
  border-left: 4px solid var(--green);
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius);
  margin: 1.5rem 0;
}

.highlight-box p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
  background: linear-gradient(135deg, #e8e0d5, #d4c9b8);
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

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

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

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

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

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem;
  background: linear-gradient(135deg, #f0e8dd, #e0d4c4);
}

.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-out;
}

.gallery-item:hover video {
  transform: scale(1.08);
}

.video-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 10;
}

/* Gallery Modal */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
  pointer-events: none;
}

.gallery-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(4px);
}

.gallery-modal-content {
  position: relative;
  width: 90vw;
  max-width: 1200px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.gallery-modal-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-out;
  z-index: 1002;
}

.gallery-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.gallery-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-out;
  z-index: 1002;
  user-select: none;
}

.gallery-modal-nav:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.gallery-modal-prev {
  left: -4.5rem;
}

.gallery-modal-next {
  right: -4.5rem;
}

.gallery-modal-media {
  width: 100%;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}

.gallery-modal-image {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.gallery-modal-video {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  display: block;
}

.gallery-modal-info {
  margin-top: 1.5rem;
  text-align: center;
  color: white;
}

.gallery-modal-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.gallery-modal-counter {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 900px) {
  .gallery-modal-prev {
    left: 1rem;
  }

  .gallery-modal-next {
    right: 1rem;
  }

  .gallery-modal-close {
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
  }

  .gallery-modal-nav {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .gallery-modal-content {
    width: 95vw;
    max-height: 95vh;
  }

  .gallery-modal-media {
    max-height: 75vh;
  }

  .gallery-modal-image,
  .gallery-modal-video {
    max-height: 75vh;
  }

  .gallery-modal-prev {
    left: 0.5rem;
  }

  .gallery-modal-next {
    right: 0.5rem;
  }
}

/* Admin Login Button (Hidden) */
.admin-login-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(90, 124, 74, 0.15);
  border: 1px solid rgba(90, 124, 74, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(90, 124, 74, 0.6);
  text-decoration: none;
  transition: all 0.3s ease-out;
  z-index: 100;
  opacity: 0.4;
  backdrop-filter: blur(4px);
}

.admin-login-btn:hover {
  opacity: 1;
  background: rgba(90, 124, 74, 0.25);
  border-color: rgba(90, 124, 74, 0.4);
  color: var(--green, #5a7c4a);
  transform: scale(1.1);
}

.admin-login-btn svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 700px) {
  .admin-login-btn {
    bottom: 1rem;
    right: 1rem;
    width: 2.25rem;
    height: 2.25rem;
  }

  .admin-login-btn svg {
    width: 12px;
    height: 12px;
  }
}

footer {
  border-top: 1px solid rgba(0,0,0,0.06);
  background: #f5eee5;
  padding: 1.4rem 1.5rem 1.6rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-media {
    order: -1;
  }
  .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .nav-links {
    display: none;
  }
  .logo {
    gap: 0.75rem;
  }
  .logo img {
    height: 50px;
    max-width: 180px;
  }
  .logo-text {
    font-size: 1rem;
  }
  .logo-text span {
    font-size: 0.75rem;
  }
  .hero {
    margin-top: 1.5rem;
  }
  .hero-card {
    border-radius: 18px;
  }
  .hero-image-placeholder {
    height: 220px;
  }
  .section {
    margin-bottom: 2.2rem;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
}

