/* ═══════════════════════════════════════════════════════════════
   RS WEB SOLUTIONS - MAIN STYLESHEET
   Common styles for all pages
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   CSS VARIABLES & RESET
   ═══════════════════════════════════════════════════════════════ */
:root {
  --ink: #0b0804;
  --ink2: #130e08;
  --parch: #f0e4c8;
  --gold: #c8913a;
  --gold2: #e6aa45;
  --s1: rgba(200, 145, 58, 0.14);
  --s2: rgba(200, 145, 58, 0.32);
  --dim: rgba(240, 228, 200, 0.48);
  --dim2: rgba(240, 228, 200, 0.22);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--parch);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: .05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, transparent 50%, rgba(6, 3, 1, 0.65) 100%);
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL PROGRESS & CORNER FRAME
   ═══════════════════════════════════════════════════════════════ */
#prog {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  width: 0%;
  z-index: 9997;
  transition: width .1s;
}

.fc {
  position: fixed;
  z-index: 998;
  pointer-events: none;
  width: 24px;
  height: 24px;
}

.fc-tl { top: 12px; left: 12px; border-top: 1.5px solid var(--gold); border-left: 1.5px solid var(--gold); }
.fc-tr { top: 12px; right: 12px; border-top: 1.5px solid var(--gold); border-right: 1.5px solid var(--gold); }
.fc-bl { bottom: 12px; left: 12px; border-bottom: 1.5px solid var(--gold); border-left: 1.5px solid var(--gold); }
.fc-br { bottom: 12px; right: 12px; border-bottom: 1.5px solid var(--gold); border-right: 1.5px solid var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   PRELOADER (index.html, about.html)
   ═══════════════════════════════════════════════════════════════ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 9996;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: opacity .8s, visibility .8s;
}

#preloader.done {
  opacity: 0;
  visibility: hidden;
}

.pre-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  letter-spacing: .1em;
  color: var(--parch);
  animation: preP 1.5s ease-in-out infinite alternate;
}

.pre-sub {
  font-family: 'Caveat', cursive;
  font-size: .9rem;
  color: var(--gold);
  letter-spacing: .15em;
}

.pre-line {
  width: 120px;
  height: 1px;
  background: var(--s1);
  position: relative;
  overflow: hidden;
}

.pre-line::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: preL 1.2s ease-in-out infinite;
}

@keyframes preP { 0% { opacity: .4 } 100% { opacity: 1 } }
@keyframes preL { 0% { left: -100% } 100% { left: 100% } }

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  border-bottom: 1px solid var(--s1);
  background: rgba(11, 8, 4, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  letter-spacing: .07em;
  color: var(--parch);
  display: block;
  line-height: 1.1;
}

.logo-sub {
  font-family: 'Caveat', cursive;
  font-size: .72rem;
  color: var(--gold);
  letter-spacing: .1em;
  display: block;
}

.nav-r {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-r a {
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dim);
  text-decoration: none;
  font-style: italic;
  transition: color .2s;
}

.nav-r a:hover {
  color: var(--gold);
}

.nav-pill {
  padding: .5rem 1.3rem;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  font-style: normal !important;
  transition: background .25s, color .25s !important;
}

.nav-pill:hover {
  background: var(--gold) !important;
  color: var(--ink) !important;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.burger span {
  width: 20px;
  height: 1px;
  background: var(--parch);
  display: block;
}

/* NAV DROPDOWN */
.nav-item {
  position: relative;
  display: flex !important;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(240, 228, 200, 0.48);
  text-decoration: none;
  font-style: italic;
  transition: color .2s;
  padding: .5rem .9rem;
  display: flex;
  align-items: center;
  gap: .3rem;
  white-space: nowrap;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -.2rem;
  left: .9rem;
  right: .9rem;
  height: 1px;
  background: var(--gold);
}

.nav-arrow {
  font-size: .55rem;
  transition: transform .25s;
  opacity: .6;
  display: inline-block;
}

.nav-item:hover .nav-arrow {
  transform: rotate(180deg);
}

.nav-drop {
  position: absolute;
  top: calc(100% + .8rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(13, 9, 5, 0.97);
  border: 1px solid rgba(200, 145, 58, 0.32);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s, transform .25s;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 600;
}

.nav-drop::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: rgba(13, 9, 5, 0.97);
  border-left: 1px solid rgba(200, 145, 58, 0.32);
  border-top: 1px solid rgba(200, 145, 58, 0.32);
}

.nav-item:hover .nav-drop {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-drop-item {
  display: block;
  padding: .7rem 1.2rem;
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  font-style: italic;
  color: rgba(240, 228, 200, 0.72);
  text-decoration: none;
  transition: color .2s, background .2s;
  border-bottom: 1px solid rgba(200, 145, 58, 0.14);
  white-space: nowrap;
}

.nav-drop-item:last-child {
  border-bottom: none;
}

.nav-drop-item:hover {
  color: var(--gold);
  background: rgba(200, 145, 58, 0.06);
}

.nav-drop-item span {
  font-family: 'Caveat', cursive;
  font-size: .7rem;
  color: var(--gold);
  opacity: .6;
  display: block;
  letter-spacing: .05em;
}

/* MOBILE NAV */
.mob-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 5, 2, 0.98);
  z-index: 600;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}

.mob-nav.open {
  display: flex;
}

.mob-nav a {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 7vw, 3rem);
  font-style: italic;
  color: var(--parch);
  text-decoration: none;
  transition: color .2s;
}

.mob-nav a:hover {
  color: var(--gold);
}

.mob-cl {
  position: absolute;
  top: 1.4rem;
  right: 1.5rem;
  font-family: 'Caveat', cursive;
  font-size: .85rem;
  color: var(--dim2);
  background: none;
  border: none;
  cursor: pointer;
}

