/* ============================================
   Lucky Jewelers — style.css
   Global styles shared across all pages
   ============================================ */

:root {
  --cream:  #F8F6F4;
  --ivory:  #F8F6F4;
  --gold:   #afa658;
  --dark:   #1E2530;
  --mid:    #6b6560;
  --border: #ddd8d0;
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Montserrat', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--dark); font-family: var(--sans); font-size: 14px; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* SEO TOP BAR */
.seo-topbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: .55rem 2rem;
}
.seo-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: 2rem;
}
.seo-topbar-left {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #aaa;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.seo-topbar-ta {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: opacity .2s;
}
.seo-topbar-ta:hover { opacity: .75; }

/* FOOTER LOGO */
.footer-logo { margin-bottom: 2rem; }
.footer-logo-img {
  height: 90px;
  max-height: 90px;
  width: auto;
  max-width: 220px;
  margin: 0 auto;
  display: block;
  object-fit: contain;
}

/* TOP BAR */
.topbar {
  width: 100%; height: 4px;
  background: linear-gradient(90deg, #4a1a1a 0%, #7a2e2e 50%, #4a1a1a 100%);
}

/* HEADER */
header {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 2rem;
  height: 90px;
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--border);
}
.hdr-nav { display: flex; gap: 2.5rem; align-items: center; }
.hdr-nav-left { justify-content: flex-end; padding-right: 2.5rem; }
.hdr-nav-right { justify-content: flex-start; padding-left: 2.5rem; }
.hdr-nav a {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--dark); transition: color .2s;
  white-space: nowrap;
}
.hdr-nav a:hover, .hdr-nav a.active { color: var(--gold); }

/* DROPDOWN */
.hdr-dropdown { position: relative; display: flex; align-items: center; }
.hdr-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--border);
  min-width: 220px;
  padding: .4rem 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
  z-index: 200;
}
/* Bridge gap between nav item and dropdown so hover doesn't break */
.hdr-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}
.hdr-dropdown:hover .hdr-dropdown-menu {
  opacity: 1;
  pointer-events: all;
}
.hdr-dropdown-menu .dropdown-heading {
  display: block;
  padding: .6rem 1.2rem;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--border);
}
.hdr-dropdown-menu a {
  display: block;
  padding: .6rem 1.2rem;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color .2s;
  white-space: nowrap;
}
.hdr-dropdown-menu a:hover { color: var(--gold); }
/* Dropdown arrow indicator on parent */
.hdr-dropdown > a::after {
  content: ' ▾';
  font-size: 8px;
  opacity: .5;
}

.hdr-logo { text-align: center; }
.hdr-logo a { text-decoration: none; display: block; }
.hdr-logo-img { height: 72px; width: auto; display: block; margin: 0 auto; }
.hdr-icons { display: flex; gap: 1.2rem; align-items: center; }
.hdr-review-link {
  font-family: var(--sans); font-size: 9px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--dark); border-bottom: 1px solid var(--dark);
  padding-bottom: 1px; transition: .2s; white-space: nowrap;
}
.hdr-review-link:hover { color: var(--gold); border-color: var(--gold); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; position: absolute; right: 1.5rem; align-items: center; }
.hamburger span:not(.hamburger-label) { display: block; width: 22px; height: 1.5px; background: var(--dark); }
.hamburger-label { font-family: var(--sans); font-size: 8px; font-weight: 700; letter-spacing: .15em; color: var(--dark); margin-top: 2px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--dark); }

/* MOBILE NAV */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: var(--cream); flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  overflow-y: auto; padding: 4rem 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav-logo { margin-bottom: 1rem; }
.mobile-nav-logo img { height: 50px; width: auto; display: block; margin: 0 auto; }
.mobile-nav a { font-family: var(--serif); font-size: 1.8rem; font-weight: 300; color: var(--dark); }
.mobile-nav a:hover { color: var(--gold); }
.mobile-close { position: absolute; top: 1.5rem; right: 2rem; background: none; border: none; font-size: 2rem; cursor: pointer; color: var(--dark); }

/* Mobile header right - MENU label + hamburger */
.mobile-header-right {
  display: none;
  align-items: center;
  gap: .4rem;
  position: absolute;
  right: 1.5rem;
  cursor: pointer;
}
.hamburger-label-ext {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--dark);
  line-height: 1;
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--dark); }
.mobile-close { position: absolute; top: 1.5rem; right: 2rem; background: none; border: none; font-size: 2rem; cursor: pointer; color: var(--dark); }

