/* ============================================================
   KINGDOM — Home landing page layout
   ============================================================ */

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 242, 236, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  height: 96px;
}
/* symmetric header: brand pinned left, nav dead-centre, actions pinned right —
   the logo keeps its size; spacing on both sides of the nav is now equal. */
.header-inner > .brand { grid-column: 1; justify-self: start; }
.header-inner > .nav { grid-column: 2; justify-self: center; }
.header-inner > .header-right { grid-column: 3; justify-self: end; }
.brand { display: flex; flex-direction: column; align-items: center; line-height: 1; gap: 4px; }
.brand .crown { width: 26px; height: 16px; margin-bottom: 2px; stroke: var(--gold); fill: none; stroke-width: 1.2; }
.brand .word {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: 0.28em;
  color: var(--gold-deep);
  font-weight: 500;
  padding-left: 0.28em;
}
.brand .sub {
  font-family: var(--sans);
  font-size: 8.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 700;
}
.brand-logo { height: 24px; width: auto; max-width: none; display: block; }
@media (max-width: 600px) { .brand-logo { height: 20px; } }
.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s ease;
}
.nav a:hover { color: var(--gold-deep); }
.nav a { white-space: nowrap; }
.nav .caret { width: 9px; height: 9px; stroke: currentColor; stroke-width: 1.6; fill: none; opacity: .6; }
.header-right { display: flex; align-items: center; gap: 22px; }
.header-divider { width: 1px; height: 34px; background: var(--line); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 1.6px; background: var(--emerald); margin: 5px 0; transition: .3s; }

/* mobile nav */
.mobile-nav { display: none; }

/* ---------- Hero ---------- */
.hero { padding: 30px 0 0; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  align-items: stretch;
  min-height: 560px;
  border-radius: 6px;
  overflow: hidden;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 64px 60px 8px;
}
.hero h1 {
  font-size: clamp(46px, 5vw, 76px);
  line-height: 1.04;
  margin: 22px 0 0;
  color: var(--gold-deep);
  text-wrap: balance;
}
.hero h1 .ink { color: var(--emerald); }
.hero .sub {
  margin-top: 26px;
  max-width: 460px;
  color: var(--charcoal);
  font-size: 17px;
}
.hero-cta { display: flex; gap: 16px; margin-top: 38px; flex-wrap: wrap; }
.hero-loc {
  margin-top: 30px;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 700; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep);
}
.hero-img { position: relative; }
.hero-img image-slot { width: 100%; height: 100%; min-height: 560px; }

/* ---------- Section frame ---------- */
.section { padding: 96px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(34px, 3.4vw, 52px); margin-top: 16px; line-height: 1.08; }
.section-head p { margin-top: 18px; color: var(--charcoal); }

/* ---------- Hero AI brief card (redesign) ---------- */
.hero h1 { font-size: clamp(36px, 4.2vw, 60px); }
.hero-img { position: relative; min-height: 560px; border: 1px solid var(--line-gold); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); }
.hero-photo { width: 100%; height: 100%; min-height: 560px; object-fit: cover; object-position: center top; display: block; }
/* Video is absolutely positioned so the frame height follows the copy column
   (grid stretch) exactly — symmetric bottoms, no empty space; cover crops. */