.mob-nav-link {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-style: italic;
  color: #f0e4c8;
  text-decoration: none;
  transition: color .2s;
  text-align: center;
}

.mob-nav-link:hover, .mob-nav-link.active {
  color: var(--gold);
}

.mob-nav-sub {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem;
  margin-top: -.8rem;
}

.mob-nav-sub a {
  font-family: 'Caveat', cursive;
  font-size: .85rem;
  color: rgba(240, 228, 200, 0.65);
  text-decoration: none;
  padding: .3rem .7rem;
  border: 1px solid rgba(200, 145, 58, 0.2);
}

.mob-nav-sub a:hover {
  color: var(--gold);
  border-color: rgba(200, 145, 58, 0.32);
}

.logo-wrap {
  text-decoration: none;
  color: var(--parch);
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--s1);
}

.hero-glow {
  position: absolute;
  top: -30%;
  left: 25%;
  width: 65%;
  height: 75%;
  background: radial-gradient(ellipse, rgba(200, 145, 58, 0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-glow2 {
  position: absolute;
  bottom: 0;
  right: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(200, 145, 58, 0.04) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-body {
  flex: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  position: relative;
  z-index: 2;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 3rem 3rem;
  border-right: 1px solid var(--s1);
}

.h-eye {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-family: 'Caveat', cursive;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 2.2rem;
  letter-spacing: .05em;
}

.h-eye::before {
  content: '✦';
  font-size: .75rem;
  opacity: .7;
}

.h-eye::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-h1 {
  line-height: .88;
  margin-bottom: 2.5rem;
}

.h1-row {
  display: block;
  overflow: hidden;
}

.h1-inner {
  display: block;
  transform: translateY(0);
}

.h1-inner.up {
  transform: translateY(0);
  transition: transform 1.1s cubic-bezier(.16, 1, .3, 1);
}

.h1-serif {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 8.5vw, 9rem);
  letter-spacing: -.02em;
  font-weight: 800;
  color: var(--parch);
  display: block;
}

.h1-hand {
  font-family: 'Caveat', cursive;
  font-size: clamp(4.5rem, 9.5vw, 10rem);
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.h1-ghost {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 8.5vw, 9rem);
  letter-spacing: -.02em;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(240, 228, 200, 0.65);
  display: block;
  font-style: italic;
}

.hero-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.2rem;
}

.rule-line {
  flex: 1;
  max-width: 140px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.rule-orn {
  font-family: 'Caveat', cursive;
  color: var(--gold);
  font-size: 1.1rem;
  opacity: .8;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-style: italic;
  color: var(--dim);
  line-height: 1.75;
  max-width: 440px;
}

.hero-sub strong {
  color: var(--parch);
  font-style: normal;
  font-weight: 600;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.8rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--s1);
  flex-wrap: wrap;
}

.h-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.h-stat-lbl {
  font-family: 'Caveat', cursive;
  font-size: .8rem;
  color: var(--dim2);
  letter-spacing: .06em;
  display: block;
  margin-top: .2rem;
}

.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 3rem 3rem;
  background: var(--ink2);
  position: relative;
}

.hero-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.form-ht {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.1;
  margin-bottom: .5rem;
}

.form-ht em {
  font-family: 'Caveat', cursive;
  color: var(--gold);
  font-style: normal;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
}

.form-hsub {
  font-family: 'Caveat', cursive;
  font-size: .88rem;
  color: var(--dim2);
  letter-spacing: .05em;
  margin-bottom: 2rem;
}

.hfg {
  position: relative;
  border: 1px solid var(--s1);
  margin-bottom: -1px;
  transition: border-color .25s;
}

.hfg:focus-within {
  border-color: var(--gold);
  z-index: 2;
  background: rgba(200, 145, 58, 0.03);
}

.hfg label {
  position: absolute;
  top: .75rem;
  left: 1.1rem;
  font-family: 'Caveat', cursive;
  font-size: .72rem;
  color: rgba(200, 145, 58, 0.4);
  letter-spacing: .08em;
  pointer-events: none;
}

.hfg input, .hfg select {
  width: 100%;
  padding: 1.9rem 1.1rem .65rem;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--parch);
  -webkit-appearance: none;
}

.hfg select {
  cursor: pointer;
}

.hfg input::placeholder {
  color: transparent;
}

option {
  background: var(--ink);
  color: var(--parch);
}

.hf-btn {
  margin-top: 1.2rem;
  width: 100%;
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--ink);
  border: none;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  letter-spacing: .1em;
  cursor: pointer;
  font-weight: 700;
  transition: background .3s;
}

.hf-btn:hover {
  background: var(--gold2);
}

.hf-note {
  font-family: 'Caveat', cursive;
  font-size: .75rem;
  color: var(--dim2);
  text-align: center;
  margin-top: .9rem;
  letter-spacing: .05em;
}

.hf-trust {
  display: flex;
  gap: 1rem;
  margin-top: 1.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--s1);
}

.hf-trust-item {
  flex: 1;
}

.hf-trust-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.hf-trust-lbl {
  font-family: 'Caveat', cursive;
  font-size: .65rem;
  color: var(--dim2);
  letter-spacing: .04em;
  display: block;
}

.hf-ok {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  padding: 3rem 1rem;
  text-align: center;
}

.hf-ok.show {
  display: flex;
}

.hf-ok-ring {
  width: 56px;
  height: 56px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.5rem;
}

.hf-ok h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-style: italic;
  margin: 0;
}

.hf-ok p {
  font-family: 'Caveat', cursive;
  font-size: .88rem;
  color: var(--dim2);
  line-height: 1.6;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   TICKER
   ═══════════════════════════════════════════════════════════════ */
#ticker {
  overflow: hidden;
  padding: .75rem 0;
  background: var(--gold);
}

