/* ── Announcement Bar ── */
.ann-bar {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 9px 1rem;
  font-family: var(--heading);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  z-index: 1001;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  overflow: visible;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 2rem;
  height: 72px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.45s ease, border-color 0.45s ease, height 0.45s ease;
}

.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--border);
  height: 64px;
}

.logo {
  font-family: var(--heading);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: color 0.45s ease;
}

.site-header.scrolled .logo { color: var(--primary); }

.site-header > nav { height: 100%; display: flex; align-items: center; justify-content: center; }

.site-nav {
  display: flex;
  align-items: stretch;
  height: 100%;
  gap: 2.25rem;
  list-style: none;
}

.site-nav > li { display: flex; align-items: center; }

.site-nav a {
  font-family: var(--heading);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.45s ease;
}

.site-header.scrolled .site-nav a { color: var(--text); }

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after { transform: scaleX(1); }

.site-header.scrolled .site-nav a.active { color: var(--primary); }

/* ── Mini-drop ── */
.has-mini { position: relative; }
.mini-drop {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #F9F8F6; border-top: 2px solid var(--primary);
  box-shadow: 0 16px 48px rgba(0,0,0,0.11), 0 2px 8px rgba(0,0,0,0.05);
  min-width: 220px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 400;
}
.has-mini:hover .mini-drop { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.mini-drop-item {
  display: flex; flex-direction: column;
  padding: 0.95rem 1.25rem; text-decoration: none;
  border-bottom: 1px solid rgba(61,82,65,0.08);
  transition: background 0.15s;
}
.mini-drop-item:last-child { border-bottom: none; }
.mini-drop-item:hover { background: rgba(61,82,65,0.04); }
.mini-drop-title {
  font-family: var(--heading); font-size: 0.65rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text) !important; display: block;
  margin-bottom: 0.18rem; transition: color 0.15s;
}
.mini-drop-item:hover .mini-drop-title { color: var(--primary) !important; }
.mini-drop-desc { font-size: 0.68rem; color: rgba(78,70,61,0.45); display: block; }
.mini-drop.wide { min-width: 380px; }
.mini-drop.wide .mini-drop-inner { display: grid; grid-template-columns: 1fr 1fr; }
.mini-drop.wide .mini-drop-item { border-bottom: 1px solid rgba(61,82,65,0.07); border-right: none; }