/* BUTTONS */
.btn-dark {
  display: inline-block; width: auto; align-self: flex-start;
  font-family: var(--sans); font-size: 9.5px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  background: var(--dark); color: #fff; padding: .85rem 2.5rem; transition: .25s; border: none; cursor: pointer;
}
.btn-dark:hover { background: var(--gold); }
.btn-outline {
  display: inline-block; font-family: var(--sans); font-size: 9.5px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  border: 1px solid var(--dark); color: var(--dark); padding: .75rem 1.8rem; transition: .25s;
}
.btn-outline:hover { background: var(--dark); color: #fff; }
.btn-gold {
  display: inline-block; font-family: var(--sans); font-size: 9.5px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  background: var(--gold); color: #fff; padding: .8rem 2rem; transition: .25s; border: 1px solid var(--gold);
}
.btn-gold:hover { background: transparent; color: var(--gold); }
.btn-gold-outline {
  display: inline-block; font-family: var(--sans); font-size: 9.5px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  border: 1px solid var(--gold); color: var(--gold); padding: .8rem 2rem; transition: .25s;
}
.btn-gold-outline:hover { background: var(--gold); color: #fff; }

/* EYEBROW */
.eyebrow {
  font-family: var(--sans); font-size: 9.5px; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem;
}

/* FOOTER */
footer { background: var(--cream); }
.footer-main { padding: 7rem 3rem 5rem; text-align: center; }
.footer-phone { font-family: var(--sans); font-size: 13px; letter-spacing: .15em; color: var(--dark); margin-bottom: 1rem; }
.footer-email { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 3.2rem); font-weight: 300; color: var(--dark); letter-spacing: .02em; margin-bottom: 1.2rem; }
.footer-addr  { font-family: var(--sans); font-size: 11px; letter-spacing: .2em; text-transform: lowercase; color: var(--mid); margin-bottom: 3rem; }
.footer-socials { display: flex; gap: 1rem; justify-content: center; }
.footer-socials a {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--dark); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-family: var(--sans); font-weight: 700; transition: .25s;
}
.footer-socials a:hover { background: var(--gold); }
.footer-nav {
  border-top: 1px solid var(--border); padding: 1.5rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-nav-links { display: flex; gap: 2rem; }
.footer-nav-links a {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--dark); transition: .2s;
}
.footer-nav-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 1rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-family: var(--sans); font-size: 10.5px; color: var(--mid); }
.footer-pay { display: flex; gap: .8rem; align-items: center; flex-wrap: wrap; }
.pay-icon-img {
  height: 24px;
  width: auto;
  opacity: .55;
  transition: opacity .2s;
  filter: invert(18%) sepia(15%) saturate(400%) hue-rotate(180deg);
}
.pay-icon-img:hover { opacity: 1; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .seo-topbar { display: none; }
  .hdr-nav, .hdr-icons { display: none; }
  .mobile-header-right { display: flex; }
  .hamburger { display: flex; }
  .hamburger { display: flex; }
  .hdr-logo { position: static; transform: none; }
  header { justify-content: space-between; padding: 0 1.5rem; }
  .footer-nav { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 1rem; }
}

/* ============================================
   LIVE CHAT BUTTON
   ============================================ */