.tk-wrap {
  display: flex;
  width: max-content;
  animation: tk 26s linear infinite;
}

.tk-item {
  display: inline-flex;
  align-items: center;
  gap: 1.8rem;
  font-family: 'Playfair Display', serif;
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0 1.8rem;
  white-space: nowrap;
  font-style: italic;
}

.tk-dot {
  width: 5px;
  height: 5px;
  background: rgba(11, 8, 4, 0.35);
  border-radius: 50%;
}

@keyframes tk {
  0% { transform: translateX(0) }
  100% { transform: translateX(-50%) }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION COMMONS
   ═══════════════════════════════════════════════════════════════ */
.sec-eye {
  font-family: 'Caveat', cursive;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: .05em;
  margin-bottom: .8rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.sec-eye::before {
  content: '✦';
  font-size: .7rem;
  opacity: .7;
}

.sec-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  line-height: .9;
  letter-spacing: -.02em;
}

.sec-h2 em {
  font-family: 'Caveat', cursive;
  color: var(--gold);
  font-style: normal;
  font-size: clamp(3.3rem, 6vw, 6rem);
}

/* ═══════════════════════════════════════════════════════════════
   BADGES / TOOLS
   ═══════════════════════════════════════════════════════════════ */
#badges {
  padding: 3.5rem 3rem;
  border-bottom: 1px solid var(--s1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.badges-label {
  font-family: 'Caveat', cursive;
  font-size: .82rem;
  color: var(--dim2);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: .45;
  transition: opacity .3s;
}

.badge-item:hover {
  opacity: .85;
}

.badge-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--s2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.3;
}

.badge-name {
  font-family: 'Caveat', cursive;
  font-size: .72rem;
  color: var(--gold);
  letter-spacing: .08em;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES BENTO
   ═══════════════════════════════════════════════════════════════ */
#services {
  padding: 6rem 3rem;
  border-bottom: 1px solid var(--s1);
}

.svc-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.svc-desc {
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  color: var(--dim);
  line-height: 1.75;
  max-width: 320px;
  align-self: flex-end;
}

.orn-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.orn-l {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--s2), transparent);
}

.orn-t {
  font-family: 'Caveat', cursive;
  font-size: .82rem;
  color: rgba(200, 145, 58, 0.35);
  letter-spacing: .1em;
  white-space: nowrap;
}

.bento {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 1px;
  background: var(--s1);
  border: 1px solid var(--s1);
}

.bc {
  background: var(--ink);
  padding: 2.5rem 2.2rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background .4s;
  min-height: 0;
}

.bc:hover {
  background: #120d07;
}

.bc::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .55s cubic-bezier(.16, 1, .3, 1);
}

.bc:hover::after {
  transform: scaleX(1);
}

.bc-num {
  font-family: 'Caveat', cursive;
  font-size: .78rem;
  color: rgba(200, 145, 58, 0.28);
  letter-spacing: .12em;
  margin-bottom: 1.5rem;
  display: block;
}

.bc-ico {
  width: 36px;
  height: 36px;
  margin-bottom: 1.4rem;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.25;
  opacity: .65;
  display: block;
  transition: opacity .3s;
}

.bc:hover .bc-ico {
  opacity: 1;
}

.bc-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  line-height: 1.05;
  margin-bottom: .4rem;
  transition: color .3s;
}

.bc:hover .bc-title {
  color: var(--gold2);
}

.bc-tag {
  font-family: 'Caveat', cursive;
  font-size: .92rem;
  color: var(--gold);
  display: block;
  margin-bottom: .85rem;
  letter-spacing: .03em;
}

.bc-body {
  font-size: .92rem;
  font-style: italic;
  color: rgba(240, 228, 200, 0.42);
  line-height: 1.75;
}

.bc-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .28rem .8rem;
  border: 1px solid var(--s2);
  color: var(--gold);
  font-family: 'Caveat', cursive;
  font-size: .78rem;
  letter-spacing: .07em;
  margin-bottom: 1.4rem;
}

.bc-r1c1 { grid-column: 1 / 3; grid-row: 1; background: #0f0a05; }
.bc-r1c1 .bc-title { font-size: clamp(1.9rem, 3vw, 2.8rem); }
.bc-r1c2 { grid-column: 3; grid-row: 1; }
.bc-r2c1 { grid-column: 1; grid-row: 2; }
.bc-r2c2 { grid-column: 2; grid-row: 2; }
.bc-r2c3 { grid-column: 3; grid-row: 2; }
.bc-r3c1 { grid-column: 1; grid-row: 3; }
.bc-r3c2 { grid-column: 2; grid-row: 3; }
.bc-r3c3 { grid-column: 3; grid-row: 3; }
.bc-r4 { grid-column: 1 / 4; grid-row: 4; background: #0d0905; }

/* ═══════════════════════════════════════════════════════════════
   RESULTS
   ═══════════════════════════════════════════════════════════════ */
#results {
  padding: 6rem 3rem;
  border-bottom: 1px solid var(--s1);
  position: relative;
  overflow: hidden;
}

.results-bg {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(14rem, 25vw, 28rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(200, 145, 58, 0.04);
  pointer-events: none;
  user-select: none;
  font-style: italic;
  line-height: 1;
}

.results-hd {
  margin-bottom: 4rem;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--s1);
  border: 1px solid var(--s1);
}

.rc {
  background: var(--ink);
  padding: 2.5rem 2.2rem;
  position: relative;
  transition: background .3s;
  cursor: pointer;
}

.rc:hover {
  background: #120d07;
}

.rc-tag {
  font-family: 'Caveat', cursive;
  font-size: .78rem;
  color: var(--gold);
  letter-spacing: .08em;
  margin-bottom: 1.2rem;
  display: block;
}

.rc-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--gold2);
  line-height: 1;
  margin-bottom: .4rem;
}

