:root {
  --green-footer: #1e3a21;
  --green-deep: #2d4a2d;
  --green-mid: #3d6b3d;
  --gold: #b8975a;
  --gold-light: #cead72;
  --cream: #f5f0e8;
  --ivory: #faf7f2;
  --dark: #1a2a1a;
  --text-main: #2c3e2c;
  --text-muted: #6b7c6b;
  --white: #ffffff;
  --brown-dark: #2c1f0e;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Lato", sans-serif;
  background: var(--ivory);
  color: var(--text-main);
  overflow-x: hidden;
}
a {
  text-decoration: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  background: var(--white);
  border-bottom: 1px solid rgba(45, 74, 45, 0.1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}
.header .hdr-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1001;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--green-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}
.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgb(58, 53, 53);
}
.nav-menu {
  display: flex;
  gap: 36px;
}
.nav-menu a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--text-main);
  border-bottom-color: var(--green-deep);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1200;
  position: relative;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-main);
  transition: all 0.3s;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  background: var(--brown-dark);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  background: var(--brown-dark);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  padding-top: 0;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}
.mobile-nav.open {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 72px;
  border-bottom: 1px solid rgba(45, 74, 45, 0.1);
  flex-shrink: 0;
}
.mobile-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--green-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav-logo .logo-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}
.mobile-nav-logo span {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-main);
  letter-spacing: 0.5px;
}

.mobile-nav-close {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1200;
  flex-shrink: 0;
}
.mobile-nav-close svg {
  width: 20px;
  height: 20px;
  fill: var(--text-main);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding-top: 16px;
}
.mobile-nav-links a {
  display: block;
  padding: 18px 40px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(45, 74, 45, 0.1);
  transition: all 0.2s;
}
.mobile-nav-links a:hover {
  background: var(--cream);
  color: var(--green-deep);
}
.mobile-nav-links a.active {
  color: var(--green-deep);
  border-left: 4px solid var(--gold);
  padding-left: 36px;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.menu-overlay.show {
  opacity: 1;
  visibility: visible;
}

.page-hero {
  position: relative;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.page-hero:hover .hero-bg {
  transform: scale(1);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 42, 26, 0.5) 0%,
    rgba(26, 42, 26, 0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 500;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
}
.breadcrumb a {
  color: var(--gold);
}
.breadcrumb a:hover {
  color: var(--gold-light);
}

.glr-section {
  padding: 80px 24px 100px;
  background: var(--cream);
}
.glr-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.glr-header {
  text-align: center;
  margin-bottom: 52px;
}
.glr-header > span {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}
.glr-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 12px;
}
.glr-header p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.glr-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 52px;
}
.glr-filter-btn {
  padding: 9px 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(45, 74, 45, 0.25);
  border-radius: 2px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s;
}
.glr-filter-btn:hover {
  border-color: var(--green-deep);
  color: var(--green-deep);
}
.glr-filter-btn.active {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
}

.glr-grid {
  columns: 3;
  column-gap: 16px;
}
.glr-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
  display: block;
}
.glr-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.glr-item:hover img {
  transform: scale(1.06);
}
.glr-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 42, 26, 0.88) 0%,
    rgba(26, 42, 26, 0.15) 55%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}
.glr-item:hover .glr-overlay {
  opacity: 1;
}
.glr-caption {
  font-family: "Playfair Display", serif;
  font-size: 15px;
  font-style: italic;
  color: var(--white);
  margin-bottom: 6px;
  transform: translateY(8px);
  transition: transform 0.4s;
}
.glr-item:hover .glr-caption {
  transform: translateY(0);
}
.glr-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  transform: translateY(8px);
  transition: transform 0.4s 0.05s;
}
.glr-item:hover .glr-tag {
  transform: translateY(0);
}
.glr-zoom {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.glr-item:hover .glr-zoom {
  opacity: 1;
  transform: scale(1);
}
.glr-zoom svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
}
.glr-item.glr-hidden {
  display: none;
}