.live-chat-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  background: var(--dark);
  color: #fff;
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 1.4rem;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,.18);
  transition: all .3s ease;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.live-chat-btn i { font-size: 16px; color: #25D366; }
.live-chat-btn:hover {
  background: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,.22);
}
.live-chat-btn:hover i { color: #fff; }

/* CHAT POPUP */
.chat-popup {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  z-index: 501;
  width: 300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,.15);
  overflow: hidden;
  display: none;
  animation: popIn .25s ease;
}
.chat-popup.open { display: block; }
@keyframes popIn {
  from { opacity: 0; transform: translateY(12px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.chat-popup-header {
  background: var(--dark);
  padding: 1rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-popup-title {
  display: flex;
  align-items: center;
  gap: .8rem;
  color: #fff;
}
.chat-popup-title i { font-size: 1.6rem; color: #25D366; }
.chat-name { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .08em; color: #fff; }
.chat-status { font-family: var(--sans); font-size: 10px; color: #25D366; margin-top: 1px; }
.chat-popup-close {
  background: none; border: none; color: rgba(255,255,255,.6);
  font-size: 1.4rem; cursor: pointer; line-height: 1;
  transition: color .2s;
}
.chat-popup-close:hover { color: #fff; }
.chat-popup-body { padding: 1.2rem; background: #f8f6f4; }
.chat-bubble {
  background: #fff;
  border-radius: 0 12px 12px 12px;
  padding: .9rem 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.chat-bubble p { font-family: var(--sans); font-size: 12.5px; line-height: 1.6; color: var(--dark); }
.chat-popup-footer {
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  border-top: 1px solid var(--border);
}
.chat-wa-btn, .chat-email-btn {
  display: flex; align-items: center; gap: .6rem;
  padding: .65rem 1rem;
  border-radius: 6px;
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  transition: .2s; text-decoration: none;
}
.chat-wa-btn { background: #25D366; color: #fff; }
.chat-wa-btn:hover { background: #1ebc59; }
.chat-email-btn { background: var(--dark); color: #fff; }
.chat-email-btn:hover { background: var(--gold); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.page-hero {
  background: var(--cream);
  text-align: center;
  padding: 6rem 2rem 5rem;
  border-bottom: 1px solid var(--border);
}
.page-hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.page-hero-sub {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mid);
}

.contact-body {
  background: var(--cream);
  padding: 6rem 8%;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.contact-block { border-top: 1px solid var(--border); padding-top: 1.8rem; }
.contact-label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
}
.contact-value {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.6;
  display: block;
  transition: color .2s;
}
a.contact-value:hover { color: var(--gold); }

/* Hours table */
.hours-table { display: flex; flex-direction: column; gap: .5rem; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .4rem 0;
  border-bottom: 1px solid var(--border);
}
.hours-row:last-child { border-bottom: none; }
.hours-day {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--dark);
}
.hours-time {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--mid);
}
.hours-row--sunday .hours-day,
.hours-row--sunday .hours-time { color: var(--gold); }

/* Socials in contact */
.contact-socials { display: flex; gap: .8rem; }
.contact-socials a {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--dark); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: .25s;
}
.contact-socials a:hover { background: var(--gold); }

/* Map */
.contact-map {
  height: 600px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.contact-map iframe { display: block; width: 100%; height: 100%; }

/* Responsive */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-map { height: 380px; }
}
@media (max-width: 768px) {
  .contact-body { padding: 4rem 1.5rem; }
  .page-hero { padding: 4rem 1.5rem 3rem; }
}

/* ============================================
   FAQS PAGE
   ============================================ */
.faq-body {
  background: var(--cream);
  padding: 6rem 8%;
}
.faq-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.faq-group-title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gold);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem 0;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--dark);
  text-align: left;
  transition: color .2s;
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  transition: transform .3s;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 1.4rem;
}
.faq-a p {
  font-family: var(--sans);
  font-size: 12.5px;
  line-height: 1.95;
  color: var(--mid);
}
.faq-a a { color: var(--gold); text-decoration: underline; }
.faq-a a:hover { color: var(--dark); }

/* FAQ CTA */
.faq-cta {
  text-align: center;
  padding: 4rem 2rem;
  border: 1px solid var(--border);
  background: var(--cream);
}
.faq-cta h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .faq-body { padding: 4rem 1.5rem; }
}

/* ============================================
   DELIVERY PAGE
   ============================================ */
.delivery-body {
  background: var(--cream);
  padding: 6rem 8%;
}
.delivery-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.delivery-section {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
  align-items: start;
}
.delivery-section-label {
  position: sticky;
  top: 100px;
}
.delivery-num {
  display: block;
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(30,37,48,.08);
  line-height: 1;
  margin-bottom: .4rem;
}
.delivery-section-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--dark);
  padding-bottom: .8rem;
  border-bottom: 2px solid var(--gold);
}
.delivery-section-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.delivery-block h3 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.delivery-block p {
  font-family: var(--sans);
  font-size: 12.5px;
  line-height: 1.95;
  color: var(--mid);
  margin-bottom: .8rem;
}
.delivery-block p:last-child { margin-bottom: 0; }
.delivery-block p strong { color: var(--dark); font-weight: 600; }
.delivery-block a { color: var(--gold); text-decoration: underline; }
.delivery-block a:hover { color: var(--dark); }

/* Shipping table */
.delivery-table {
  margin-top: 1.2rem;
  border: 1px solid var(--border);
  overflow: hidden;
}
.delivery-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: .85rem 1.2rem;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}
.delivery-row:last-child { border-bottom: none; }
.delivery-row span {
  font-family: var(--sans);
  font-size: 11.5px;
  color: var(--mid);
  line-height: 1.4;
}
.delivery-row--head {
  background: var(--dark);
}
.delivery-row--head span {
  color: #fff;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* Return list */
.delivery-list {
  margin: .8rem 0 0 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.delivery-list li {
  font-family: var(--sans);
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--mid);
}

.delivery-note {
  margin-top: 1rem !important;
  font-size: 11px !important;
  font-style: italic;
}

.delivery-divider {
  height: 1px;
  background: var(--border);
}

@media (max-width: 768px) {
  .delivery-body { padding: 4rem 1.5rem; }
  .delivery-section { grid-template-columns: 1fr; gap: 1.5rem; }
  .delivery-section-label { position: static; }
  .delivery-row { grid-template-columns: 1fr 1fr; }
  .delivery-row span:last-child { grid-column: 1 / -1; color: var(--gold); font-weight: 600; }
}

/* ============================================
   LOCATION PAGE
   ============================================ */
.location-map-full {
  width: 100%;
  height: 480px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.location-map-full iframe { display: block; width: 100%; height: 100%; }

.location-body {
  background: var(--cream);
  padding: 6rem 8%;
  border-bottom: 1px solid var(--border);
}
.location-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
.location-block { border-top: 2px solid var(--gold); padding-top: 1.8rem; }
.location-value {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.location-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dark);
  border: 1px solid var(--dark);
  padding: .65rem 1.2rem;
  transition: .25s;
}
.location-directions-btn:hover { background: var(--dark); color: #fff; }

.location-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.location-contact-item {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--dark);
  transition: color .2s;
}
.location-contact-item svg { color: var(--gold); flex-shrink: 0; }
.location-contact-item:hover { color: var(--gold); }

/* CRUISE BANNER */
.cruise-banner {
  background: var(--dark);
  background-image: url('images/cruise-banner-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 7rem 8%;
  text-align: center;
}
.cruise-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 17, 25, 0.72);
  z-index: 0;
}
.cruise-banner-inner { position: relative; z-index: 1; }
.cruise-banner-inner {
  max-width: 700px;
  margin: 0 auto;
}
.cruise-banner .eyebrow { color: var(--gold); margin-bottom: 1.2rem; }
.cruise-banner h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.8rem;
}
.cruise-banner p {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 2;
  color: rgba(255,255,255,.65);
  margin-bottom: 2.8rem;
}
.cruise-banner-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cruise-banner .btn-dark {
  background: var(--gold);
  border-color: var(--gold);
}
.cruise-banner .btn-dark:hover {
  background: transparent;
  color: var(--gold);
}
.cruise-banner .btn-gold-outline { border-color: rgba(255,255,255,.4); color: #fff; }
.cruise-banner .btn-gold-outline:hover { background: #fff; color: var(--dark); border-color: #fff; }

@media (max-width: 900px) {
  .location-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .location-map-full { height: 320px; }
  .location-body { padding: 4rem 1.5rem; }
  .location-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .cruise-banner { padding: 5rem 1.5rem; }
}

/* ============================================
   OUR STORY PAGE
   ============================================ */

/* FOUNDER */
.story-founder {
  background: var(--cream);
  padding: 7rem 8%;
  border-bottom: 1px solid var(--border);
}
.story-founder-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 6rem;
  align-items: start;
}
.story-founder-img { position: sticky; top: 100px; }
.story-founder-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top center;
  display: block;
  margin-bottom: 0;
}
.story-founder-caption {
  background: var(--dark);
  padding: 1.2rem 1.5rem;
}
.story-founder-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: .2rem;
}
.story-founder-role {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.story-founder-text h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 2rem;
}
.story-founder-text p {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 2;
  color: var(--mid);
  margin-bottom: 1.4rem;
}
.story-founder-text p:last-child { margin-bottom: 0; }
.story-founder-text em { font-style: italic; color: var(--dark); }
.story-founder-text strong { color: var(--dark); font-weight: 700; }

/* PASH ACRONYM */
.story-pash {
  background: var(--dark);
  background-image: url('images/pash-philosophy-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 7rem 8%;
  text-align: center;
}
.story-pash::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 17, 25, 0.82);
  z-index: 0;
}
.story-pash-inner { position: relative; z-index: 1; }
.story-pash-inner { max-width: 1100px; margin: 0 auto; }
.story-pash .eyebrow { color: var(--gold); }
.story-pash h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 4rem;
}
.pash-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.pash-card {
  border: 1px solid rgba(255,255,255,.1);
  padding: 2.5rem 1.5rem;
  text-align: left;
  transition: border-color .3s;
}
.pash-card:hover { border-color: var(--gold); }
.pash-letter {
  display: block;
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.2rem;
}
.pash-text {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.85;
  color: rgba(255,255,255,.65);
}

