/* ============================================================
   JR JEWELRY — Style Sheet
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; font-weight: 300; background: #fff; color: #1a1a1a; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { background: none; border: none; cursor: pointer; padding: 0; }

/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  --black:   #000;
  --white:   #fff;
  --cream:   #faf8f5;
  --grey1:   #f5f5f5;
  --grey2:   #e8e8e8;
  --grey3:   #a3a3a3;
  --grey4:   #404040;
  --nav-h:   68px;
  --ann-h:   36px;
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announce {
  background: var(--black);
  color: rgba(255,255,255,0.85);
  height: var(--ann-h);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 500;
  gap: 4px;
}
.announce a {
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  transition: border-color 0.2s;
}
.announce a:hover { border-color: var(--white); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--nav-h);
  padding: 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-left { display: flex; align-items: center; gap: 28px; }

.nav-burger { display: none; flex-direction: column; gap: 5px; width: 22px; }
.nav-burger span { display: block; height: 1px; background: var(--white); }

.nav-links { display: flex; gap: 24px; }
.nav-links a {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--white);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-logo { display: flex; justify-content: center; }
.nav-logo img { height: 72px; width: auto; }

.nav-right { display: flex; align-items: center; justify-content: flex-end; gap: 8px; }

.nav-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.nav-icon:hover { color: var(--white); }

.nav-shop {
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 8px 20px;
  transition: border-color 0.2s, background 0.2s;
  margin-left: 8px;
}
.nav-shop:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* ============================================================
   MOBILE DRAWER
   ============================================================ */
.drawer {
  position: fixed;
  inset: 0 auto 0 0;
  width: 300px;
  background: var(--black);
  z-index: 500;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  padding: 72px 36px 40px;
  gap: 28px;
}
.drawer.open { transform: translateX(0); }

.drawer-close {
  position: absolute;
  top: 20px; right: 20px;
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  transition: color 0.2s;
}
.drawer-close:hover { color: var(--white); }

.drawer-link {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.drawer-link:hover { color: var(--white); }

.drawer-shop {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 600;
  background: var(--white);
  color: var(--black);
  padding: 14px 24px;
  text-align: center;
  display: block;
}

.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 499;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s;
}
.drawer-backdrop.open { opacity: 1; pointer-events: all; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-solid {
  display: inline-block;
  background: var(--white);
  color: #1e140a;
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 600;
  padding: 14px 36px;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
}
.btn-solid:hover { background: var(--grey2); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 500;
  padding: 13px 32px;
  border: 1px solid rgba(255,255,255,0.7);
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-dark {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 600;
  padding: 15px 40px;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
}
.btn-dark:hover { background: var(--grey4); }

.btn-light {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 500;
  padding: 13px 32px;
  border: 1px solid rgba(255,255,255,0.6);
  font-family: 'Inter', sans-serif;
  transition: background 0.2s, border-color 0.2s;
}
.btn-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ============================================================
   SHARED
   ============================================================ */
.sec-label {
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--grey3);
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}

.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 300;
  color: var(--black);
  line-height: 1.15;
}

.sec-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.sec-header--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}

.sec-link {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--grey3);
  font-weight: 500;
  border-bottom: 1px solid var(--grey2);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.sec-link:hover { color: var(--black); border-color: var(--black); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.3) 55%, rgba(0,0,0,0.08) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 72px 88px;
  max-width: 680px;
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6.5vw, 88px);
  line-height: 1.05;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-title em { font-style: italic; }

