/* =============================================================
   JERICHO STANDARD — Hero V3
   Exact match to reference image
   ============================================================= */

/* ============================================================
   ANNOUNCEMENT BAR — Tan/Khaki style
   ============================================================ */
.ann-bar-v3 {
  background-color: #C8B89A;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 100;
}
.ann-bar-v3 p {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1;
  text-align: center;
  padding-inline: var(--sp-8);
}

@media (max-width: 480px) {
  .ann-bar-v3 {
    height: auto;
    padding: 8px var(--sp-3);
  }
  .ann-bar-v3 p {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    padding-inline: var(--sp-4);
    line-height: 1.4;
    white-space: normal;
  }
}

/* ============================================================
   NAVIGATION V3 — Logo left, links center, icons right
   ============================================================ */
.nav-v3 {
  position: sticky;
  top: 0;
  z-index: 90;
  background-color: var(--white, #fff);
  border-bottom: 1px solid rgba(10,10,10,0.08);
  transition: box-shadow 0.3s ease;
}
.nav-v3.scrolled { box-shadow: 0 2px 20px rgba(10,10,10,0.08); }

.nav-v3__inner {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: var(--sp-5);
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

/* Official Jericho Standard Logo — horizontal lockup (2092x752, ratio ~2.78:1) */
.js-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}
.js-logo:hover { opacity: 0.75; }

.js-logo__img {
  display: block;
  height: 38px;     /* comfortable in the nav bar */
  width: auto;      /* 38px × 2.78 ≈ 106px wide — crisp and proportional */
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .js-logo__img {
    height: 32px;   /* slightly smaller on mobile */
  }
}

/* Center Nav Links */
.nav-v3__links {
  display: none;
  align-items: center;
  gap: var(--sp-6);
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 1024px) {
  .nav-v3__links { display: flex; }
}
.nav-v3__links a {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.2s ease;
}
.nav-v3__links a:hover { border-color: var(--black); opacity: 1; }

/* Right Icons */
.nav-v3__actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.nav-v3__icon-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--black);
  position: relative;
  transition: background 0.2s ease;
}
.nav-v3__icon-btn:hover { background: rgba(10,10,10,0.05); }
.nav-v3__icon-btn svg { width: 20px; height: 20px; }
.nav-v3__cart-badge {
  position: absolute;
  top: 4px; right: 4px;
  width: 16px; height: 16px;
  background: var(--black);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* Hamburger (mobile) */
.nav-v3__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-v3__hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--black);
  transition: all 0.35s ease;
  transform-origin: center;
}
.nav-v3__hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-v3__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-v3__hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (min-width: 1024px) { .nav-v3__hamburger { display: none; } }

/* Mobile drawer */
.nav-v3__drawer {
  position: fixed; inset: 0;
  background: #fff;
  z-index: 89;
  padding: 96px var(--sp-8) var(--sp-12);
  transform: translateX(-100%);
  transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
  display: flex; flex-direction: column; justify-content: center;
  overflow-y: auto;
}
.nav-v3__drawer.is-open { transform: translateX(0); }
.nav-v3__drawer ul { list-style: none; }
.nav-v3__drawer a {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 400;
  color: var(--black);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(10,10,10,0.07);
  transition: padding-left 0.3s ease, color 0.2s ease;
  text-decoration: none;
}
.nav-v3__drawer a:hover { padding-left: 1rem; color: #8B5A3C; opacity: 1; }
.nav-v3__drawer-verse {
  margin-top: auto; padding-top: 3rem;
  font-family: var(--font-serif); font-style: italic;
  font-size: 0.85rem; color: rgba(10,10,10,0.4);
}
@media (min-width: 1024px) { .nav-v3__drawer { display: none; } }

/* ============================================================
   HERO V3 — Full-bleed object-fit cover
   The <img> is absolutely positioned and fills 100% of the
   container at all viewport sizes — zero gray space possible.
   ============================================================ */
.hero-v3 {
  position: relative;
  /* 3:2 image native ratio — on wide screens lock to 88vh,
     use padding-top on mobile for proportional display */
  height: 88vh;
  min-height: 480px;
  max-height: 1000px;
  background-color: #0a0a08;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .hero-v3 {
    height: auto;
    min-height: unset;
    max-height: unset;
    /* The hero image is position:absolute — it cannot drive parent height.
       aspect-ratio gives the container its proportional size.
       9/16 matches the mobile image (682×1280) and fills a phone screen naturally. */
    aspect-ratio: 9 / 16;
  }
}

/* THE IMAGE — absolutely fills every pixel of the container */
.hero-v3__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 77% 24%; /* desktop: subject is upper-right — anchors face + cap in view */
  display: block;
  z-index: 0;
}

@media (max-width: 767px) {
  .hero-v3__photo {
    object-fit: cover;
    /* Portrait image is already composed for mobile — center it naturally */
    object-position: center center;
  }
}

/* Subtle top vignette — keeps nav legible, doesn't dim the image */
.hero-v3__top-fade {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(
    to bottom,
    rgba(10,10,8,0.28) 0%,
    rgba(10,10,8,0)    100%
  );
  pointer-events: none;
  z-index: 1;
}

/* CTA buttons — bottom center, floating over the image */
.hero-v3__cta {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-6) var(--sp-4) var(--sp-6);
  background: linear-gradient(
    to top,
    rgba(10,10,8,0.60) 0%,
    rgba(10,10,8,0)    100%
  );
}

@media (max-width: 480px) {
  .hero-v3__cta {
    flex-direction: column;
    align-items: center;
    gap: var(--sp-2);
    padding: var(--sp-4) var(--sp-5) var(--sp-5);
  }
}

@media (min-width: 768px) {
  .hero-v3__cta { padding-bottom: var(--sp-8); }
}

.btn-v3-filled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.4rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background-color: #C8B89A; /* Khaki/tan fill */
  color: var(--black);
  border: 2px solid #C8B89A;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  min-width: 200px;
}
.btn-v3-filled:hover {
  background-color: #b8a88a;
  border-color: #b8a88a;
  opacity: 1;
}

.btn-v3-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.4rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background-color: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  min-width: 200px;
}
.btn-v3-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  opacity: 1;
}

/* Feature bar removed per design revision */