/* TESTIMONIAL */
.story-testimonial {
  background: var(--cream);
  padding: 7rem 8%;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.story-testimonial-inner {
  max-width: 760px;
  margin: 0 auto;
}
.story-testimonial .stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: .2em;
  margin-bottom: 2rem;
}
.story-testimonial blockquote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.story-testimonial cite {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mid);
  font-style: normal;
}

/* CODE OF CONDUCT */
.story-conduct {
  background: var(--cream);
  padding: 7rem 8%;
  border-top: 1px solid var(--border);
}
.story-conduct-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 6rem;
  align-items: start;
}
.story-conduct-header { position: sticky; top: 100px; }
.story-conduct-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.2;
  margin-top: .6rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gold);
}
.story-conduct-body {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
}
.conduct-block { border-top: 1px solid var(--border); padding-top: 1.8rem; }
.conduct-block h3 {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}
.conduct-block p {
  font-family: var(--sans);
  font-size: 12.5px;
  line-height: 1.95;
  color: var(--mid);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .pash-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .story-founder-inner,
  .story-conduct-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-founder-img { position: static; }
  .story-conduct-header { position: static; }
  .story-founder { padding: 4rem 1.5rem; }
  .story-pash { padding: 5rem 1.5rem; }
  .story-testimonial { padding: 5rem 1.5rem; }
  .story-conduct { padding: 4rem 1.5rem; }
  .pash-grid { grid-template-columns: 1fr; }
}