.hero-body {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  font-weight: 300;
  letter-spacing: 0.03em;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Kill all native video controls */
video::-webkit-media-controls,
video::-webkit-media-controls-enclosure,
video::-webkit-media-controls-panel,
video::-webkit-media-controls-play-button,
video::-webkit-media-controls-start-playback-button { display: none !important; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.strip {
  background: var(--black);
  padding: 20px 56px;
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.strip-item {
  font-size: 10px;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}
.strip-dot {
  display: inline-block;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  flex-shrink: 0;
}

/* ============================================================
   COLLECTION
   ============================================================ */
.collection {
  padding: 88px 56px;
  background: var(--cream);
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.card {
  background: var(--white);
  display: block;
  cursor: pointer;
  transition: transform 0.3s;
}
.card:hover { transform: translateY(-3px); }

.card-img {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--grey1);
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.card:hover .card-img img { transform: scale(1.06); }

.card-info { padding: 16px 14px 20px; }

.card-gem {
  font-size: 9px;
  letter-spacing: 0.28em;
  color: var(--grey3);
  font-weight: 500;
  margin-bottom: 5px;
}

.card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--black);
  line-height: 1.2;
}

.card-type {
  font-size: 11px;
  color: var(--grey3);
  margin-top: 3px;
  letter-spacing: 0.05em;
}

.collection-cta { text-align: center; margin-top: 52px; }

/* ============================================================
   QUOTE
   ============================================================ */
.quote {
  background: var(--black);
  padding: 88px 56px;
  text-align: center;
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.8vw, 36px);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.65;
  max-width: 840px;
  margin: 0 auto 20px;
}
.quote-attr {
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--grey3);
  font-weight: 500;
}

/* ============================================================
   EDITORIAL
   ============================================================ */
.editorial {
  display: grid;
  grid-template-columns: 5fr 4fr;
  min-height: 580px;
}

.editorial-img {
  overflow: hidden;
  position: relative;
}
.editorial-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.editorial:hover .editorial-img img { transform: scale(1.04); }

.editorial-text {
  background: #111;
  color: var(--white);
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.editorial-text .sec-label { color: var(--grey3); margin-bottom: 18px; }
.editorial-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 24px;
}
.editorial-text p {
  font-size: 13px;
  line-height: 1.95;
  color: var(--grey3);
  margin-bottom: 40px;
  max-width: 360px;
  font-weight: 300;
}

/* ============================================================
   EVENTS
   ============================================================ */
.events {
  padding: 88px 56px;
  background: var(--white);
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.event {
  border: 1px solid var(--grey2);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
}
.event:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-4px); }

.event-img-wrap {
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.event-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}
.event:hover .event-img-wrap img { transform: scale(1.06); }

.event-date {
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--grey3);
  font-weight: 500;
  padding: 24px 24px 10px;
}
.event-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--black);
  padding: 0 24px 6px;
  line-height: 1.3;
}
.event-loc {
  font-size: 11px;
  color: var(--grey3);
  letter-spacing: 0.1em;
  padding: 0 24px 24px;
}

/* ============================================================
   PILLARS
   ============================================================ */
.pillars {
  padding: 88px 56px;
  background: var(--grey1);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--grey2);
  border: 1px solid var(--grey2);
}
.pillar {
  background: var(--white);
  padding: 48px 28px;
  text-align: center;
}
.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--grey2);
  line-height: 1;
  margin-bottom: 18px;
}
.pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 12px;
}
.pillar-desc {
  font-size: 12px;
  line-height: 1.85;
  color: var(--grey3);
  letter-spacing: 0.03em;
  font-weight: 300;
}

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial {
  padding: 104px 56px;
  background: var(--black);
  text-align: center;
}
.testimonial-inner { max-width: 760px; margin: 0 auto; }
.testimonial-rule {
  width: 40px; height: 1px;
  background: #333;
  margin: 0 auto 52px;
}
.testimonial blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.8vw, 34px);
  line-height: 1.6;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  margin-bottom: 28px;
}
.testimonial cite {
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--grey3);
  font-style: normal;
  font-weight: 500;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { display: grid; grid-template-columns: 1fr 1fr; }