video.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.hero-card { background: #fff; border: 1px solid var(--line-gold); border-radius: 14px; padding: 22px; margin-top: 30px; box-shadow: var(--shadow-md); max-width: 480px; }
.hero-card-title { display: flex; align-items: center; gap: 9px; font-family: var(--sans); font-weight: 700; font-size: 14px; color: var(--emerald); margin-bottom: 14px; }
.hc-spark { width: 18px; height: 18px; fill: var(--gold); stroke: none; }
.hero-input { width: 100%; border: 1px solid var(--line); border-radius: 9px; background: var(--ivory-warm); padding: 14px 16px; font-family: var(--sans); font-size: 14.5px; color: var(--ink); resize: none; min-height: 64px; line-height: 1.5; outline: none; transition: border .2s, background .2s; box-sizing: border-box; }
.hero-input:focus { border-color: var(--gold); background: #fff; }
.hero-input::placeholder { color: rgba(90,86,84,0.5); opacity: 1; transition: opacity .4s ease; }
.hero-input.ph-out::placeholder { opacity: 0; }
@media (prefers-reduced-motion: reduce) { .hero-input::placeholder { transition: none; } }
.hero-chips { display: flex; flex-wrap: wrap; gap: 9px; margin: 14px 0 18px; }
.hero-chip { border: 1px solid var(--line); background: #fff; border-radius: 40px; padding: 9px 16px; font-family: var(--sans); font-weight: 600; font-size: 13px; color: var(--ink); cursor: pointer; transition: .18s; }
.hero-chip:hover { border-color: var(--line-gold); }
.hero-chip.sel { border-color: var(--gold); background: rgba(200,161,90,0.08); box-shadow: inset 0 0 0 1px var(--gold); color: var(--gold-deep); font-weight: 700; }
.hero-start { width: 100%; padding: 17px; font-size: 14px; }
.hero-note { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 12px; font-size: 12.5px; color: var(--charcoal); }
.hero-note svg { width: 14px; height: 14px; stroke: var(--gold-deep); fill: none; stroke-width: 1.5; }
.hero-note-pay { color: var(--gold-deep); font-weight: 700; margin-top: 8px; }
.consult-body .consult-meta-2 { margin: 16px 0 0; }
.trust-grid-4 { grid-template-columns: repeat(4, 1fr) !important; }
@media (max-width: 980px) {
  .trust-grid-4 { grid-template-columns: repeat(2, 1fr) !important; }
  .trust-grid-4 .trust-item:nth-child(2n) { border-right: none; }
  .trust-grid-4 .trust-item:nth-child(1), .trust-grid-4 .trust-item:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 600px) { .hero-card { max-width: none; } }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-top: 44px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.trust-item {
  padding: 38px 26px;
  text-align: center;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.trust-item:last-child { border-right: none; }
.trust-item .t-title { font-family: var(--sans); font-weight: 700; font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--emerald); }
.trust-item .t-desc { font-size: 13px; color: var(--charcoal); line-height: 1.5; max-width: 170px; }

/* ---------- Collections ---------- */
.collections { background: var(--ivory); }
.col-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.col-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex; flex-direction: column;
}
.col-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.col-card image-slot { width: 100%; height: 260px; }
.col-card .body { padding: 26px 26px 30px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.col-card .c-ico { width: 22px; height: 22px; stroke: var(--gold); stroke-width: 1.3; fill: none; }
.col-card h3 { font-size: 25px; }
.col-card .c-desc { font-size: 14.5px; color: var(--charcoal); flex: 1; }
.col-card .textlink { margin-top: 8px; }
.col-card .c-price { font-family: var(--sans); font-weight: 700; font-size: 13px; letter-spacing: 0.02em; color: var(--gold-deep); margin-top: 4px; }
.col-card .c-price span { color: var(--charcoal); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 9.5px; display: block; margin-bottom: 2px; opacity: .8; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--ivory-warm); border-top: 1px solid var(--line); }
.tm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.tm-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 30px 30px 26px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.tm-quote-mark { font-family: var(--serif); font-size: 60px; line-height: 0.4; color: var(--gold-soft); height: 22px; }
.tm-stars { display: flex; gap: 3px; margin: 14px 0; }
.tm-stars svg { width: 17px; height: 17px; fill: var(--gold); stroke: none; }
.tm-text { font-family: var(--serif-2); font-size: 19px; line-height: 1.55; color: var(--ink); font-style: italic; flex: 1; }
.tm-person { display: flex; align-items: center; gap: 13px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.tm-person image-slot { width: 50px; height: 50px; flex-shrink: 0; }
.tm-name { font-family: var(--sans); font-weight: 700; font-size: 14px; color: var(--emerald); line-height: 1.35; }
.tm-role { font-size: 12.5px; color: var(--charcoal); margin-top: 3px; line-height: 1.45; }
@media (max-width: 900px) { .tm-grid { grid-template-columns: 1fr; } }

/* ---------- AI Journey ---------- */
.journey { background: var(--ivory-warm); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.journey-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 70px; align-items: center; }
.journey-left h2 { font-size: clamp(32px, 3.2vw, 48px); margin-top: 16px; line-height: 1.08; }
.journey-left p { margin-top: 20px; color: var(--charcoal); max-width: 380px; }
.journey-left .btn { margin-top: 32px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.step {
  position: relative;
  text-align: left;
}
.step .num {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line-gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  background: var(--white);
}
.step .num svg { width: 22px; height: 22px; stroke: var(--gold); stroke-width: 1.3; fill: none; }
.step .s-idx { font-family: var(--sans); font-weight: 700; font-size: 11px; letter-spacing: 0.16em; color: var(--gold-deep); }
.step .s-title { font-family: var(--sans); font-weight: 700; font-size: 14px; letter-spacing: 0.02em; color: var(--emerald); margin: 7px 0 8px; text-transform: uppercase; }
.step .s-desc { font-size: 13px; color: var(--charcoal); line-height: 1.55; }
.step .connector { position: absolute; top: 23px; right: -7px; width: 14px; height: 10px; stroke: var(--gold); stroke-width: 1.3; fill: none; opacity: .8; }

/* ---------- AI Journey (redesigned) ---------- */
.jr-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: start; }
.jr-title { font-size: clamp(34px, 3.4vw, 50px); line-height: 1.12; margin-top: 18px; }
.jr-spark { width: 26px; height: 26px; fill: var(--gold); stroke: none; display: inline-block; vertical-align: baseline; }
.jr-lead { margin-top: 22px; color: var(--charcoal); max-width: 450px; line-height: 1.7; }
.jr-lead strong { color: var(--emerald); font-weight: 700; }
.jr-cta { margin-top: 30px; }
.jr-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 42px; padding-top: 30px; border-top: 1px solid var(--line); }
.jr-trust-item { display: flex; gap: 11px; align-items: flex-start; }
.jr-tico { width: 26px; height: 26px; stroke: var(--gold); stroke-width: 1.3; fill: none; flex-shrink: 0; }
.jr-trust-item span { font-size: 12.5px; color: var(--charcoal); line-height: 1.4; font-weight: 600; }

.jr-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 52px; position: relative; }
.jr-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px 24px 26px; position: relative; box-shadow: var(--shadow-sm); }
.jr-head { display: flex; align-items: center; gap: 14px; }
.jr-ico { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line-gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: var(--ivory-warm); }
.jr-ico svg { width: 23px; height: 23px; stroke: var(--gold); stroke-width: 1.3; fill: none; }
.jr-num { font-family: var(--sans); font-weight: 700; font-size: 13px; letter-spacing: 0.12em; color: var(--gold-deep); }
.jr-head h3 { font-size: 20px; margin-top: 3px; line-height: 1.25; }
.jr-head-txt { flex: 1; min-width: 0; }
.jr-desc { font-size: 13.5px; color: var(--charcoal); margin: 15px 0 16px; line-height: 1.5; }