/* VISIT CTA BANNER */
.story-visit-cta {
  background: var(--dark);
  background-image: url('images/visit-banner-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 8rem 8%;
  text-align: center;
}
.story-visit-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 17, 25, 0.62);
  z-index: 0;
}
.story-visit-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}
.story-visit-cta .eyebrow { color: var(--gold); margin-bottom: 1rem; }
.story-visit-cta h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 2.5rem;
  line-height: 1.2;
}
.story-visit-cta .btn-dark {
  background: var(--gold);
  border-color: var(--gold);
}
.story-visit-cta .btn-dark:hover {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

/* ============================================
   JEWELRY PAGE
   ============================================ */

/* HERO */
.jewelry-hero {
  position: relative;
  min-height: 620px;
  background: var(--dark);
  background-image: url('images/jewelry-hero.jpg');
  background-size: cover;
  background-position: center top;
  display: flex;
  align-items: center;
}
.jewelry-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,17,25,.85) 40%, rgba(13,17,25,.3) 100%);
}
.jewelry-hero-inner {
  position: relative;
  z-index: 1;
  padding: 6rem 8%;
  max-width: 680px;
}
.jewelry-hero-inner .eyebrow { color: var(--gold); margin-bottom: 1.2rem; }
.jewelry-hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.8rem;
}
.jewelry-hero-sub {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 2;
  color: rgba(255,255,255,.7);
  max-width: 480px;
  margin-bottom: 2.5rem;
}

/* INTRO STRIP */
.jewelry-intro-strip {
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.8rem 4%;
  gap: 0;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.08);
}
.jewelry-intro-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .5rem 2.5rem;
}
.jewelry-intro-item p {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.jewelry-intro-icon { color: var(--gold); font-size: .7rem; }
.jewelry-intro-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,.15);
}

/* CATEGORIES */
.jewelry-categories {
  background: var(--cream);
  padding: 6rem 8%;
}
.jewelry-categories-header {
  text-align: center;
  margin-bottom: 4rem;
}
.jewelry-categories-header h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--dark);
}
.jewelry-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.jewelry-cat-card--wide {
  grid-column: span 3;
}
.jewelry-cat-card { background: var(--cream); }
.jewelry-cat-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.jewelry-cat-card--wide .jewelry-cat-img-wrap {
  aspect-ratio: 16/5;
}
.jewelry-cat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .6s ease;
  display: block;
}
.jewelry-cat-card:hover .jewelry-cat-img-wrap img { transform: scale(1.05); }
.jewelry-cat-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,17,25,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .35s ease;
}
.jewelry-cat-card:hover .jewelry-cat-overlay { opacity: 1; }
.jewelry-cat-cta {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,.6);
  padding: .75rem 1.8rem;
  transition: .25s;
}
.jewelry-cat-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.jewelry-cat-info {
  padding: 1.2rem 0 .5rem;
  border-top: 2px solid var(--gold);
  margin-top: .2rem;
}
.jewelry-cat-info h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: .4rem;
}
.jewelry-cat-info p {
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.7;
  color: var(--mid);
}