.contact-left {
  background: var(--grey1);
  padding: 88px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-left .sec-label { margin-bottom: 18px; }
.contact-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 300;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 18px;
}
.contact-left > p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--grey3);
  font-weight: 300;
  margin-bottom: 44px;
  max-width: 360px;
}
.contact-links { display: flex; flex-direction: column; gap: 20px; }
.contact-label {
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--grey3);
  font-weight: 600;
  margin-bottom: 3px;
}
.contact-links a {
  font-size: 13px;
  color: var(--black);
  font-weight: 400;
  border-bottom: 1px solid var(--grey2);
  padding-bottom: 1px;
  display: inline-block;
  transition: border-color 0.2s;
}
.contact-links a:hover { border-color: var(--black); }

.contact-right {
  background: var(--white);
  padding: 88px 56px;
}

.form { display: flex; flex-direction: column; }

.form-field {
  border-bottom: 1px solid var(--grey2);
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  transition: border-color 0.2s;
}
.form-field:focus-within { border-color: var(--black); }

.form-field label {
  font-size: 9px;
  letter-spacing: 0.35em;
  color: var(--grey3);
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  background: none;
  border: none;
  outline: none;
  font-size: 15px;
  font-family: 'Cormorant Garamond', serif;
  color: var(--black);
  font-weight: 300;
  font-style: italic;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--grey2); }
.form-field textarea { resize: none; height: 76px; }

.form-submit {
  margin-top: 36px;
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.22em;
  padding: 16px 40px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  align-self: flex-start;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--grey4); }

.form-success {
  display: none;
  margin-top: 20px;
  font-size: 15px;
  color: var(--grey4);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0f0f0f; }

.footer-top {
  padding: 64px 56px 52px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand img { height: 60px; width: auto; opacity: 0.8; }
.footer img { height: 60px !important; width: auto !important; object-fit: contain; }
.footer-brand p {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: #555;
  font-weight: 500;
  line-height: 1.6;
}

.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.footer-heading {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 18px;
}

.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 13px;
  color: #555;
  font-weight: 300;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  padding: 20px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 11px;
  color: #333;
  letter-spacing: 0.05em;
  font-weight: 300;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   TABLET — max 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-logo img { height: 56px; }

  .hero-content { padding: 0 48px 72px; }

  .collection { padding: 72px 32px; }
  .grid { grid-template-columns: repeat(3, 1fr); }

  .editorial { grid-template-columns: 1fr; }
  .editorial-img { height: 440px; }
  .editorial-text { padding: 56px 40px; }

  .events { padding: 72px 32px; }

  .pillars { padding: 72px 32px; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }

  .contact { grid-template-columns: 1fr; }
  .contact-left, .contact-right { padding: 64px 40px; }

  .footer-top { grid-template-columns: 1fr; gap: 40px; padding: 52px 40px 44px; }
  .footer-bottom { padding: 18px 40px; }

  .sec-header { flex-direction: column; align-items: flex-start; gap: 14px; }
  .strip { gap: 28px; padding: 18px 32px; }
}

/* ============================================================
   MOBILE — max 640px
   ============================================================ */
@media (max-width: 640px) {
  .announce { font-size: 9px; }

  .nav { padding: 0 16px; }
  .nav-logo img { height: 46px; }
  .nav-icon { width: 36px; height: 36px; }
  .nav-shop { display: none; }

  .hero { height: 90vh; min-height: 500px; }
  .hero-content { padding: 0 24px 56px; }

  .strip { gap: 16px; padding: 16px 20px; }
  .strip-item { font-size: 9px; }

  .collection { padding: 56px 16px; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 3px; }

  .quote { padding: 64px 24px; }

  .editorial-img { height: 280px; }
  .editorial-text { padding: 48px 24px; }

  .events { padding: 56px 16px; }
  .events-grid { grid-template-columns: 1fr; gap: 16px; }

  .pillars { padding: 56px 16px; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .pillar { padding: 32px 16px; }

  .testimonial { padding: 72px 24px; }

  .contact-left, .contact-right { padding: 52px 24px; }
  .contact-left > p { max-width: 100%; }

  .footer-top { padding: 44px 24px 36px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 16px 24px; }
}
