/* =========================================================
   NAVBAR
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition:
    box-shadow 0.3s var(--ease),
    background 0.3s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.97);
}

.nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  height: 64px;
  width: auto;
}
.brand-word {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-word b {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  color: var(--navy-ink);
}
.brand-word span {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--leaf);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  border-radius: 999px;
  transition:
    background 0.2s var(--ease),
    color 0.2s var(--ease);
  position: relative;
}
.nav-links a:hover {
  background: var(--bg-alt);
  color: var(--leaf);
}
.nav-links a.active {
  color: var(--leaf);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 5px;
  height: 2px;
  background: var(--grad-brand);
  border-radius: 2px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 44px;
  min-width: 44px;
  padding: 10px;
  border-radius: 999px;
  border: 1px solid rgba(92, 138, 60, 0.26);
  background: rgba(140, 174, 51, 0.1);
  box-shadow: var(--shadow-sm);
  color: var(--navy);
  transition:
    background 0.2s var(--ease),
    border-color 0.2s var(--ease),
    transform 0.2s var(--ease);
}
.nav-tel svg {
  width: 20px;
  height: 20px;
  color: var(--leaf);
}
.nav-tel:hover {
  background: rgba(140, 174, 51, 0.16);
  border-color: rgba(92, 138, 60, 0.42);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition:
    transform 0.25s var(--ease),
    opacity 0.25s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1125px) {
  .nav {
    position: relative;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 10px;
  }
  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }
  .nav-cta {
    margin-left: auto;
    gap: 10px;
  }
  .nav-tel:not(.nav-cart) {
    display: none;
  }
  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 230;
    order: 2;
  }
  .nav-cta {
    order: 3;
  }
  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: auto;
    height: calc(100dvh - 68px);
    min-height: calc(100dvh - 68px);
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 18px 16px 24px;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      transform 0.28s var(--ease),
      opacity 0.28s var(--ease),
      visibility 0s linear 0.28s;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid rgba(92, 138, 60, 0.12);
    border-radius: 0;
    box-shadow: 0 24px 60px rgba(11, 32, 56, 0.18);
    z-index: 220;
    will-change: transform, opacity;
  }
  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      transform 0.28s var(--ease),
      opacity 0.28s var(--ease),
      visibility 0s;
  }
  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 56px;
    padding: 14px 16px;
    font-size: 1rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #f8faf8;
    box-shadow: var(--shadow-sm);
  }
  .nav-links a.active::after {
    left: 16px;
    right: auto;
    bottom: 10px;
    width: 72px;
  }
}

.nav-links li:has(a[href="contact.html"]) {
  display: none;
}

@media (max-width: 460px) {
  .nav-cta a.btn {
    display: none;
  }

  .nav-links li:has(a[href="contact.html"]) {
    display: list-item;
  }
}

/* =========================================================
   PAGE HERO (interior pages)
   ========================================================= */
.page-hero {
  position: relative;
  padding: 88px 0 76px;
  background: var(--grad-navy);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg-image, none);
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  z-index: -2;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(11, 32, 56, 0.75),
    rgba(11, 32, 56, 0.94)
  );
  z-index: -1;
}
.page-hero .eyebrow {
  color: var(--lime);
}
.page-hero .eyebrow::before {
  background: linear-gradient(90deg, var(--lime), #fff0);
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  max-width: 780px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 620px;
  font-size: 1.1rem;
  margin-top: 14px;
}
.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
}
.breadcrumb a:hover {
  color: var(--lime);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--grad-navy);
  color: rgba(255, 255, 255, 0.82);
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand img {
  height: 46px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.62);
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.footer-social a:hover {
  background: var(--leaf);
  border-color: var(--leaf);
}
.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--lime);
}
.footer-contact li {
  display: flex;
  gap: 10px;
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.68);
  align-items: flex-start;
}
.footer-contact svg {
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 2px;
  color: var(--lime);
}

.footer-bottom {
  padding: 22px 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

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