/* Shared base + nav + footer styles used by index.html and the service pages */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: #F4F5F3; color:#1A2422; font-family:'Inter',sans-serif; position:relative; }
::selection { background: #C7A458; color: #0F3D3E; }
input::placeholder { color: #9CA6A2; opacity: 0.8; }
a, button { font-family: inherit; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
.fade-up { animation: fadeInUp 0.7s ease-out both; }

.eyebrow { color: #C7A458; font-size: 12.5px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 22px; }

.btn-gold {
  display: inline-flex; align-items: center; gap: 8px; background: #C7A458; color: #0F3D3E;
  padding: 18px 32px; border-radius: 999px; text-decoration: none; font-size: 15px; font-weight: 600;
  transition: gap 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-gold:hover { gap: 16px; transform: translateY(-2px); box-shadow: 0 10px 22px rgba(199,164,88,0.28); background: #D3B270; }

.img-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 16px; background: repeating-linear-gradient(135deg,#164a49,#164a49 10px,#1a5251 10px,#1a5251 20px);
  color: rgba(244,245,243,0.55); font-size: 12px; font-family: monospace; line-height: 1.5;
}
.img-placeholder.light { background: repeating-linear-gradient(135deg,#DEE1DC,#DEE1DC 10px,#E5E7E2 10px,#E5E7E2 20px); color: #4E5551; }

/* ===== NAV ===== */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; min-height: 76px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 32px; background: rgba(15,61,62,0.55);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(176,141,66,0.15);
  box-shadow: 0 8px 24px rgba(6,26,26,0.18);
  z-index: 1000; flex-wrap: nowrap; gap: 16px;
}
.nav-logo img { height: 56px; width: auto; display: block; }
.nav-desktop { display: flex; align-items: center; gap: 16px; flex-wrap: nowrap; }
.nav-link { color: rgba(244,245,243,0.72); text-decoration: none; font-size: 12px; font-weight: 500; white-space: nowrap; }
.nav-cta {
  background: #C7A458; color: #0F3D3E; padding: 10px 20px; border-radius: 999px;
  text-decoration: none; font-size: 12px; font-weight: 600; white-space: nowrap;
  flex-shrink: 0; transition: background 0.25s ease, transform 0.2s ease;
}
.nav-cta:hover { background: #D3B270; transform: translateY(-1px); }

.admin-link {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid rgba(244,245,243,0.28);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.admin-link:hover { border-color: #C7A458; background: rgba(244,245,243,0.06); }
.admin-link svg { display: block; }

.services-wrap { position: relative; }
.services-btn {
  display: flex; align-items: center; gap: 5px; background: none; border: none;
  color: rgba(244,245,243,0.72); font-size: 12px; font-weight: 500; white-space: nowrap;
  cursor: pointer; padding: 0;
}
.services-btn svg { transition: transform 0.2s ease; }
.services-btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.services-menu {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 230px; background: #0F3D3E; border: 1px solid rgba(176,141,66,0.22);
  border-radius: 12px; box-shadow: 0 20px 40px rgba(6,26,26,0.35); padding: 8px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
.services-menu.open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.services-menu a {
  display: block; padding: 13px 20px; color: #F4F5F3; text-decoration: none;
  font-size: 13.5px; white-space: nowrap; border-radius: 8px; transition: background 0.2s ease;
}
.services-menu a:hover { background: rgba(199,164,88,0.14); }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; justify-content: center; }
.mobile-toggle span { width: 22px; height: 2px; background: #F4F5F3; border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease; }
.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-panel {
  position: fixed; top: 76px; left: 0; right: 0; background: #0F3D3E;
  border-bottom: 1px solid rgba(176,141,66,0.18); box-shadow: 0 20px 40px rgba(6,26,26,0.35);
  z-index: 999; display: flex; flex-direction: column; max-height: 0; opacity: 0;
  overflow: hidden; transition: max-height 0.25s ease, opacity 0.2s ease;
}
.mobile-panel.open { max-height: 640px; opacity: 1; }
.mobile-panel a { color: rgba(244,245,243,0.85); text-decoration: none; font-size: 15px; font-weight: 500; padding: 14px 28px; border-bottom: 1px solid rgba(244,245,243,0.08); }
.mobile-services-btn {
  display: flex; align-items: center; justify-content: space-between; background: none; border: none;
  border-bottom: 1px solid rgba(244,245,243,0.08); color: rgba(244,245,243,0.85); font-size: 15px;
  font-weight: 500; padding: 14px 28px; cursor: pointer; width: 100%; text-align: left;
}
.mobile-services-btn svg { transition: transform 0.2s ease; flex-shrink: 0; }
.mobile-services-btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.mobile-services-panel { display: flex; flex-direction: column; background: rgba(0,0,0,0.12); max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.22s ease, opacity 0.2s ease; }
.mobile-services-panel.open { max-height: 220px; opacity: 1; }
.mobile-services-panel a { padding: 12px 28px 12px 40px; color: rgba(244,245,243,0.7); font-size: 14px; border-bottom: none; }
.mobile-cta { display: block; text-align: center; margin: 20px 28px 24px; background: #C7A458; color: #0F3D3E; padding: 14px; border-radius: 999px; text-decoration: none; font-size: 14px; font-weight: 600; border-bottom: none !important; }

@media (max-width: 860px) {
  .nav-desktop { display: none; }
  .mobile-toggle { display: flex; }
}

/* ===== CTA FINAL + FOOTER ===== */
.cta-final { max-width: 1240px; margin: 0 auto; text-align: center; padding-bottom: 120px; }
.cta-final h2 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 52px; color: #F4F5F3; margin: 0 0 40px; max-width: 700px; margin-left: auto; margin-right: auto; }
.cta-final a { display: inline-block; background: #C7A458; color: #0F3D3E; padding: 20px 38px; border-radius: 999px; text-decoration: none; font-size: 15.5px; font-weight: 600; transition: background 0.25s ease, transform 0.2s ease; }
.cta-final a:hover { background: #D3B270; transform: translateY(-2px); }
.footer-grid { max-width: 1240px; margin: 0 auto; padding: 76px 0; display: grid; grid-template-columns: 1.3fr 1fr 1.2fr; gap: 56px; }
.footer-brand img { height: 84px; width: auto; margin-bottom: 18px; display: block; }
.footer-brand p { font-size: 14px; line-height: 1.68; color: rgba(244,245,243,0.72); max-width: 280px; margin: 0; }
.footer-links { display: flex; flex-direction: column; gap: 14px; }
.footer-links a { color: rgba(244,245,243,0.72); text-decoration: none; font-size: 14px; }
.newsletter-title { font-size: 14.5px; font-weight: 600; color: #F4F5F3; margin-bottom: 16px; }
#newsletter-form { display: flex; gap: 10px; }
#newsletter-form input { flex-grow: 1; background: #1C5C5A; border: 1px solid rgba(244,245,243,0.16); color: #F4F5F3; padding: 12px 16px; border-radius: 999px; font-size: 13.5px; }
#newsletter-form button { background: #C7A458; color: #0F3D3E; border: none; padding: 14px 20px; border-radius: 999px; font-size: 13.5px; font-weight: 600; cursor: pointer; white-space: nowrap; transition: background 0.25s ease; }
#newsletter-form button:hover { background: #D3B270; }
#newsletter-done { font-size: 14px; color: #E8D4A0; margin: 0; display: none; }
#newsletter-done.show { display: block; }
#newsletter-form.hide { display: none; }
.footer-bottom { max-width: 1240px; margin: 0 auto; padding: 26px 0; border-top: 1px solid rgba(244,245,243,0.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom span { font-size: 12.5px; color: rgba(244,245,243,0.58); }
.footer-social { display: flex; gap: 20px; }
.footer-social a { color: rgba(244,245,243,0.58); text-decoration: none; font-size: 12.5px; }

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

/* footer without a CTA banner above it (service pages) */
.footer-section { background: #0F3D3E; padding: 70px 56px 0; border-top: 1px solid rgba(244,245,243,0.1); }
.footer-section .footer-grid { padding: 0 0 76px; grid-template-columns: 1.3fr 1fr 1fr; }