.rc-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: .6rem;
}

.rc-body {
  font-size: .88rem;
  font-style: italic;
  color: rgba(240, 228, 200, 0.4);
  line-height: 1.7;
}

.rc-client {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--s1);
}

.rc-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.rc-name {
  font-family: 'Caveat', cursive;
  font-size: .82rem;
  color: var(--dim2);
}

/* ═══════════════════════════════════════════════════════════════
   MID MARQUEE
   ═══════════════════════════════════════════════════════════════ */
.mid-mq {
  padding: 3rem 0;
  overflow: hidden;
  border-top: 1px solid var(--s1);
  border-bottom: 1px solid var(--s1);
}

.mid-wrap {
  display: flex;
  width: max-content;
  animation: tk 45s linear infinite;
}

.mid-wd {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 4rem);
  font-style: italic;
  padding: 0 2.5rem;
  color: rgba(240, 228, 200, 0.75);
  white-space: nowrap;
}

.mid-wd.g {
  color: var(--gold);
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */
#testimonials {
  padding: 6rem 3rem;
  border-bottom: 1px solid var(--s1);
}

.test-hd {
  margin-bottom: 4rem;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--s1);
  border: 1px solid var(--s1);
}

.tc {
  background: var(--ink);
  padding: 2.5rem 2.2rem;
  position: relative;
  transition: background .3s;
}

.tc:hover {
  background: #120d07;
}

.tc-stars {
  display: flex;
  gap: .3rem;
  margin-bottom: 1.2rem;
}

.tc-star {
  color: var(--gold);
  font-size: 1rem;
}

.tc-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--parch);
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.2rem;
}

.tc-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -.2rem;
  font-size: 2rem;
  color: var(--gold);
  opacity: .5;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.tc-foot {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--s1);
}

.tc-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--s2);
  border: 1px solid var(--s2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: .9rem;
  color: var(--gold);
  flex-shrink: 0;
}

.tc-name {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  line-height: 1.1;
}

.tc-city {
  font-family: 'Caveat', cursive;
  font-size: .75rem;
  color: var(--dim2);
  letter-spacing: .05em;
}

.tc-feat {
  grid-column: span 2;
  background: #0f0a05;
}

/* ═══════════════════════════════════════════════════════════════
   WHY
   ═══════════════════════════════════════════════════════════════ */
#why {
  padding: 6rem 3rem;
  border-bottom: 1px solid var(--s1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.why-bg {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(20rem, 35vw, 42rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(200, 145, 58, 0.04);
  pointer-events: none;
  user-select: none;
  font-style: italic;
  line-height: 1;
}

.why-left {
  padding-right: 4rem;
  border-right: 1px solid var(--s1);
  position: relative;
  z-index: 1;
}

.why-right {
  padding-left: 4rem;
  position: relative;
  z-index: 1;
}

.why-q {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-style: italic;
  line-height: 1.3;
  color: var(--parch);
  margin-bottom: 2rem;
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
}

.why-q em {
  color: var(--gold);
  font-style: normal;
}

.why-body {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--dim);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.why-body strong {
  color: var(--parch);
  font-style: normal;
  font-weight: 700;
}

.why-sig {
  font-family: 'Caveat', cursive;
  font-size: 1.4rem;
  color: var(--gold);
  margin-top: 2.5rem;
  letter-spacing: .04em;
}

.why-list {
  list-style: none;
}

.wl-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--s1);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--dim);
  transition: color .2s, padding-left .2s;
}

.wl-item:first-child {
  border-top: 1px solid var(--s1);
}

.wl-item:hover {
  color: var(--parch);
  padding-left: .6rem;
}

.wl-n {
  font-family: 'Caveat', cursive;
  font-size: .82rem;
  color: var(--gold);
  min-width: 28px;
  padding-top: 3px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   TEAM
   ═══════════════════════════════════════════════════════════════ */
#team {
  padding: 6rem 3rem;
  border-bottom: 1px solid var(--s1);
}

.team-hd {
  margin-bottom: 4rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--s1);
  border: 1px solid var(--s1);
}

.tm {
  background: var(--ink);
  padding: 2.5rem 2rem;
  cursor: pointer;
  transition: background .3s;
}

.tm:hover {
  background: #120d07;
}

.tm-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid var(--s2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.4rem;
  background: rgba(200, 145, 58, 0.06);
}

.tm-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: .3rem;
}

.tm-role {
  font-family: 'Caveat', cursive;
  font-size: .82rem;
  color: var(--gold);
  letter-spacing: .06em;
  display: block;
  margin-bottom: .8rem;
}

.tm-bio {
  font-size: .88rem;
  font-style: italic;
  color: rgba(240, 228, 200, 0.4);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════════════════════════ */
#process {
  padding: 6rem 3rem;
  border-bottom: 1px solid var(--s1);
}

.proc-hd {
  margin-bottom: 4.5rem;
}

.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--s1);
}

.prc {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--s1);
  border-top: 2px solid transparent;
  position: relative;
  overflow: hidden;
  transition: background .3s, border-top-color .4s;
}

.prc:hover {
  background: rgba(200, 145, 58, 0.03);
  border-top-color: var(--gold);
}

.prc-step {
  font-family: 'Caveat', cursive;
  font-size: .8rem;
  color: var(--gold);
  letter-spacing: .1em;
  margin-bottom: 2rem;
  display: block;
}

.prc-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: .8rem;
  line-height: 1.05;
}