/* CUSTOM BANNER */
.jewelry-custom-banner {
  background: var(--dark);
  background-image: url('images/custom-banner-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  border-top: 1px solid var(--border);
  padding: 7rem 8%;
  text-align: center;
}
.jewelry-custom-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 17, 25, 0.75);
  z-index: 0;
}
.jewelry-custom-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}
.jewelry-custom-banner .eyebrow { color: var(--gold); margin-bottom: 1rem; }
.jewelry-custom-banner h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 1.4rem;
  line-height: 1.2;
}
.jewelry-custom-banner p {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 2;
  color: rgba(255,255,255,.7);
  margin-bottom: 2.5rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .jewelry-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .jewelry-cat-card--wide { grid-column: span 2; }
}
@media (max-width: 768px) {
  .jewelry-hero { min-height: 500px; }
  .jewelry-hero-inner { padding: 4rem 1.5rem; }
  .jewelry-intro-strip { gap: 0; }
  .jewelry-intro-divider { display: none; }
  .jewelry-intro-item { padding: .5rem 1rem; }
  .jewelry-categories { padding: 4rem 1.5rem; }
  .jewelry-cat-grid { grid-template-columns: 1fr; }
  .jewelry-cat-card--wide { grid-column: span 1; }
  .jewelry-cat-card--wide .jewelry-cat-img-wrap { aspect-ratio: 4/3; }
  .jewelry-custom-banner { padding: 5rem 1.5rem; }
}

/* ============================================
   TRIP PLANNING BANNER
   ============================================ */
.trip-banner {
  background: var(--dark);
  background-image: url('images/trip-banner-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 8rem 8%;
  text-align: center;
}
.trip-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 17, 25, 0.68);
  z-index: 0;
}
.trip-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.trip-banner .eyebrow { color: var(--gold); margin-bottom: 1rem; }
.trip-banner h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.trip-banner p {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 2;
  color: rgba(255,255,255,.7);
  margin-bottom: 2.5rem;
}
.trip-banner .btn-gold-outline {
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.trip-banner .btn-gold-outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* ============================================
   DELIVERY BANNER CTA
   ============================================ */
.delivery-banner {
  background: var(--dark);
  background-image: url('images/delivery-banner-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 8rem 8%;
  text-align: center;
}
.delivery-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 17, 25, 0.72);
  z-index: 0;
}
.delivery-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}
.delivery-banner .eyebrow { color: var(--gold); margin-bottom: 1rem; }
.delivery-banner h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.delivery-banner p {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 2;
  color: rgba(255,255,255,.7);
  margin-bottom: 2.5rem;
}
.delivery-banner .btn-gold-outline {
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.delivery-banner .btn-gold-outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* ============================================
   FAQ BANNER CTA
   ============================================ */
.faq-banner {
  background: var(--dark);
  background-image: url('images/faq-banner-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 8rem 8%;
  text-align: center;
}
.faq-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 17, 25, 0.72);
  z-index: 0;
}
.faq-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}
.faq-banner .eyebrow { color: var(--gold); margin-bottom: 1rem; }
.faq-banner h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.faq-banner p {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 2;
  color: rgba(255,255,255,.7);
  margin-bottom: 2.5rem;
}
.faq-banner .btn-gold-outline {
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.faq-banner .btn-gold-outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* Product card button as link */
.btn-card {
  background: var(--gold);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .55rem 1.4rem;
  display: inline-block;
  transition: .2s;
}
.btn-card:hover { background: #fff; color: var(--dark); }

/* ============================================
   PASH'S COLLECTION PAGE
   ============================================ */
.collection-filter-bar {
  background: var(--cream);
  padding: 2rem 8%;
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
}
.filter-btn {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dark);
  background: none;
  border: 1px solid var(--border);
  padding: .55rem 1.4rem;
  cursor: pointer;
  transition: .2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}
.collection-body {
  background: var(--cream);
  padding: 4rem 8% 6rem;
}
.collection-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) { .collection-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) {
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .collection-filter-bar { padding: 1.5rem; }
  .collection-body { padding: 3rem 1.5rem; }
}

/* ============================================
   CUSTOM PIECES PAGE
   ============================================ */
.custom-intro {
  background: var(--cream);
  padding: 7rem 8%;
  border-bottom: 1px solid var(--border);
}
.custom-intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.custom-intro-images {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1rem;
  align-items: start;
}
.custom-intro-images .custom-photo-a {
  width: 100%; height: 420px;
  object-fit: cover; margin-top: 2rem;
}
.custom-intro-images .custom-photo-b {
  width: 100%; height: 530px;
  object-fit: cover; object-position: top center;
}
.custom-intro-text h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.custom-intro-text p {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 2;
  color: var(--mid);
  margin-bottom: 1.2rem;
}
.custom-intro-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* PROCESS STEPS */
.custom-process {
  background: var(--dark);
  padding: 7rem 8%;
  text-align: center;
}
.custom-process-inner { max-width: 1200px; margin: 0 auto; }
.custom-process .eyebrow { color: var(--gold); }
.custom-process h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 4rem;
}
.custom-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: left;
}
.custom-step { border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.8rem; }
.custom-step-num {
  display: block;
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  opacity: .5;
  line-height: 1;
  margin-bottom: 1rem;
}
.custom-step h3 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: .8rem;
}
.custom-step p {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.9;
  color: rgba(255,255,255,.6);
}