/* Keep mini-drop light when header turns green on hover */
.site-header:hover .mini-drop { background: #F9F8F6 !important; border-top-color: var(--primary) !important; }
.site-header:hover .mini-drop-title { color: var(--text) !important; }
.site-header:hover .mini-drop-item:hover .mini-drop-title { color: var(--primary) !important; }
.site-header:hover .mini-drop-desc { color: rgba(78,70,61,0.45) !important; }

/* ── Header hover → green ── */
.site-header:hover {
  background: var(--primary) !important;
  border-bottom-color: transparent !important;
}
.site-header:hover .logo { color: #fff !important; }
.site-header:hover .site-nav a { color: rgba(255,255,255,0.9) !important; }
.site-header:hover .icon-btn { color: rgba(255,255,255,0.9) !important; }
.site-header:hover .cart-count {
  background: rgba(255,255,255,0.9) !important;
  color: var(--primary) !important;
}

/* ── Header Actions ── */
.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.875rem;
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: color 0.45s ease, opacity 0.2s;
}
.icon-btn:hover { opacity: 0.7; }
.icon-btn:active { transform: scale(0.88); opacity: 1; }
.site-header.scrolled .icon-btn { color: var(--text); }

.cart-btn { position: relative; }
.cart-count {
  position: absolute; top: -4px; right: -6px;
  background: #fff; color: var(--primary);
  font-size: 0.5625rem; font-family: var(--heading);
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.45s, color 0.45s;
}
.site-header.scrolled .cart-count { background: var(--primary); color: #fff; }

/* ── Mega Menu (Rentals) ── */
.has-mega { position: static; }
.mega-menu {
  position: absolute; top: 100%; left: 0; right: 0;
  background: #F9F8F6; border-top: 1px solid rgba(61,82,65,0.12);
  box-shadow: 0 28px 56px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.05);
  opacity: 0; pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.3s cubic-bezier(.25,.46,.45,.94), transform 0.3s cubic-bezier(.25,.46,.45,.94);
  z-index: 10;
}
.mega-menu--open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mega-inner {
  max-width: 1100px; margin: 0 auto; padding: 2.75rem 2rem 2.5rem;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 3.5rem; align-items: start;
}
.mega-left { display: flex; flex-direction: column; gap: 1.75rem; }
.mega-wordmark {
  font-family: var(--display); font-size: clamp(3.5rem,7vw,5.5rem);
  font-weight: 300; letter-spacing: -0.04em; color: var(--primary);
  opacity: 0.1; line-height: 1; margin: 0; user-select: none; pointer-events: none;
}
.mega-section-label {
  font-family: var(--heading); font-size: 0.6rem; text-transform: uppercase;
  letter-spacing: 0.18em; color: rgba(61,82,65,0.45); margin-bottom: 1rem;
}
.mega-cats { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0 2rem; }
.mega-cat-link {
  font-family: var(--heading); font-size: 0.695rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text); text-decoration: none;
  padding: 0.55rem 0; display: flex; align-items: center;
  border-bottom: 1px solid rgba(61,82,65,0.08); position: relative;
  overflow: hidden; transition: color 0.22s ease, padding-left 0.22s ease;
}
.mega-cat-link::before {
  content: ''; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%) scaleX(0); transform-origin: left;
  width: 18px; height: 1px; background: var(--primary); transition: transform 0.22s ease;
}
.mega-cat-link:hover { color: var(--primary); padding-left: 24px; }
.mega-cat-link:hover::before { transform: translateY(-50%) scaleX(1); }
.mega-right { position: relative; border-radius: 2px; overflow: hidden; }
.mega-editorial-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
  transition: transform 0.65s cubic-bezier(.25,.46,.45,.94);
}
.mega-right:hover .mega-editorial-img { transform: scale(1.04); }
.mega-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0) 40%, rgba(30,42,32,0.72) 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.75rem;
}
.mega-overlay-eyebrow {
  font-family: var(--heading); font-size: 0.58rem; text-transform: uppercase;
  letter-spacing: 0.2em; color: rgba(255,255,255,0.6); margin-bottom: 0.35rem;
}
.mega-overlay-title {
  font-family: var(--display); font-size: 1.45rem; font-weight: 300;
  letter-spacing: -0.02em; color: #fff; line-height: 1.2; margin-bottom: 0.9rem;
}
.mega-overlay-cta {
  font-family: var(--heading); font-size: 0.62rem; text-transform: uppercase;
  letter-spacing: 0.14em; color: rgba(255,255,255,0.85); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.35); padding-bottom: 2px;
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.mega-overlay-cta:hover { color: #fff; border-color: rgba(255,255,255,0.8); }
.site-header:hover .mega-menu { background: #F9F8F6 !important; }
.site-header:hover .mega-menu a { color: var(--text) !important; }
.site-header:hover .mega-menu a.mega-cat-link:hover { color: var(--primary) !important; }
.site-header:hover .mega-menu .mega-overlay-cta,
.site-header:hover .mega-menu a.mega-overlay-cta { color: rgba(255,255,255,0.85) !important; }
.site-header:hover .mega-menu a.mega-overlay-cta:hover { color: #fff !important; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--heading);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.8rem 2.25rem;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  border: 1px solid var(--primary);
  cursor: pointer;
  transition: background 0.22s, color 0.22s, transform 0.15s cubic-bezier(.22,1,.36,1), opacity 0.15s;
}
.btn:hover { background: var(--primary-light); border-color: var(--primary-light); }
.btn:active { transform: scale(0.97); opacity: 0.88; }
.btn-outline { background: transparent; color: var(--text); border-color: var(--text); }
.btn-outline:hover { background: var(--text); color: #fff; }
.btn-white {
  background: rgba(255,255,255,0.15); backdrop-filter: blur(4px);
  color: #fff; border-color: rgba(255,255,255,0.6);
  font-size: 0.5625rem; padding: 0.55rem 1.25rem;
}
.btn-white:hover { background: rgba(255,255,255,0.3); color: #fff; }

/* ── Section helpers ── */
.section { padding: 3.5rem 2rem; }
.section-tight { padding: 2.5rem 2rem; }
.section-heading {
  font-family: var(--heading); font-weight: 400; font-size: 0.875rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  text-align: center; margin-bottom: 2rem;
}

/* ── Scroll-reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(.22,1,.36,1), transform 0.75s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ── Footer ── */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 2rem 2rem;
}
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem; margin-bottom: 3rem;
}
.footer-brand .logo-foot {
  font-family: var(--heading); font-size: 1rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase; color: #fff;
  display: block; margin-bottom: 0.75rem; text-decoration: none;
}
.footer-brand p { font-size: 0.78rem; line-height: 1.7; max-width: 240px; }
.footer-col h4 {
  font-family: var(--heading); font-size: 0.6rem; text-transform: uppercase;
  letter-spacing: 0.18em; color: rgba(255,255,255,0.5); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.footer-col a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.78rem; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.5rem;
  font-size: 0.7rem; color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.65); }

/* ── Search Overlay ── */
.search-overlay {
  position: fixed; inset: 0; z-index: 1500;
  background: rgba(14,17,14,0.55); backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.22s ease;
}
.search-overlay.open { opacity: 1; pointer-events: auto; }

.search-panel {
  position: absolute; top: 0; left: 0; right: 0;
  background: #F9F8F6;
  transform: translateY(-8px);
  transition: transform 0.22s ease;
  max-height: 85vh; overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,0.13);
}
.search-overlay.open .search-panel { transform: translateY(0); }