.prc-body {
  font-size: .92rem;
  font-style: italic;
  color: rgba(240, 228, 200, 0.4);
  line-height: 1.75;
}

.prc-num {
  position: absolute;
  bottom: .5rem;
  right: 1.2rem;
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-style: italic;
  color: rgba(200, 145, 58, 0.05);
  line-height: 1;
  pointer-events: none;
  transition: color .3s;
}

.prc:hover .prc-num {
  color: rgba(200, 145, 58, 0.1);
}

/* ═══════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════ */
#faq {
  padding: 6rem 3rem;
  border-bottom: 1px solid var(--s1);
}

.faq-hd {
  margin-bottom: 4rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--s1);
  border: 1px solid var(--s1);
}

.faq-item {
  background: var(--ink);
  padding: 2rem 2.2rem;
  cursor: pointer;
  transition: background .3s;
}

.faq-item:hover {
  background: #120d07;
}

.faq-q {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-bottom: .8rem;
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  line-height: 1.3;
}

.faq-q::before {
  content: 'Q.';
  font-family: 'Caveat', cursive;
  font-size: .88rem;
  color: var(--gold);
  flex-shrink: 0;
  padding-top: .2rem;
}

.faq-a {
  font-size: .92rem;
  font-style: italic;
  color: rgba(240, 228, 200, 0.42);
  line-height: 1.75;
  padding-left: 1.6rem;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════ */
#contact {
  padding: 6rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  border-bottom: 1px solid var(--s1);
}

.con-pre {
  font-family: 'Caveat', cursive;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: .06em;
  margin-bottom: 1.2rem;
}

.con-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5.5vw, 5rem);
  line-height: .9;
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}

.con-h2 em {
  font-family: 'Caveat', cursive;
  color: var(--gold);
  font-style: normal;
  font-size: clamp(3.2rem, 5.8vw, 5.5rem);
}

.con-sub {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--dim);
  line-height: 1.8;
  max-width: 400px;
  margin-bottom: 2.5rem;
}

.con-info {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.ci {
  display: flex;
  gap: 1rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--s1);
}

.ci:last-child {
  border-bottom: none;
}

.ci-lbl {
  font-family: 'Caveat', cursive;
  font-size: .75rem;
  color: rgba(200, 145, 58, 0.4);
  min-width: 60px;
  padding-top: 2px;
}

.ci-val {
  font-style: italic;
  font-size: .98rem;
  color: var(--dim);
}

.cf-box {
  display: flex;
  flex-direction: column;
}

.cf-g {
  position: relative;
  border: 1px solid var(--s1);
  margin-bottom: -1px;
  transition: border-color .25s;
}

.cf-g:focus-within {
  border-color: var(--gold);
  z-index: 2;
}

.cf-g label {
  position: absolute;
  top: .8rem;
  left: 1.1rem;
  font-family: 'Caveat', cursive;
  font-size: .72rem;
  color: rgba(200, 145, 58, 0.38);
  letter-spacing: .08em;
  pointer-events: none;
}

.cf-g input, .cf-g select {
  width: 100%;
  padding: 1.9rem 1.1rem .65rem;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--parch);
  -webkit-appearance: none;
}

.cf-g select {
  cursor: pointer;
}

.cf-g input::placeholder {
  color: transparent;
}

.cf-btn {
  margin-top: 1.2rem;
  padding: 1rem 2rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  letter-spacing: .1em;
  cursor: pointer;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: color .35s;
}

.cf-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

.cf-btn span {
  position: relative;
  z-index: 1;
  transition: color .35s;
}

.cf-btn:hover::before {
  transform: translateY(0);
}

.cf-btn:hover span {
  color: var(--ink);
}

.cf-note {
  font-family: 'Caveat', cursive;
  font-size: .75rem;
  color: var(--dim2);
  text-align: center;
  margin-top: .9rem;
}

.cf-ok {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 3rem;
  border: 1px solid var(--s1);
  text-align: center;
}

.cf-ok.show {
  display: flex;
}

.cf-ok-ring {
  width: 52px;
  height: 52px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
}

.cf-ok h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-style: italic;
  margin: 0;
}

.cf-ok p {
  font-family: 'Caveat', cursive;
  font-size: .88rem;
  color: var(--dim2);
  line-height: 1.6;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
footer {
  padding: 3rem;
  border-top: 1px solid var(--s1);
  background: var(--ink2);
}

.ft-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.ft-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  letter-spacing: .07em;
  margin-bottom: .5rem;
}

.ft-logo span {
  color: var(--gold);
}

.ft-tagline {
  font-family: 'Caveat', cursive;
  font-size: .82rem;
  color: var(--dim2);
  letter-spacing: .06em;
  line-height: 1.6;
  max-width: 220px;
}

.ft-col-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  color: var(--parch);
}

.ft-links {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.ft-links a {
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-style: italic;
  color: var(--dim2);
  text-decoration: none;
  transition: color .2s;
}

.ft-links a:hover {
  color: var(--gold);
}

.ft-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--s1);
  flex-wrap: wrap;
  gap: 1rem;
}

.ft-copy {
  font-family: 'Caveat', cursive;
  font-size: .75rem;
  color: rgba(240, 228, 200, 0.2);
  letter-spacing: .04em;
}

.ft-made {
  font-family: 'Caveat', cursive;
  font-size: .75rem;
  color: rgba(200, 145, 58, 0.3);
}

/* ═══════════════════════════════════════════════════════════════
   FLOATING BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.float-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 490;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: transform .3s, box-shadow .3s;
}

.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
}

.float-wa svg {
  width: 26px;
  height: 26px;
  fill: white;
}

.float-call {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  z-index: 490;
  width: 52px;
  height: 52px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .3s, background .3s;
}

.float-call:hover {
  transform: scale(1.1);
  background: var(--gold2);
}

.float-call svg {
  width: 22px;
  height: 22px;
  stroke: var(--ink);
  fill: none;
  stroke-width: 2;
}

/* ═══════════════════════════════════════════════════════════════
   EXIT POPUP
   ═══════════════════════════════════════════════════════════════ */