/* CUSTOM FORM */
.custom-form-section {
  background: var(--cream);
  padding: 7rem 8%;
}
.custom-form-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}
.custom-form-text h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.custom-form-text p {
  font-family: var(--sans);
  font-size: 12.5px;
  line-height: 1.95;
  color: var(--mid);
  margin-bottom: 2rem;
}
.custom-form-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.2rem;
}
.form-group label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--dark);
  background: #fff;
  border: 1px solid var(--border);
  padding: .85rem 1rem;
  outline: none;
  transition: border-color .2s;
  width: 100%;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; }
.form-disclaimer {
  font-family: var(--sans);
  font-size: 10px;
  color: var(--mid);
  text-align: center;
  margin-top: 1rem;
  font-style: italic;
}

@media (max-width: 1024px) { .custom-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .custom-intro-inner,
  .custom-form-inner { grid-template-columns: 1fr; gap: 3rem; }
  .custom-intro { padding: 4rem 1.5rem; }
  .custom-process { padding: 5rem 1.5rem; }
  .custom-form-section { padding: 4rem 1.5rem; }
  .custom-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* Products heading see all link */
.products-see-all {
  display: inline-block;
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--dark);
  border-bottom: 1px solid var(--dark);
  padding-bottom: 1px;
  margin-top: .8rem;
  transition: .2s;
}
.products-see-all:hover { color: var(--gold); border-color: var(--gold); }

/* ============================================
   COLLECTION PAGE BANNER
   ============================================ */
.collection-banner {
  background: var(--dark);
  background-image: url('https://www.lucky26.mango.vi/images/collection-banner-bg-2.jpg');
  background-size: cover;
  background-position: center top;
  position: relative;
  padding: 8rem 8%;
  text-align: center;
}
.collection-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 17, 25, 0.65);
  z-index: 0;
}
.collection-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}
.collection-banner .eyebrow { color: var(--gold); margin-bottom: 1rem; }
.collection-banner h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.collection-banner p {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 2;
  color: rgba(255,255,255,.7);
  margin-bottom: 2.5rem;
}
.collection-banner .btn-gold-outline {
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.collection-banner .btn-gold-outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* COLLECTION INTRO STRIP */
.collection-intro-strip {
  background: var(--cream);
  padding: 5rem 8%;
  border-bottom: 1px solid var(--border);
}
.collection-intro-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.collection-intro-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}
.collection-intro-content .eyebrow { margin-bottom: 1rem; }
.collection-intro-heading {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 1.8rem;
}
.collection-intro-text {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 2;
  color: var(--mid);
  margin-bottom: 1.2rem;
}
.collection-intro-text:last-child { margin-bottom: 0; }
@media (max-width: 900px) {
  .collection-intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .collection-intro-img img { height: 380px; }
}

/* Collection intro photo caption */
.collection-intro-caption {
  background: #cfcfcf;
  padding: 1rem 1.4rem;
}
.collection-caption-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: .2rem;
}
.collection-caption-role {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================
   HOMEPAGE PRODUCTS TWO-COLUMN
   ============================================ */
.products-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.products-pash-col {
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.products-pash-header {
  padding: 2.5rem 2.5rem 1.5rem;
}
.products-pash-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 300;
  color: var(--dark);
  margin-bottom: .5rem;
}
.products-pash-header p {
  font-family: var(--sans);
  font-size: 11.5px;
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 1rem;
}
.products-pash-col > img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.products-grid-col {
  padding: 1.5rem;
}
.product-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .8rem;
  height: 100%;
}
.product-grid-2x2 .product-img-wrap {
  height: 180px;
  aspect-ratio: unset;
}
.product-grid-2x2 .product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .products-two-col { grid-template-columns: 1fr; }
  .products-pash-col { border-right: none; border-bottom: 1px solid var(--border); }
}

/* ============================================
   PASH COLLECTION BANNER (Homepage)
   ============================================ */