.glr-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 14, 8, 0.97);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s,
    visibility 0.4s;
}
.glr-lightbox.open {
  opacity: 1;
  visibility: visible;
}
.glr-lb-inner {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  text-align: center;
}
.glr-lb-inner img {
  max-width: 88vw;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 3px;
}
.glr-lb-caption {
  margin-top: 14px;
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
}
.glr-lb-close {
  position: fixed;
  top: 22px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  transition: background 0.2s;
  z-index: 9999;
}
.glr-lb-close:hover {
  background: rgba(255, 255, 255, 0.15);
}
.glr-lb-prev,
.glr-lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 9999;
}
.glr-lb-prev {
  left: 20px;
}
.glr-lb-next {
  right: 20px;
}
.glr-lb-prev:hover,
.glr-lb-next:hover {
  background: rgba(255, 255, 255, 0.15);
}
.glr-lb-prev svg,
.glr-lb-next svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.po-cta-section {
  padding: 100px 24px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.po-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 50% at 50% 100%,
    rgba(184, 151, 90, 0.14) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.po-cta-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(184, 151, 90, 0.4),
    transparent
  );
}
.po-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.po-cta-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
}
.po-cta-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 500;
  color: #f0e4c8;
  line-height: 1.25;
  margin-bottom: 16px;
}
.po-cta-text {
  font-size: 15px;
  color: #a89070;
  line-height: 1.7;
  margin-bottom: 36px;
}
.po-cta-btn {
  display: inline-block;
  padding: 14px 40px;
  background: var(--gold);
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition:
    background 0.25s,
    transform 0.2s;
}
.po-cta-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

footer {
  background: #1e3a21;
  padding: clamp(50px, 6vw, 80px) clamp(20px, 6vw, 80px) 30px;
  color: #d6e2d8;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(30px, 4vw, 60px);
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #b7c8bb;
  margin: 18px 0 24px;
}

footer h4 {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d4b48a;
  margin-bottom: 18px;
}

footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer ul a {
  font-size: 0.85rem;
  color: #b7c8bb;
  text-decoration: none;
  transition: 0.25s;
}

footer ul a:hover {
  color: #ffffff;
}

.fc-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.fc-item svg {
  width: 14px;
  height: 14px;
  fill: #d4b48a;
  margin-top: 4px;
}

.fc-item p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #b7c8bb;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-row a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  border-radius: 30px;
}

.social-row a:hover {
  background: #2c4a35;
  border-color: #2c4a35;
}

.social-row svg {
  width: 14px;
  height: 14px;
  fill: #b7c8bb;
}

.social-row a:hover svg {
  fill: #fff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: #a5b5a8;
}

.fb-links {
  display: flex;
  gap: 20px;
}

.fb-links a {
  font-size: 0.75rem;
  color: #a5b5a8;
  text-decoration: none;
  transition: 0.25s;
}

.fb-links a:hover {
  color: #ffffff;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.po-back-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 42px;
  height: 42px;
  background: var(--green-deep);
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.2s;
  z-index: 999;
}
.po-back-top.po-visible {
  opacity: 1;
  pointer-events: auto;
}
.po-back-top:hover {
  transform: translateY(-2px);
}
.po-back-top svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}
.po-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s;
  z-index: 999;
}
.po-whatsapp-btn:hover {
  transform: scale(1.08);
}
.po-whatsapp-btn svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.28);
  transition:
    transform 0.28s,
    box-shadow 0.28s;
}
.whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}
.whatsapp svg {
  width: 22px;
  height: 22px;
  fill: white;
}

@media (max-width: 900px) {
  .glr-grid {
    columns: 2;
  }

  .header {
    padding: 0 20px;
  }
  .nav-menu {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
}
@media (max-width: 560px) {
  .glr-grid {
    columns: 1;
  }
  .whatsapp {
    bottom: 18px;
    right: 18px;
  }
}

.fc-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.fc-item svg {
  width: 13px;
  height: 13px;
  fill: var(--green);
  flex-shrink: 0;
  margin-top: 3px;
}
.fc-item p {
  font-size: 0.82rem;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
  font-weight: 300;
}
.wa-btn {
  position: fixed;
  bottom: 28px;
  right: 22px;
  width: 46px;
  height: 46px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  z-index: 50;
}
.wa-btn svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}
.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.fc-item svg {
  width: 14px;
  height: 14px;
  fill: #d4b48a;
  margin-top: 4px;
}

.footer-bottom-links a{
  color: white;
  margin: 0 10px;
}