#exitPop {
  position: fixed;
  inset: 0;
  z-index: 8000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(8, 5, 2, 0.88);
  backdrop-filter: blur(8px);
}

#exitPop.show {
  display: flex;
}

.ep-box {
  background: var(--ink2);
  border: 1px solid var(--s2);
  padding: 3.5rem;
  max-width: 480px;
  width: 90%;
  position: relative;
  text-align: center;
}

.ep-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.ep-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-family: 'Caveat', cursive;
  font-size: .85rem;
  color: var(--dim2);
  background: none;
  border: none;
  cursor: pointer;
  transition: color .2s;
}

.ep-close:hover {
  color: var(--parch);
}

.ep-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.ep-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-style: italic;
  margin-bottom: .8rem;
}

.ep-sub {
  font-family: 'Caveat', cursive;
  font-size: .92rem;
  color: var(--dim2);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.ep-inp {
  width: 100%;
  padding: 1rem 1.2rem;
  background: transparent;
  border: 1px solid var(--s1);
  color: var(--parch);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-style: italic;
  outline: none;
  margin-bottom: 1rem;
  transition: border-color .25s;
}

.ep-inp:focus {
  border-color: var(--gold);
}

.ep-btn {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--ink);
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  letter-spacing: .1em;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: background .3s;
}

.ep-btn:hover {
  background: var(--gold2);
}

.ep-skip {
  font-family: 'Caveat', cursive;
  font-size: .78rem;
  color: rgba(240, 228, 200, 0.25);
  margin-top: .8rem;
  display: block;
  cursor: pointer;
  transition: color .2s;
}

.ep-skip:hover {
  color: var(--dim2);
}

/* ═══════════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
.rv {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s cubic-bezier(.16, 1, .3, 1), transform 1s cubic-bezier(.16, 1, .3, 1);
}

.rv.in {
  opacity: 1;
  transform: translateY(0);
}

.d1 { transition-delay: .1s }
.d2 { transition-delay: .2s }
.d3 { transition-delay: .3s }
.d4 { transition-delay: .4s }
.d5 { transition-delay: .5s }

/* ═══════════════════════════════════════════════════════════════
   CURSOR
   ═══════════════════════════════════════════════════════════════ */
#cur {
  width: 11px;
  height: 11px;
  background: #e6aa45;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 8000;
  transform: translate(-50%, -50%);
  left: -50px;
  top: -50px;
}

#cur-r {
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(200, 145, 58, 0.65);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 7999;
  transform: translate(-50%, -50%);
  left: -50px;
  top: -50px;
  transition: width .18s, height .18s;
}

#cur-r.h {
  width: 60px;
  height: 60px;
  border-color: var(--gold2);
}

@media (hover: none), (pointer: coarse) {
  #cur, #cur-r { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════════
   LOGO STRIP
   ═══════════════════════════════════════════════════════════════ */
.logo-strip {
  padding: 3rem 0;
  border-top: 1px solid var(--s1);
  border-bottom: 1px solid var(--s1);
  overflow: hidden;
  background: var(--ink2);
}

.logo-strip-label {
  text-align: center;
  font-family: 'Caveat', cursive;
  font-size: .82rem;
  color: rgba(200, 145, 58, 0.4);
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.logo-track {
  display: flex;
  gap: 4rem;
  align-items: center;
  animation: logoScroll 25s linear infinite;
  width: max-content;
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: .45;
  transition: opacity .3s;
  flex-shrink: 0;
}

.logo-item:hover {
  opacity: .85;
}

.logo-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.2;
}

.logo-name {
  font-family: 'Caveat', cursive;
  font-size: .75rem;
  color: rgba(240, 228, 200, 0.5);
  letter-spacing: .05em;
  white-space: nowrap;
}

@keyframes logoScroll {
  0% { transform: translateX(0) }
  100% { transform: translateX(-50%) }
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT POPUP
   ═══════════════════════════════════════════════════════════════ */
#contactPopup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(8, 5, 2, 0.93);
  backdrop-filter: blur(10px);
}

#contactPopup.show {
  display: flex !important;
}

#cpSuccess {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  text-align: center;
}

#cpSuccess.show {
  display: flex !important;
}

/* ═══════════════════════════════════════════════════════════════
   UTILITY & ACCESSIBILITY
   ═══════════════════════════════════════════════════════════════ */