.pash-banner {
  position: relative;
  min-height: 500px;
  background: var(--dark);
  background-image: url('images/pash-collection-photo.jpg');
  background-size: cover;
  background-position: center 20%;
  display: flex;
  align-items: center;
}
.pash-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,17,25,0) 30%, rgba(13,17,25,.78) 65%, rgba(13,17,25,.82) 100%);
}
.pash-banner-inner {
  position: relative;
  z-index: 1;
  padding: 5rem 8%;
  max-width: 620px;
  margin-left: auto;
  text-align: right;
}
.pash-banner-inner .eyebrow { color: var(--gold); margin-bottom: 1rem; }
.pash-banner-inner h2 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.pash-banner-inner p {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 2;
  color: rgba(255,255,255,.7);
  margin-bottom: 2.5rem;
}
.pash-banner-inner .btn-gold-outline {
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.pash-banner-inner .btn-gold-outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
@media (max-width: 768px) {
  .pash-banner { min-height: 420px; }
  .pash-banner-inner { padding: 4rem 1.5rem; }
}

/* FOOTER TRIPADVISOR BADGE */
.footer-ta-badge {
  margin-top: 2rem;
}
.footer-ta-badge img {
  height: 80px;
  width: auto;
  margin: 0 auto;
  display: block;
  transition: opacity .2s;
}
.footer-ta-badge img:hover { opacity: .85; }

/* ============================================
   4 CS OF DIAMONDS PAGE
   ============================================ */
.fourcс-intro,
.fourcc-intro {
  background: var(--cream);
  padding: 5rem 8%;
  border-bottom: 1px solid var(--border);
}
.fourcc-intro-inner {
  max-width: 860px;
  margin: 0 auto;
}
.fourcc-intro-inner p {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 2;
  color: var(--mid);
  margin-bottom: 1.2rem;
}
.fourcc-intro-inner p:last-child { margin-bottom: 0; }

.fourcc-body {
  background: var(--cream);
}
.fourcc-item {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 5rem;
  padding: 5rem 8%;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.fourcc-item--alt {
  background: #f9f7f5;
}
.fourcc-item-label {
  position: sticky;
  top: 110px;
  text-align: center;
}
.fourcc-letter {
  display: block;
  font-family: var(--serif);
  font-size: 8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  opacity: .3;
}
.fourcc-title {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: .3rem;
  line-height: 1.1;
}
.fourcc-subtitle {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}
.fourcc-item-content p {
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 2;
  color: var(--mid);
  margin-bottom: 1.4rem;
}

/* Scale grades */
.fourcc-scale {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 1.5rem 0;
  border: 1px solid var(--border);
  overflow: hidden;
}
.fourcc-scale-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 1.2rem;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}
.fourcc-scale-item:last-child { border-bottom: none; }
.scale-grade {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: .06em;
  white-space: nowrap;
}
.scale-label {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--mid);
  text-align: right;
}

/* Callout box */
.fourcc-callout {
  background: var(--dark);
  color: rgba(255,255,255,.85);
  padding: 1.2rem 1.5rem;
  font-family: var(--sans);
  font-size: 12.5px;
  line-height: 1.8;
  margin-top: 1.5rem;
  border-left: 3px solid var(--gold);
}
.fourcc-callout strong {
  color: var(--gold);
  font-weight: 700;
}

@media (max-width: 900px) {
  .fourcc-item { grid-template-columns: 1fr; gap: 2rem; }
  .fourcc-item-label { position: static; text-align: left; display: flex; align-items: center; gap: 1.5rem; }
  .fourcc-letter { font-size: 5rem; }
}
@media (max-width: 768px) {
  .fourcc-intro { padding: 4rem 1.5rem; }
  .fourcc-item { padding: 4rem 1.5rem; }
}

/* Mobile nav sub-item */
.mobile-nav-sub {
  font-size: 1.2rem !important;
  color: var(--mid) !important;
  margin-top: -.4rem;
}
.mobile-nav-sub:hover { color: var(--gold) !important; }

/* 4 CS HERO BANNER */
.fourcs-hero {
  position: relative;
  min-height: 420px;
  background: var(--dark);
  background-image: url('images/fourcs-hero-bg.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fourcs-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 17, 25, 0.62);
}
.fourcs-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 5rem 2rem;
}
.fourcs-hero-inner .eyebrow { color: var(--gold); margin-bottom: 1rem; }
.fourcs-hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.fourcs-hero-sub {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}

/* 4 CS CTA BANNER */
.fourcs-cta-banner {
  background: var(--dark);
  background-image: url('https://www.lucky26.mango.vi/images/fourcs-hero-bg-2.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 8rem 8%;
  text-align: center;
}
.fourcs-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 17, 25, 0.55);
  z-index: 0;
}
.fourcs-cta-banner .trip-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.fourcs-cta-banner .eyebrow { color: var(--gold); margin-bottom: 1rem; }
.fourcs-cta-banner h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.fourcs-cta-banner p {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 2;
  color: rgba(255,255,255,.7);
  margin-bottom: 2.5rem;
}
.fourcs-cta-banner .btn-dark {
  background: var(--gold);
  border-color: var(--gold);
}
.fourcs-cta-banner .btn-dark:hover {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.fourcs-cta-banner .btn-gold-outline {
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.fourcs-cta-banner .btn-gold-outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