.search-head {
  max-width: 1100px; margin: 0 auto;
  padding: 2rem 2rem 1.25rem;
  display: flex; align-items: center; gap: 1rem;
  border-bottom: 1px solid var(--border);
}
.search-icon-static {
  color: rgba(78,70,61,0.35); flex-shrink: 0;
}
.search-input {
  flex: 1; font-family: var(--heading); font-size: 1.35rem;
  font-weight: 400; letter-spacing: 0.02em;
  border: none; background: none; outline: none;
  color: var(--text);
}
.search-input::placeholder { color: rgba(78,70,61,0.28); }
.search-close-btn {
  background: none; border: none; cursor: pointer; padding: 0.25rem;
  color: rgba(78,70,61,0.45); transition: color 0.18s;
  display: flex; align-items: center;
}
.search-close-btn:hover { color: var(--primary); }

.search-body { max-width: 1100px; margin: 0 auto; padding: 1.5rem 2rem 2.5rem; }

.search-hint {
  font-family: var(--heading); font-size: 0.6rem; text-transform: uppercase;
  letter-spacing: 0.18em; color: rgba(78,70,61,0.38); margin-bottom: 1.25rem;
}
.search-results-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.25rem 1rem;
}
.search-card {
  display: block; text-decoration: none; color: inherit;
}
.search-card-img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top;
  border-radius: 2px; background: #e8e5e0; display: block;
  transition: transform 0.35s ease;
}
.search-card:hover .search-card-img { transform: scale(1.03); }
.search-card-wrap { overflow: hidden; border-radius: 2px; margin-bottom: 0.6rem; }
.search-card-name {
  font-family: var(--heading); font-size: 0.68rem; text-transform: uppercase;
  letter-spacing: 0.07em; color: var(--text); margin-bottom: 0.15rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.search-card-brand {
  font-size: 0.62rem; color: rgba(78,70,61,0.42);
  letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 0.2rem;
}
.search-card-price {
  font-family: var(--heading); font-size: 0.7rem; color: var(--primary);
}
.search-empty {
  text-align: center; padding: 3rem 0;
  font-family: var(--heading); font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(78,70,61,0.35);
}

/* ── Hamburger Button ── */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.9);
  padding: 4px;
  align-items: center;
  justify-content: center;
  transition: color 0.45s ease, opacity 0.2s;
}
.hamburger-btn:hover { opacity: 0.7; }
.hamburger-btn:active { transform: scale(0.9); }
.site-header.scrolled .hamburger-btn { color: var(--text); }
.site-header:hover .hamburger-btn { color: rgba(255,255,255,0.9) !important; }