.faq-a, .faq-q, .block-body, .bc-body, .card-body,
.step-body, .feat-body, .hero-sub, .svc-desc, .tc-quote,
.why-body, .wl-item {
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.faq-grid {
  overflow: hidden;
}

.faq-item {
  overflow: hidden;
}

.faq-a {
  color: rgba(240, 228, 200, 0.78) !important;
  font-style: normal !important;
  line-height: 1.8 !important;
  word-break: break-word !important;
}

.faq-q {
  word-break: break-word !important;
  white-space: normal !important;
}

[data-popup], .cta-btn, .lead-btn, .btn-gold, .btn-outline,
.hf-btn, .cf-btn, .ep-btn, .lead-btn {
  cursor: pointer !important;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE - TABLET (900px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-item { display: none !important; }
  .burger { display: flex !important; }

  .bento { grid-template-columns: 1fr 1fr !important; }
  .bc-r1c1, .bc-r4 { grid-column: 1 / 3 !important; }

  .results-grid, .test-grid, .faq-grid { grid-template-columns: 1fr 1fr !important; }
  .tc-feat { grid-column: 1 / 3 !important; }

  .proc-grid, .team-grid { grid-template-columns: 1fr 1fr !important; }

  .svc-main { grid-template-columns: 1fr !important; }
  .svc-sidebar { position: static !important; border-top: 1px solid var(--s1); }
  .svc-content { border-right: none !important; }

  .feat-grid { grid-template-columns: 1fr 1fr !important; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE - MOBILE (768px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  nav { padding: .9rem 1.2rem !important; }
  .logo-main { font-size: .95rem !important; }
  .logo-sub { font-size: .6rem !important; }

  .nav-item { display: none !important; }
  .burger { display: flex !important; }

  #hero { min-height: auto !important; }
  .hero-body { grid-template-columns: 1fr !important; }
  .hero-left { padding: 5.5rem 1.4rem 2.5rem !important; border-right: none !important; border-bottom: 1px solid var(--s1) !important; }
  .hero-right { padding: 2.5rem 1.4rem !important; }

  .h1-serif { font-size: clamp(2.8rem, 11vw, 4rem) !important; }
  .h1-hand { font-size: clamp(3.2rem, 13vw, 5rem) !important; }
  .h1-ghost { font-size: clamp(2.5rem, 10vw, 3.5rem) !important; }
  .hero-sub { font-size: .95rem !important; max-width: 100% !important; }
  .hero-stats { gap: 1rem !important; flex-wrap: wrap !important; }
  .h-stat-num { font-size: 1.4rem !important; }
  .h-stat-lbl { font-size: .65rem !important; }

  #services, #results, #testimonials, #why, #process, #faq, #contact { padding: 3.5rem 1.4rem !important; }
  .sec-wrap { padding: 3.5rem 1.4rem !important; }
  .sec-h2, .page-h1 { font-size: clamp(1.8rem, 7vw, 2.8rem) !important; }

  .bento { grid-template-columns: 1fr !important; }
  .bc-r1c1, .bc-r4, .bc-r1c2, .bc-r2c1, .bc-r2c2, .bc-r2c3, .bc-r3c1, .bc-r3c2, .bc-r3c3 { grid-column: 1 !important; }

  .results-grid, .test-grid, .faq-grid { grid-template-columns: 1fr !important; }
  .tc-feat { grid-column: 1 !important; }

  .proc-grid { grid-template-columns: 1fr !important; border-left: none !important; }
  .prc { border-right: none !important; border-bottom: 1px solid var(--s1) !important; padding: 1.8rem 1.4rem !important; }

  #why { grid-template-columns: 1fr !important; }
  .why-left { padding-right: 0 !important; border-right: none !important; padding-bottom: 2rem !important; border-bottom: 1px solid var(--s1) !important; }
  .why-right { padding-left: 0 !important; padding-top: 2rem !important; }

  #contact { grid-template-columns: 1fr !important; }

  .svc-hero { padding: 5.5rem 1.4rem 2.5rem !important; min-height: auto !important; }
  .svc-hero-bg { font-size: 7rem !important; opacity: .03 !important; }
  .svc-h1 { font-size: clamp(2rem, 8vw, 3.5rem) !important; }
  .svc-tagline { font-size: .9rem !important; }
  .svc-desc { font-size: .9rem !important; max-width: 100% !important; }
  .svc-main { grid-template-columns: 1fr !important; }
  .svc-content { padding: 2.5rem 1.4rem !important; border-right: none !important; border-bottom: 1px solid var(--s1) !important; }
  .svc-sidebar { padding: 2rem 1.4rem !important; position: static !important; }

  .block-h { font-size: clamp(1.5rem, 6vw, 2rem) !important; }
  .feat-grid { grid-template-columns: 1fr !important; }
  .stats-row { grid-template-columns: 1fr 1fr !important; }
  .stat-num { font-size: 1.8rem !important; }
  .step { padding: 1.4rem 1.2rem !important; }
  .cta-banner { padding: 3rem 1.4rem !important; }
  .cta-banner-h { font-size: clamp(1.6rem, 6vw, 2.5rem) !important; }
  .cta-btns { flex-direction: column !important; align-items: stretch !important; }
  .btn-gold, .btn-outline { text-align: center !important; justify-content: center !important; }

  footer { padding: 2.5rem 1.4rem !important; }
  .ft-top { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .ft-bottom { flex-direction: column !important; gap: .8rem !important; }

  .float-wa { width: 46px !important; height: 46px !important; bottom: 1.2rem !important; right: 1.2rem !important; }
  .float-call { width: 46px !important; height: 46px !important; bottom: 5rem !important; right: 1.2rem !important; }

  #contactPopup > div { padding: 1.8rem 1.2rem !important; width: 95% !important; max-height: 88vh !important; overflow-y: auto !important; }

  .page-hero { padding: 5.5rem 1.4rem 2.5rem !important; }
  .page-h1 { font-size: clamp(1.8rem, 7vw, 3rem) !important; }
  .mid-wd { font-size: clamp(1.6rem, 7vw, 3rem) !important; }

  .fc { display: none !important; }
  .hf-trust { flex-wrap: wrap !important; gap: .6rem !important; }

  section[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns:repeat(4,1fr)"] { grid-template-columns: 1fr 1fr !important; }
  div[style*="grid-template-columns:repeat(3,1fr)"] { grid-template-columns: 1fr !important; }

  #badges { padding: 2rem 1.4rem !important; }
  .badges-row { gap: 1rem !important; flex-wrap: wrap !important; justify-content: center !important; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE - SMALL MOBILE (480px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .h1-serif { font-size: clamp(2.4rem, 10vw, 3.2rem) !important; }
  .h1-hand { font-size: clamp(2.8rem, 12vw, 3.8rem) !important; }
  .stats-row { grid-template-columns: 1fr !important; }
  .svc-h1 { font-size: clamp(1.8rem, 9vw, 2.6rem) !important; }
  .block-h { font-size: clamp(1.3rem, 6vw, 1.7rem) !important; }
  .sec-h2 { font-size: clamp(1.5rem, 7vw, 2rem) !important; }
  div[style*="grid-template-columns:repeat(4,1fr)"] { grid-template-columns: 1fr 1fr !important; }
}

/* ═══════════════════════════════════════════════════════════════
   DESKTOP LAYOUT FIX
   ═══════════════════════════════════════════════════════════════ */
:root {
  --pad: clamp(1.5rem, 5vw, 5rem);
}

.hero-left, .hero-right { padding: 9rem var(--pad) 3rem !important; }
.sec-wrap { padding: 5rem var(--pad) !important; }
#services, #results, #testimonials, #why, #process, #faq { padding: 5rem var(--pad) !important; }
#contact { padding: 5rem var(--pad) !important; }
#badges { padding: 3rem var(--pad) !important; }
#ticker { padding: 0; }
.page-hero { padding: 10rem var(--pad) 4rem !important; }
.svc-hero { padding: 10rem var(--pad) 4rem !important; }
.svc-content { padding: 5rem var(--pad) !important; border-right: 1px solid var(--s1) !important; }
.svc-sidebar { padding: 3rem 2.5rem !important; }
.cta-banner { padding: 5rem var(--pad) !important; }
footer { padding: 4rem var(--pad) 2rem !important; }
nav { padding: 1.2rem var(--pad) !important; }

section[style*="padding"] { padding-left: var(--pad) !important; padding-right: var(--pad) !important; }
div[style*="padding:6rem 3rem"], div[style*="padding:5rem 3rem"] { padding-left: var(--pad) !important; padding-right: var(--pad) !important; }

.policy-wrap { max-width: 860px; margin: 0 auto; padding: 9rem var(--pad) 6rem !important; }

@media (max-width: 768px) {
  :root { --pad: 1.4rem; }
  .hero-left, .hero-right { padding: 5.5rem 1.4rem 2.5rem !important; }
  .svc-hero { padding: 5.5rem 1.4rem 2.5rem !important; }
  .svc-content { padding: 2.5rem 1.4rem !important; }
  .page-hero { padding: 5.5rem 1.4rem 2.5rem !important; }
  nav { padding: .9rem 1.2rem !important; }
  footer { padding: 2.5rem 1.4rem !important; }
  .cta-banner { padding: 3rem 1.4rem !important; }
  #services, #results, #testimonials, #why, #process, #faq, #contact { padding: 3.5rem 1.4rem !important; }
  section[style*="padding"] { padding-left: 1.4rem !important; padding-right: 1.4rem !important; }
  div[style*="padding:6rem 3rem"], div[style*="padding:5rem 3rem"] { padding-left: 1.4rem !important; padding-right: 1.4rem !important; }
}

/* ═══════════════════════════════════════════════════════════════
   TEXT READABILITY FIXES
   ═══════════════════════════════════════════════════════════════ */
.bc-body, .card-body, .step-body, .feat-body, .block-body, .prc-body,
.why-body, .wl-item, .hero-sub, .page-sub, .svc-desc, .con-sub,
.feat-body, .step-body, .block-body, .prc-body, .rc-body, .faq-a,
.trust-item, .tc-quote p {
  font-style: normal !important;
}

.hero-sub, .page-sub, .con-sub, .svc-desc {
  color: rgba(240, 228, 200, 0.85) !important;
}

.bc-body, .card-body, .step-body, .feat-body, .block-body, .prc-body,
.why-body, .wl-item, .trust-item, .rc-body, .faq-a, .faq-body {
  color: rgba(240, 228, 200, 0.82) !important;
}

.tc-quote, .tc-quote p {
  color: rgba(240, 228, 200, 0.88) !important;
}

.h-stat-lbl, .strip-lbl {
  color: rgba(240, 228, 200, 0.72) !important;
}

.ft-tagline {
  color: rgba(240, 228, 200, 0.65) !important;
}

.ft-links a {
  color: rgba(240, 228, 200, 0.78) !important;
  font-size: .9rem !important;
}

.ft-links a:hover {
  color: var(--gold2) !important;
}

.ft-col-title {
  color: var(--parch) !important;
  font-weight: 700 !important;
}

.nav-drop-item {
  color: rgba(240, 228, 200, 0.82) !important;
  font-style: normal !important;
}

.mob-nav-link {
  color: var(--parch) !important;
}

.svc-eye, .block-eye, .page-eye, .sec-eye, .h-eye {
  color: var(--gold2) !important;
}

.svc-tagline, .card-tag, .bc-tag {
  color: var(--gold2) !important;
  font-weight: 700 !important;
}

.stat-lbl {
  color: rgba(240, 228, 200, 0.72) !important;
}

.card-title, .bc-title, .feat-title, .step-title {
  color: #ede1c5 !important;
  font-weight: 600 !important;
}

.trust-item {
  color: rgba(240, 228, 200, 0.78) !important;
}

.trust-title {
  color: rgba(200, 145, 58, 0.6) !important;
}

.lead-note, .hf-note {
  color: rgba(240, 228, 200, 0.45) !important;
}

.hf-trust-lbl {
  color: rgba(240, 228, 200, 0.6) !important;
}

.hf-trust-val {
  color: var(--gold2) !important;
}

.fg label, .hfg label, .cf-g label {
  color: rgba(200, 145, 58, 0.7) !important;
}

.ci-val {
  font-style: normal !important;
  color: rgba(240, 228, 200, 0.82) !important;
}