.jr-chat { display: flex; gap: 10px; align-items: flex-end; }
.jr-av { width: 36px; height: 36px; border-radius: 50%; background: var(--emerald); color: var(--gold-soft); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 16px; flex-shrink: 0; }
.jr-bubble { background: var(--beige-soft); border-radius: 12px 12px 12px 4px; padding: 12px 14px; font-size: 13px; color: var(--ink); line-height: 1.5; }
.jr-time { display: block; text-align: right; font-size: 10px; color: var(--charcoal); margin-top: 6px; }
.jr-tick { color: #34a0d8; }

.jr-rings { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.jr-rings image-slot { width: 100%; height: 84px; }

.jr-mini { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.jr-mini-card { border: 1px solid var(--line); border-radius: 9px; padding: 10px 11px; display: flex; flex-direction: column; gap: 9px; }
.jr-mini-l { font-size: 10.5px; font-weight: 700; letter-spacing: 0.06em; color: var(--charcoal); text-transform: uppercase; }
.jr-mini-v { font-family: var(--serif); font-size: 16px; color: var(--emerald); }
.jr-dots { display: flex; align-items: center; gap: 5px; }
.jr-dots .dot { width: 14px; height: 14px; border-radius: 50%; display: inline-block; border: 1px solid rgba(0,0,0,0.08); }
.d-dia { background: linear-gradient(135deg, #fff, #d9d9d9); }
.d-sap { background: #2f5db0; } .d-rub { background: #b0202f; } .d-eme { background: #1f8a5b; }
.m-yel { background: linear-gradient(135deg, #e8c977, #c8a15a); }
.m-ros { background: linear-gradient(135deg, #e8b9a8, #cf9b86); }
.m-wht { background: linear-gradient(135deg, #fff, #cfcfcf); }
.jr-plus { font-size: 13px; color: var(--charcoal); margin-left: 2px; }

.jr-consult { display: flex; gap: 14px; align-items: center; }
.jr-consult image-slot { width: 66px; height: 66px; flex-shrink: 0; }
.jr-consult-name { font-family: var(--sans); font-weight: 700; font-size: 13.5px; color: var(--emerald); margin-bottom: 8px; }
.jr-check { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--ink); margin-bottom: 5px; }
.jr-cico { width: 16px; height: 16px; stroke: #1f8a5b; stroke-width: 2; fill: none; flex-shrink: 0; }

.jr-arrow { position: absolute; width: 26px; height: 26px; stroke: var(--gold); stroke-width: 1.4; fill: none; right: -39px; top: 36px; }

.jr-banner { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 34px; background: var(--ivory-warm); border: 1px solid var(--line-gold); border-radius: 12px; padding: 18px 26px; }
.jr-bcrown { width: 26px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.3; }
.jr-banner-t { font-family: var(--sans); font-weight: 700; font-size: 13px; letter-spacing: 0.12em; color: var(--gold-deep); text-transform: uppercase; }
.jr-banner-div { width: 1px; height: 20px; background: var(--line-gold); }
.jr-banner-s { font-size: 13.5px; color: var(--charcoal); }

@media (max-width: 980px) {
  .jr-grid { grid-template-columns: 1fr; gap: 40px; }
  .jr-arrow { display: none; }
  /* grids/flex rows must be allowed to shrink below content min-width on phones */
  .jr-grid > *, .jr-cards > *, .jr-trust > *, .jr-card > *, .jr-mini > *, .jr-banner > * { min-width: 0; }
}
@media (max-width: 600px) {
  .jr-cards { grid-template-columns: 1fr; }
  .jr-trust { grid-template-columns: 1fr; }
}

/* ============================================================
   Journey "Opsi A" — luxe hover polish (applied site-wide)
   Adds: card lift, orbiting gold ring on the step icons, and a
   sheen + twinkle on the CTA. Continuous motion is gated behind
   prefers-reduced-motion; the static states stay tasteful.
   The hover transform uses !important to win over luxe.css's
   `.is-in { transform:none !important }` reveal lock.
   ============================================================ */
.journey .jr-card { transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, border-color .3s ease; }
.journey .jr-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: var(--shadow-md);
  border-color: var(--line-gold);
}

/* icon: gold ring sweeps around it on hover */
.journey .jr-ico {
  position: relative; overflow: visible;
  transition: border-color .35s ease, box-shadow .45s ease, transform .45s cubic-bezier(.2,.7,.2,1);
}
.journey .jr-ico::after {
  content: ""; position: absolute; inset: -5px; border-radius: 50%; pointer-events: none;
  background: conic-gradient(from 0deg,
    var(--gold) 0deg, #fff2d4 90deg, var(--gold) 180deg, #b98f43 250deg, var(--gold) 320deg, var(--gold) 360deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3.5px), #000 calc(100% - 3px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 3.5px), #000 calc(100% - 3px));
  opacity: 0; transform: scale(.72) rotate(-120deg);
  transition: opacity .4s ease, transform .55s cubic-bezier(.2,.7,.2,1);
}
.journey .jr-card:hover .jr-ico {
  border-color: transparent;
  transform: scale(1.06);
  box-shadow: 0 6px 18px -7px rgba(200,161,90,.65);
}
.journey .jr-card:hover .jr-ico svg { stroke: var(--gold-deep); }
.journey .jr-card:hover .jr-ico::after { opacity: 1; transform: scale(1) rotate(0deg); }
@media (prefers-reduced-motion: no-preference) {
  .journey .jr-card:hover .jr-ico::after { animation: jrOrbit 3.2s linear .55s infinite; }
}
@keyframes jrOrbit { from { transform: scale(1) rotate(0deg); } to { transform: scale(1) rotate(360deg); } }

/* CTA: gold sheen sweep + twinkling spark icon */
.journey .jr-cta { position: relative; overflow: hidden; }
.journey .jr-cta::after {
  content: ""; position: absolute; top: 0; left: -135%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.22), transparent);
  transform: skewX(-18deg); pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .journey .jr-cta::after { animation: jrSheen 4.6s ease-in-out infinite; }
  .journey .jr-cta .ico-sm { animation: jrTwinkle 2.8s ease-in-out infinite; transform-origin: center; }
}
@keyframes jrSheen { 0%,16% { left: -135%; } 40%,100% { left: 165%; } }
@keyframes jrTwinkle { 0%,100% { opacity: 1; transform: scale(1) rotate(0); } 50% { opacity: .6; transform: scale(.8) rotate(12deg); } }
.ex-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.ex-card {
  background: var(--white); border-radius: 6px; overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .35s ease, box-shadow .35s ease;
}
.ex-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.ex-card image-slot { width: 100%; height: 230px; }
/* community teaser media + love + attribution */
.ex-card .ex-media { position: relative; height: 230px; overflow: hidden; background: var(--beige-soft); }
.ex-card .ex-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.ex-card:hover .ex-media img { transform: scale(1.045); }
.ex-card .ex-love {
  position: absolute; top: 12px; right: 12px;
  display: inline-flex; align-items: center; gap: 5px;
  height: 30px; padding: 0 11px 0 9px;
  border-radius: 100px; background: rgba(255,255,255,0.92);
  box-shadow: 0 2px 10px rgba(15,31,27,0.14);
  font-size: 11.5px; font-weight: 700; color: #C0392B; z-index: 2;
}
.ex-card .ex-love svg { width: 15px; height: 15px; fill: #C0392B; display: block; }
.ex-card .ex-by { margin-top: 12px; display: flex; align-items: center; gap: 8px; font-size: 11.5px; color: var(--charcoal); }
.ex-card .ex-by .ava {
  width: 24px; height: 24px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--beige); color: var(--emerald);
  font-weight: 700; font-size: 9.5px; flex: 0 0 auto;
}
.ex-card .ex-by .dot { opacity: .45; }
.ex-card .body { padding: 22px 24px 26px; }
.ex-card h3 { font-size: 21px; }
.ex-card .meta { font-size: 13px; color: var(--charcoal); margin: 7px 0 14px; letter-spacing: 0.01em; }
.ex-card .pill { display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-deep); border: 1px solid var(--line-gold); border-radius: 40px; padding: 4px 12px; }
.ex-card .body { display:flex; flex-direction:column; }
.center-cta { text-align: center; margin-top: 54px; }

/* ---------- Gemstone options ---------- */
.gems { background: var(--emerald); }
.gems .section-head h2, .gems .eyebrow { color: var(--gold-soft); }
.gems .eyebrow { color: var(--gold); }
.gems .section-head p { color: rgba(247,242,236,0.7); }
.gem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.gem-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(200,161,90,0.20);
  border-radius: 6px; overflow: hidden;
  transition: transform .35s ease, border-color .3s ease;
  display: flex; flex-direction: column;
}
.gem-card:hover { transform: translateY(-5px); border-color: rgba(200,161,90,0.5); }
.gem-card image-slot { width: 100%; height: 190px; }
.gem-card .body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.gem-card h3 { color: var(--gold-soft); font-size: 23px; }
.gem-card .g-desc { font-size: 14px; color: rgba(247,242,236,0.72); flex: 1; line-height: 1.6; }
.gem-card .textlink { color: var(--gold); }
.gem-card .textlink:hover { color: var(--gold-soft); }
.gems .disclaimer { text-align: center; margin-top: 40px; font-size: 12.5px; color: rgba(247,242,236,0.45); max-width: 720px; margin-left: auto; margin-right: auto; }

/* ---------- FAQ / How It Works ---------- */
.faq { background: var(--ivory-warm); border-top: 1px solid var(--line); }
.faq-list { max-width: 820px; margin: 8px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 4px; font-family: var(--serif); font-size: clamp(19px, 2vw, 23px); color: var(--emerald); transition: color .2s; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-deep); }
.faq-item .faq-plus { flex-shrink: 0; width: 26px; height: 26px; position: relative; transition: transform .3s ease; }
.faq-item .faq-plus::before, .faq-item .faq-plus::after { content: ""; position: absolute; background: var(--gold); border-radius: 2px; }
.faq-item .faq-plus::before { left: 50%; top: 4px; width: 1.6px; height: 18px; transform: translateX(-50%); transition: opacity .3s ease; }
.faq-item .faq-plus::after { top: 50%; left: 4px; height: 1.6px; width: 18px; transform: translateY(-50%); }
.faq-item[open] .faq-plus::before { opacity: 0; }
.faq-item[open] summary { color: var(--gold-deep); }
.faq-item .faq-answer { padding: 0 4px 26px; max-width: 700px; }
.faq-item[open] .faq-answer { animation: faqOpen .28s ease; }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.faq-item .faq-answer p { color: var(--charcoal); line-height: 1.7; font-size: 16px; }
.faq-cta { text-align: center; margin-top: 50px; }

/* ---------- Secondary trust ---------- */
.sectrust { background: var(--ivory); }
.sectrust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; background: var(--white); }
.sectrust-item { padding: 36px 30px; border-right: 1px solid var(--line); display: flex; gap: 16px; align-items: flex-start; }
.sectrust-item:last-child { border-right: none; }
.sectrust-item .st-ico { flex-shrink: 0; width: 34px; height: 34px; stroke: var(--gold); stroke-width: 1.2; fill: none; }
.sectrust-item .st-title { font-family: var(--sans); font-weight: 700; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--emerald); }
.sectrust-item .st-desc { font-size: 13px; color: var(--charcoal); margin-top: 8px; line-height: 1.55; }

/* ---------- Consultation CTA ---------- */
.consult { background: var(--ivory); padding-bottom: 96px; }
.consult-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: 8px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.consult-img { position: relative; min-height: 460px; }
.consult-img image-slot { width: 100%; height: 100%; }
/* New studio photo is near-square; center keeps the KINGDOM wall logo + table both framed */
.consult-img image-slot::part(image) { object-position: center !important; }
.consult-body {
  background: var(--emerald);
  padding: 64px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.consult-body .eyebrow { color: var(--gold); }
.consult-body h2 { color: var(--ivory); font-size: clamp(30px, 3vw, 44px); margin-top: 16px; line-height: 1.1; }
.consult-body p { color: rgba(247,242,236,0.72); margin-top: 20px; max-width: 420px; }
.consult-meta { display: flex; flex-direction: column; gap: 12px; margin: 30px 0 0; }
.consult-meta div { display: flex; align-items: center; gap: 12px; color: var(--gold-soft); font-size: 14px; font-weight: 600; letter-spacing: 0.02em; }
.consult-meta svg { width: 18px; height: 18px; stroke: var(--gold); stroke-width: 1.4; fill: none; }
.consult-body .btn { align-self: flex-start; }
.consult-body .btn-gold { margin-top: 34px; }
/* lead-capture fallback form */
.lead-or { display: flex; align-items: center; gap: 14px; margin: 24px 0 18px; color: rgba(247,242,236,0.5); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; }
.lead-or::before, .lead-or::after { content: ""; flex: 1; height: 1px; background: rgba(200,161,90,0.22); }
.lead-form { display: flex; flex-direction: column; gap: 12px; max-width: 440px; }
.lead-row { display: flex; gap: 12px; }
.lead-form input { flex: 1; min-width: 0; background: rgba(255,255,255,0.05); border: 1px solid rgba(200,161,90,0.28); border-radius: 7px; padding: 13px 15px; font-family: var(--sans); font-size: 14px; color: var(--ivory); outline: none; transition: border .2s, background .2s; }
.lead-form input::placeholder { color: rgba(247,242,236,0.42); }
.lead-form input:focus { border-color: var(--gold); background: rgba(255,255,255,0.08); }
.lead-form .btn-lead { background: transparent; color: var(--gold-soft); border: 1px solid var(--gold); width: 100%; }
.lead-form .btn-lead:hover { background: var(--gold); color: var(--emerald); }
.lead-note { font-size: 12.5px; color: rgba(247,242,236,0.55); text-align: center; margin-top: 2px; }
.lead-note.ok { color: var(--gold-soft); font-weight: 700; }
@media (max-width: 480px) { .lead-row { flex-direction: column; } }

/* ---- Clickable cards (collections + example pieces) ---- */
.col-card .body { cursor: pointer; }
.ex-card[data-seed-idea] { cursor: pointer; transition: transform .25s ease, box-shadow .25s ease; }
.ex-card[data-seed-idea]:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(15, 31, 27, 0.10); }

/* ---- Newsletter confirmation ---- */
.news-done { font-size: 13.5px; color: var(--gold-soft); padding: 12px 0; }

/* ---- Mobile: hero chips in one swipeable row ---- */
/* grid items must be allowed to shrink below their content's min width
   (otherwise the nowrap chips row stretches the hero column off-screen) */
.hero-grid > * { min-width: 0; }

@media (max-width: 640px) {
  .hero-chips { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .hero-chips::-webkit-scrollbar { display: none; }
  .hero-chip { white-space: nowrap; flex-shrink: 0; }
}

/* ---- Mobile sticky CTA bar ---- */
.m-cta { display: none; }
@media (max-width: 760px) {
  .m-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: flex; align-items: center; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(247, 242, 236, 0.94); backdrop-filter: blur(14px); border-top: 1px solid var(--line); transform: translateY(110%); transition: transform .3s ease; }
  .m-cta.show { transform: none; }
  .m-cta-main { flex: 1; justify-content: center; }
  .m-cta-wa { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 50%; background: #25D366; color: #fff; display: inline-flex; align-items: center; justify-content: center; }
  .m-cta-wa svg { width: 26px; height: 26px; }
  footer.footer { padding-bottom: 96px; }
}
/* very small phones (≤380px): tighten dense rows so nothing overflows */
@media (max-width: 380px) {
  .trust-item { padding: 26px 12px; }
  .jr-mini { gap: 8px; }
  .jr-mini-card { padding: 9px 8px; }
  .hero-copy h1 { font-size: 34px; }
}

/* ---------- Footer ---------- */
.footer { background: var(--emerald-deep); color: var(--ivory); padding: 76px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(5, 1fr); gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(200,161,90,0.16); }
.footer .brand .word { color: var(--gold); }
.footer .brand { align-items: flex-start; }
.footer .brand .sub { color: rgba(247,242,236,0.5); }
.footer .f-logo { display: block; width: 240px; max-width: 64%; height: auto; }
.footer .f-tag { margin-top: 16px; font-family: var(--serif-2); font-style: italic; font-size: 18px; color: var(--gold-soft); }
.f-col h4 { font-family: var(--sans); font-weight: 700; font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.f-col a { display: block; font-size: 14px; color: rgba(247,242,236,0.7); margin-bottom: 11px; transition: color .2s; }
.f-col a:hover { color: var(--ivory); }
.f-news p { font-size: 13px; color: rgba(247,242,236,0.6); margin-bottom: 14px; }
.f-news .news-form { display: flex; flex-direction: column; gap: 8px; }
.f-news .news-form input { width: 100%; background: rgba(247,242,236,0.05); border: 1px solid rgba(200,161,90,0.3); border-radius: 5px; padding: 11px 13px; color: var(--ivory); font-family: var(--sans); font-size: 13px; outline: none; }
.f-news .news-form input:focus { border-color: var(--gold); }
.f-news .news-form input::placeholder { color: rgba(247,242,236,0.4); }
.f-news .news-form button { width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--gold); border: none; border-radius: 5px; padding: 11px; cursor: pointer; color: #0F1F1B; font-family: var(--sans); font-weight: 700; font-size: 13px; transition: background .2s; }
.f-news .news-form button:hover { background: var(--gold-soft); }
.f-news .news-done { font-size: 13.5px; color: var(--gold-soft); font-weight: 700; line-height: 1.5; }
.f-news button { background: var(--gold); border: none; color: var(--emerald); padding: 0 16px; cursor: pointer; font-size: 16px; }
.f-news button:hover { background: var(--gold-soft); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 26px 0 40px; gap: 20px; flex-wrap: wrap; }
.f-social { display: flex; gap: 22px; }
.f-social a { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(247,242,236,0.6); font-weight: 700; transition: color .2s; }
.f-social a:hover { color: var(--gold); }
.f-legal { display: flex; gap: 26px; align-items: center; font-size: 12px; color: rgba(247,242,236,0.45); }
.f-legal a:hover { color: var(--gold-soft); }

/* ---------- Responsive ---------- */
@media (max-width: 1520px) {
  .nav { gap: 24px; }
  .nav a { font-size: 12px; letter-spacing: 0.1em; }
  .header-right { gap: 16px; }
}
@media (max-width: 1200px) {
  .nav { gap: 18px; }
  .nav a { font-size: 11px; letter-spacing: 0.08em; }
  .header-right { gap: 12px; }
}
@media (max-width: 980px) {
  .nav, .header-right .btn, .header-divider { display: none; }
  .hamburger { display: block; margin-right: -8px; }
  .header-right { gap: 12px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 8px; }
  .hero-copy { padding: 16px 20px 44px; }
  .hero-img image-slot { min-height: 380px; }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-item:nth-child(3n) { border-right: none; }
  .col-grid, .ex-grid, .gem-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .step .connector { display: none; }
  .sectrust-grid { grid-template-columns: repeat(2, 1fr); }
  .sectrust-item:nth-child(2n) { border-right: none; }
  .sectrust-item:nth-child(1), .sectrust-item:nth-child(2) { border-bottom: 1px solid var(--line); }
  .consult-grid { grid-template-columns: 1fr; }
  .consult-grid > * { min-width: 0; }
  .consult-img { min-height: 280px; }
  .consult-body { padding: 44px 26px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .mobile-nav.open { display: block; position: fixed; inset: 96px 0 0; background: var(--ivory); z-index: 49; padding: 30px 22px; }
  .mobile-nav.open a { display: block; padding: 16px 0; border-bottom: 1px solid var(--line); font-family: var(--sans); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; font-size: 14px; }
  .mobile-nav.open .btn { width: 100%; margin-top: 24px; }
}
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3n) { border-right: 1px solid var(--line); }
  .trust-item:nth-child(2n) { border-right: none; }
  .col-grid, .ex-grid, .gem-grid { grid-template-columns: 1fr; }
  .sectrust-grid { grid-template-columns: 1fr; }
  .sectrust-item { border-right: none !important; border-bottom: 1px solid var(--line); }
  .footer-top { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}

/* Language toggle as compact globe (Opsi A) */
.lang-globe{display:inline-flex;align-items:center;gap:6px}
.lang-globe .ico-globe{width:16px;height:16px;stroke:currentColor;fill:none;opacity:.85;flex-shrink:0}

/* ---------- Hero rotating headline (shimmer) ---------- */
.hero h1.hero-rot{white-space:nowrap;font-size:clamp(34px,3.8vw,54px);line-height:1.12}
.hero h1.hero-rot .ink{color:var(--emerald)}
.hero .hr-slot{display:inline-block;position:relative;vertical-align:bottom}
.hero .hr-word{color:var(--gold);background:linear-gradient(100deg,#8a6a2e 0%,#b98f43 16%,#e6cd8f 38%,#fff6dc 50%,#e6cd8f 62%,#b98f43 84%,#8a6a2e 100%);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;background-size:250% 100%;background-position:62% 0;display:inline-block;transition:opacity .28s ease,filter .28s ease}
.hero .hr-word.flow{animation:kdShimmer 3s linear infinite}
@keyframes kdShimmer{0%{background-position:140% 0}100%{background-position:-40% 0}}
@media(prefers-reduced-motion:reduce){.hero .hr-word{animation:none!important;opacity:1!important;filter:none!important}}
@media(max-width:760px){.hero h1.hero-rot{white-space:normal}}