/* ── Mobile Nav Overlay ── */
.mobile-nav-overlay {
  position: fixed; inset: 0; z-index: 2500;
  background: rgba(14,17,14,0.5);
  opacity: 0; pointer-events: none;
  transition: opacity 0.28s ease;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: auto; }

.mobile-nav-drawer {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: min(340px, 85vw);
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.25,.46,.45,.94);
  display: flex; flex-direction: column;
  box-shadow: 12px 0 60px rgba(0,0,0,0.12);
  overflow-y: auto;
}
.mobile-nav-overlay.open .mobile-nav-drawer { transform: translateX(0); }

.mobile-nav-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.35rem 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.mobile-nav-logo {
  font-family: var(--heading); font-size: 1rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--primary);
  text-decoration: none;
}
.mobile-nav-close {
  background: none; border: none; cursor: pointer; padding: 4px;
  color: rgba(78,70,61,0.45); display: flex; align-items: center;
  transition: color 0.2s;
}
.mobile-nav-close:hover { color: var(--primary); }

.mobile-nav-body {
  flex: 1; display: flex; flex-direction: column;
}
.mobile-nav-link {
  display: block; padding: 1rem 1.5rem;
  font-family: var(--heading); font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--text); text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
}
.mobile-nav-link:hover { color: var(--primary); background: rgba(61,82,65,0.03); }

.mobile-nav-sub-group {
  background: var(--accent);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0;
}
.mobile-nav-sublink {
  display: block; padding: 0.55rem 2.25rem;
  font-family: var(--heading); font-size: 0.62rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(78,70,61,0.55); text-decoration: none;
  transition: color 0.2s;
}
.mobile-nav-sublink:hover { color: var(--primary); }

.mobile-nav-actions {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.mobile-nav-search-btn {
  display: flex; align-items: center; gap: 0.65rem;
  background: none; border: none; cursor: pointer;
  font-family: var(--heading); font-size: 0.65rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--text); padding: 0.5rem 0;
  transition: color 0.2s;
}
.mobile-nav-search-btn:hover { color: var(--primary); }

/* ══ RESPONSIVE BREAKPOINTS ══ */

/* ── Mobile: header ── */
@media (max-width: 768px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 1.25rem;
  }
  .site-header > nav { display: none; }
  .hamburger-btn { display: flex; }
.header-actions { gap: 0.5rem; }
}

/* ── Mobile: footer ── */
@media (max-width: 768px) {
  .footer { padding: 2.5rem 1.5rem 1.5rem; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom {
    flex-direction: column; gap: 0.75rem; text-align: center;
  }
  .footer-bottom > div { justify-content: center; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand p { max-width: 100%; }
}

/* ── Mobile: search overlay ── */
@media (max-width: 768px) {
  .search-head { padding: 1.25rem 1.25rem 1rem; }
  .search-body { padding: 1.25rem 1.25rem 2rem; }
  .search-results-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
}

/* ── Mobile: section padding ── */
@media (max-width: 768px) {
  .section { padding: 2.5rem 1.25rem; }
  .section-tight { padding: 1.75rem 1.25rem; }
}
