/* Mikaro Studio — shared styles (BRIEF.md) */
:root {
  --ink: #080810;
  --deep: #0d0d18;
  --surface: #12121e;
  --gold: #C9A84C;
  --gold-light: #e8c96a;
  --gold-pale: rgba(201, 168, 76, 0.08);
  --gold-border: rgba(201, 168, 76, 0.25);
  --cream: #F9F7F2;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-muted: #64748B;
  --border-d: rgba(255, 255, 255, 0.07);
  --border-g: rgba(201, 168, 76, 0.25);
  --footer-bg: #040408;
  --t: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --r: 8px;
  --nav-h: 70px;
  --urgency-h: 40px;
  --navy-deep: var(--ink);
  --nav-scrolled-bg: rgba(13, 24, 41, 1);
  --on-gold-text: var(--ink);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-ui: "Outfit", system-ui, sans-serif;
}

body.light-mode {
  --ink: #f0ede6;
  --deep: #e8e4dc;
  --surface: #ffffff;
  --gold: #8a6520;
  --gold-light: #a07828;
  --gold-pale: rgba(138, 101, 32, 0.07);
  --gold-border: rgba(138, 101, 32, 0.25);
  --cream: #ffffff;
  --white: #f7f5f0;
  --text-dark: #0f0f1a;
  --text-muted: #374151;
  --border-d: rgba(0, 0, 0, 0.09);
  --border-g: rgba(138, 101, 32, 0.25);
  --footer-bg: #0f0f1a;
  --navy-deep: var(--ink);
  --nav-scrolled-bg: rgba(232, 228, 220, 0.98);
  --on-gold-text: var(--ink);
}

/* Service cards */
body.light-mode .pkg-card {
  border-color: rgba(0,0,0,.12);
}
body.light-mode .pkg-card.feat {
  border-color: rgba(138,101,32,.35);
}

/* Contact form fields */
body.light-mode .ff,
body.light-mode input,
body.light-mode textarea,
body.light-mode select {
  border-color: rgba(0,0,0,.15);
  color: var(--text-dark);
  background: rgba(0,0,0,.04);
}
body.light-mode .ff::placeholder {
  color: rgba(0,0,0,.35);
}

/* Contact section method borders */
body.light-mode .contact-method,
body.light-mode .cm {
  border-color: rgba(0,0,0,.1);
}

body.light-mode .hero-orb-2,
body.light-mode [class*="orb-2"] {
  display: none;
}

body.light-mode .nav .logo-svg polygon:first-child,
body.light-mode nav .logo-wrap svg polygon:first-child {
  fill: var(--text-dark);
}
body.light-mode .nav .logo-svg rect,
body.light-mode nav .logo-wrap svg rect {
  fill: var(--text-dark);
  opacity: 0.8;
}
body.light-mode .nav .logo-svg text,
body.light-mode nav .logo-wrap svg text:first-of-type {
  fill: var(--text-dark);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 8px);
}

body {
  font-family: var(--font-ui);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.15;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Sections rhythm */
#hero {
  background: var(--ink);
  color: var(--white);
}

#services,
#estimator {
  background: var(--deep);
}

#process {
  background: var(--white);
  color: var(--text-dark);
}

#process .s-title,
#process h2 {
  color: var(--text-dark);
}

#about,
#testimonials {
  background: var(--cream);
  color: var(--text-dark);
}

#portfolio {
  background: var(--ink);
}

#proof {
  background: var(--deep);
}

#journal-cta {
  background: var(--ink);
}

#faq {
  background: var(--white);
  color: var(--text-dark);
}

#contact {
  background: var(--deep);
}

section {
  padding: 7rem 8%;
  position: relative;
}

.section-light .s-sub,
#process .s-sub,
#about .s-sub,
#faq .s-sub {
  color: var(--text-muted);
}

.s-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.s-tag::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.s-title {
  font-size: clamp(2.1rem, 3.5vw, 3rem);
  margin-bottom: 0.9rem;
  font-weight: 300;
}

.s-sub {
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 540px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.on {
  opacity: 1;
  transform: translateY(0);
}

/* ── Urgency bar ── */
.urgency-bar {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--nav-h);
  z-index: 899;
  height: var(--urgency-h);
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3rem 0 1rem;
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(8, 8, 16, 0.08);
}

.urgency-bar.show {
  transform: translateY(0);
}

.urgency-bar.dismissed {
  display: none;
}

.urgency-inner {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  text-align: center;
}

.urgency-inner a {
  color: var(--ink);
  text-decoration: underline;
  font-weight: 700;
}

.urgency-dismiss {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--ink);
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}

body.has-urgency {
  --scroll-pad-extra: var(--urgency-h);
}

body.has-urgency {
  scroll-padding-top: calc(var(--nav-h) + var(--urgency-h) + 8px);
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0 5%;
  height: var(--nav-h);
  background: rgba(8, 8, 16, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: background var(--t), box-shadow var(--t);
}

nav.scrolled {
  background: var(--nav-scrolled-bg);
  box-shadow: 0 2px 28px rgba(0, 0, 0, 0.4);
}

body.light-mode nav:not(.scrolled) {
  background: rgba(248, 245, 238, 0.96);
  border-bottom-color: var(--border-g);
}

body.light-mode nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-logo svg {
  height: 38px;
  width: auto;
  display: block;
}

.nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
}

.nav-links > li > a:not(.nav-cta) {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color var(--t);
  position: relative;
  padding-bottom: 3px;
}

body.light-mode .nav-links > li > a:not(.nav-cta) {
  color: rgba(15, 15, 26, 0.55);
}

.nav-links > li > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--t);
}

.nav-links > li > a:not(.nav-cta):hover,
.nav-links > li > a:not(.nav-cta).active {
  color: var(--gold);
}

.nav-links > li > a:not(.nav-cta):hover::after,
.nav-links > li > a:not(.nav-cta).active::after {
  width: 100%;
}

.nav-dd {
  position: relative;
}

.nav-dd-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  padding: 0.75rem 0;
  background: var(--surface);
  border: 1px solid var(--border-g);
  border-radius: var(--r);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t), transform var(--t), visibility var(--t);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.nav-dd:hover .nav-dd-panel,
.nav-dd:focus-within .nav-dd-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dd-panel a {
  display: block;
  padding: 0.45rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-transform: none;
  letter-spacing: 0.02em;
}

.nav-dd-panel a:hover {
  background: var(--gold-pale);
  color: var(--gold);
}

.nav-dd-panel a::after {
  display: none;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--on-gold-text) !important;
  padding: 0.48rem 1.15rem !important;
  border-radius: var(--r) !important;
  font-weight: 700 !important;
  font-size: 0.78rem !important;
  white-space: nowrap;
  transition: transform 0.22s, background var(--t);
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: var(--r);
  border: 1px solid var(--border-g);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--t), background var(--t);
}

.theme-toggle:hover {
  border-color: var(--gold);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.light-mode .theme-toggle .icon-sun {
  display: none;
}

body.light-mode .theme-toggle .icon-moon {
  display: block !important;
  fill: var(--gold);
  stroke: none;
}

body:not(.light-mode) .theme-toggle .icon-moon {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  border-radius: var(--r);
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: rgba(201, 168, 76, 0.06);
  gap: 0;
}

.hamburger span {
  width: 18px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  display: block;
  transition: all 0.3s ease;
  margin: 3.5px 0;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile overlay */
.mob-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--ink);
  max-width: 100vw;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease, visibility 0.35s;
}

.mob-overlay.open {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}

.mob-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.mob-inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1rem 6% 2rem;
  border-left: 3px solid var(--gold);
  max-width: 100%;
}

.mob-overlay > *,
.mob-overlay .mob-inner *,
.mob-overlay .mob-inner *::before,
.mob-overlay .mob-inner *::after {
  max-width: 100%;
}

.mob-overlay .mob-inner * {
  margin-left: 0;
  margin-right: 0;
}

.mob-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
}

.mob-close-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--r);
  border: 1px solid rgba(201, 168, 76, 0.25);
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mob-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 0.5rem;
}

.mob-nav-item {
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

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

.mob-nav-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  color: rgba(255, 255, 255, 0.78);
}

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

.mni-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mni-num {
  font-size: 0.58rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.35);
  letter-spacing: 0.14em;
  width: 1.4rem;
}

.mni-label {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 5.5vw, 1.5rem);
  font-weight: 400;
}

.mni-arrow {
  color: rgba(201, 168, 76, 0.35);
}

.mob-footer {
  flex-shrink: 0;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.mob-contact-btns {
  display: flex;
  gap: 0.5rem;
}

.mob-wa,
.mob-ln {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.58rem 0.75rem;
  border-radius: var(--r);
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.28);
}

/* ── Hero ── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.hero-rule {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  z-index: 3;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
  background-size: 52px 52px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
  top: -180px;
  right: -80px;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13, 13, 24, 0.9) 0%, transparent 70%);
  bottom: -100px;
  left: -80px;
}

.hero-text {
  padding: 5rem 4% 5rem 8%;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  padding: 0.36rem 1rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  animation: rise 0.6s ease both;
}

.dot-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.65);
  }
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.02em;
  animation: rise 0.6s 0.1s ease both;
}

.hero-text h1 .accent {
  color: var(--gold);
  font-style: italic;
  display: block;
  margin-top: 0.15em;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 300;
  line-height: 1.78;
  max-width: 480px;
  margin: 1.4rem 0 2.2rem;
  animation: rise 0.6s 0.2s ease both;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.6rem;
  animation: rise 0.6s 0.3s ease both;
}

.chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  padding: 0.28rem 0.85rem;
  border-radius: 4px;
  font-size: 0.74rem;
  font-weight: 500;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: rise 0.6s 0.4s ease both;
}

.btn-g {
  background: var(--gold);
  color: var(--on-gold-text);
  padding: 0.9rem 2.1rem;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid var(--gold);
  transition: all 0.22s;
  cursor: pointer;
  font-family: var(--font-ui);
}

.btn-g:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.3);
}

.btn-o {
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2.1rem;
  border-radius: var(--r);
  font-weight: 500;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.22s;
}

.btn-o:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-kpis {
  display: flex;
  gap: 2.8rem;
  margin-top: 3.2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  animation: rise 0.6s 0.5s ease both;
}

.kpi-n {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.kpi-l {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-photo-col {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 3rem 5% 0 2%;
  animation: rise 0.8s 0.15s ease both;
}

.hero-photo-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero-photo-frame::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  bottom: 30px;
  left: 20px;
  border: 1.5px solid rgba(201, 168, 76, 0.22);
  border-radius: var(--r);
  z-index: 0;
  pointer-events: none;
}

.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8, 8, 16, 0.92) 100%);
  border-radius: var(--r);
  z-index: 1;
  pointer-events: none;
}

.hero-photo-frame img {
  width: 100%;
  border-radius: var(--r);
  position: relative;
  z-index: 0;
  filter: contrast(1.04);
}

.hero-badge {
  position: absolute;
  z-index: 3;
  border-radius: var(--r);
  padding: 0.65rem 1.1rem;
  font-weight: 700;
  font-size: 0.8rem;
  backdrop-filter: blur(8px);
}

.hero-badge.b1 {
  bottom: 20px;
  left: -24px;
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.hero-badge.b1 span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1;
}

.hero-badge.b2 {
  top: 24px;
  right: -24px;
  background: rgba(18, 18, 30, 0.95);
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--white);
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.hero-badge.b2 strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Services */
#services .s-title {
  color: var(--white);
}

#services .s-sub {
  color: rgba(255, 255, 255, 0.5);
}

#services::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201, 168, 76, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.services-urgency {
  font-size: 0.8rem;
  color: var(--gold);
  margin-top: 0.6rem;
  letter-spacing: 0.04em;
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.pkg-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 2.2rem;
  position: relative;
  overflow: visible;
  transition: all var(--t);
  display: flex;
  flex-direction: column;
}

.pkg-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--t);
}

.pkg-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 30px 64px rgba(0, 0, 0, 0.4);
}

.pkg-card:hover::before {
  opacity: 1;
}

.pkg-card.featured {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.4);
}

.pkg-card.featured::before {
  opacity: 1;
}

.pkg-star {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  text-transform: uppercase;
}

.pkg-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--gold-pale);
  border: 1px solid var(--border-g);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
}

.pkg-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pkg-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.pkg-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.72;
  margin-bottom: 1.6rem;
  flex: 1;
}

.pkg-features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.8rem;
}

.pkg-feat {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

.pkg-feat-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.pkg-feat-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pkg-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--ink);
  padding: 0.8rem 1.5rem;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.22s;
  border: none;
  cursor: pointer;
  width: 100%;
  font-family: var(--font-ui);
  text-align: center;
}

.pkg-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.pkg-cta-o {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid rgba(201, 168, 76, 0.4);
}

.pkg-cta-o:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
}

/* Estimator */
.estimator-wrap {
  max-width: 660px;
  margin: 0 auto;
  padding: 3.75rem 24px 5rem;
  text-align: center;
}

.estimator-wrap h2 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.estimator-sub {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 2rem;
}

.est-step-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin: 1.5rem 0 0.75rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.pill-btn {
  border: 1px solid var(--border-g);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.75);
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  cursor: pointer;
  transition: all var(--t);
}

.pill-btn:hover,
.pill-btn.active {
  background: var(--gold-pale);
  border-color: var(--gold);
  color: var(--gold);
}

.est-price {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--gold);
  margin: 1.5rem 0 0.5rem;
}

.est-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 1.25rem;
}

.est-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  padding: 0.85rem 1.75rem;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  border-radius: var(--r);
  font-size: 0.88rem;
  transition: transform 0.2s;
}

.est-cta:hover {
  transform: translateY(-2px);
  background: var(--gold-light);
}

/* Process */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 12%;
  right: 12%;
  height: 1px;
  border-top: 1px dashed rgba(201, 168, 76, 0.3);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-icon-wrap {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6;
}

.step-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.step h3 {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.process-cta-row {
  text-align: center;
  margin-top: 3rem;
}

.process-cta {
  display: inline-flex;
  padding: 0.85rem 1.75rem;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  border-radius: var(--r);
}

.accent-italic {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

/* About */
.about-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 6rem;
  align-items: center;
  margin-top: 4.5rem;
}

.about-img-col {
  position: relative;
}

.about-img-box {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
  background: var(--surface);
}

.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-img-ph {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  background: var(--deep);
}

.about-img-box.ph-show img {
  display: none;
}

.about-img-box.ph-show .about-img-ph {
  display: flex;
}

.about-img-deco {
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 1.5px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--r);
  z-index: -1;
}

.about-text h3 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 1.1rem;
  font-weight: 400;
}

.about-text p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.about-pull {
  background: rgba(201, 168, 76, 0.06);
  border-left: 3px solid var(--gold);
  padding: 1.1rem 1.4rem;
  border-radius: 0 var(--r) var(--r) 0;
  margin: 1.6rem 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--text-dark);
}

.about-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.about-pt {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: 500;
}

.about-pt::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.loc-badge {
  display: inline-flex;
  margin-top: 1.25rem;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  border: 1px solid var(--border-g);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.about-cta {
  display: inline-flex;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  border-radius: var(--r);
}

/* Portfolio */
#portfolio .s-title {
  color: var(--white);
}

#portfolio .s-sub {
  color: rgba(255, 255, 255, 0.48);
}

.design-nav {
  display: flex;
  gap: 2rem;
  margin: 2.5rem 0 2rem;
  border-bottom: 1px solid var(--border-d);
  padding-bottom: 0.5rem;
}

.d-tab {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.45);
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--t);
}

.d-tab.on {
  color: var(--white);
  border-bottom-color: var(--gold);
}

.design-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.logo-card,
.web-card {
  background: var(--surface);
  border: 0.5px solid var(--border-d);
  border-radius: 10px;
  overflow: hidden;
  transition: all var(--t);
}

.logo-card:hover,
.web-card:hover {
  border-color: var(--border-g);
  transform: translateY(-6px);
}

.logo-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  min-height: 200px;
}

.web-preview {
  overflow: hidden;
  height: 220px;
  position: relative;
}

.web-preview svg {
  width: 100%;
  height: auto;
  display: block;
}

.logo-info,
.web-info {
  padding: 1.2rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border-d);
}

.logo-info h4,
.web-info h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.3rem;
  font-family: var(--font-ui);
  font-weight: 600;
}

.logo-info p,
.web-info p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin-bottom: 0.6rem;
}

.logo-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
  display: inline-block;
}

/* Proof */
#proof {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.proof-box {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid var(--border-d);
  border-radius: 12px;
  transition: all var(--t);
}

.proof-box:hover {
  border-color: rgba(201, 168, 76, 0.35);
  background: rgba(255, 255, 255, 0.03);
}

.proof-ico {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--gold-pale);
  border: 1px solid var(--border-g);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.proof-ico svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-n {
  font-family: var(--font-display);
  font-size: 2.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.proof-n span {
  color: var(--gold);
}

.proof-l {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.4rem;
  line-height: 1.5;
}

.tk-wrap {
  margin-top: 3.5rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.tk-left h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.tk-left p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
}

.tk-n {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  font-weight: 700;
}

.tk-l {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 0.2rem;
}

.btn-tk {
  background: var(--gold);
  color: var(--ink);
  padding: 0.8rem 1.8rem;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.22s;
  white-space: nowrap;
}

.btn-tk:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* Testimonials */
.t-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

.t-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
  position: relative;
}

.t-qmark {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(201, 168, 76, 0.15);
  line-height: 1;
}

.t-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.t-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.t-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.t-who {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.t-nm {
  font-size: 0.86rem;
  color: var(--text-dark);
  font-weight: 600;
}

.t-rl {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.t-verified {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #15803d;
  background: rgba(21, 128, 61, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.testimonials-cta {
  text-align: center;
  margin-top: 3rem;
}

.testimonials-cta a {
  display: inline-flex;
  padding: 0.85rem 2rem;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  border-radius: var(--r);
}

/* Journal CTA */
#journal-cta {
  text-align: center;
}

.journal-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 100px 24px;
}

#journal-cta .s-title {
  color: var(--white);
}

#journal-cta .s-sub {
  color: rgba(255, 255, 255, 0.5);
  margin-left: auto;
  margin-right: auto;
}

.journal-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0;
  text-align: left;
}

.journal-mini-card {
  background: var(--surface);
  border: 1px solid var(--border-d);
  border-radius: var(--r);
  padding: 1.25rem;
  transition: border-color var(--t);
}

.journal-mini-card:hover {
  border-color: var(--border-g);
}

.journal-mini-card h3 {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.journal-mini-card p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

.journal-readmore {
  display: inline-flex;
  margin-top: 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
}

.journal-cta-btn {
  display: inline-flex;
  padding: 0.85rem 2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  border-radius: var(--r);
  transition: background var(--t);
}

.journal-cta-btn:hover {
  background: var(--gold-pale);
}

/* FAQ */
.faq-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 3.5rem;
}

.faq-i {
  border: 1px solid rgba(26, 26, 46, 0.09);
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--t);
}

.faq-i:hover {
  border-color: rgba(201, 168, 76, 0.35);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.3rem;
  gap: 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  user-select: none;
}

.faq-chev {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

.faq-i.open .faq-chev {
  transform: rotate(90deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.3s;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.78;
  padding: 0 1.3rem;
}

.faq-i.open .faq-a {
  max-height: 320px;
  padding: 0 1.3rem 1.2rem;
}

.faq-foot {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.faq-foot a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
}

/* Contact */
#contact .s-title {
  color: var(--white);
}

#contact .s-sub {
  color: rgba(255, 255, 255, 0.48);
}

#contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201, 168, 76, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}

.c-left h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.c-left > p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.82;
  margin-bottom: 1.5rem;
}

.c-badge-fast {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  background: var(--gold-pale);
  border: 1px solid var(--border-g);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.c-methods {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.c-m {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1rem 1.2rem;
  border-radius: var(--r);
  transition: all var(--t);
}

.c-m:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.07);
}

.c-m-ico {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  flex-shrink: 0;
  background: var(--gold-pale);
  border: 1px solid var(--border-g);
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-m-ico svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.c-m strong {
  display: block;
  font-size: 0.85rem;
  color: var(--white);
}

.c-m span {
  font-size: 0.77rem;
  color: rgba(255, 255, 255, 0.4);
}

.c-promo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.c-promo-row a {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 0.65rem 1rem;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 0.82rem;
}

.c-wa-big {
  background: #25d366;
  color: #04210f !important;
}

/* Override: contact WhatsApp pill (not .float-btn-wa) — brand gold / ink text */
#contact .c-wa-big {
  background: var(--gold);
  color: #080810 !important;
}

.c-ln-big {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--white) !important;
}

.c-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.c-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
}

.fg label {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.fg input,
.fg select,
.fg textarea {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 0.8rem 1rem;
  border-radius: var(--r);
  font-family: var(--font-ui);
  font-size: 0.88rem;
  outline: none;
  transition: border-color var(--t);
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--gold);
}

.fg select option {
  background: var(--deep);
}

.fg textarea {
  resize: vertical;
  min-height: 110px;
}

.c-submit {
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 0 1.5rem;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  height: 48px;
  width: 100%;
  font-family: var(--font-ui);
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}

.fg-error {
  font-size: 0.7rem;
  color: #f87171;
  margin-top: 0.25rem;
  display: none;
  gap: 0.3rem;
  align-items: center;
}

.fg-error.show {
  display: flex;
}

.fg input.err,
.fg textarea.err {
  border-color: rgba(239, 68, 68, 0.6);
}

.fg input.ok,
.fg textarea.ok {
  border-color: rgba(34, 197, 94, 0.4);
}

.form-msg {
  padding: 0.9rem 1.2rem;
  border-radius: var(--r);
  font-size: 0.85rem;
  display: none;
  gap: 0.6rem;
  align-items: center;
}

.form-msg.show {
  display: flex;
}

.form-msg.err-msg {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #f87171;
}

/* Footer */
footer.site-footer {
  background: var(--footer-bg) !important;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: 3rem 8% 2rem;
}

footer.site-footer * {
  box-sizing: border-box;
}

.f-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.f-brand p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.22);
  margin-top: 0.75rem;
  max-width: 260px;
  line-height: 1.6;
}

.f-col h4 {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1rem;
}

.f-col a {
  display: block;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.55rem;
  transition: color var(--t);
}

.f-col a:hover {
  color: var(--gold);
}

.f-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.f-social a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.f-social svg {
  width: 18px;
  height: 18px;
  fill: rgba(255,255,255,.55);
  transition: fill .2s;
}

.f-social a:hover svg {
  fill: #C9A84C;
}

.f-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.28);
}

.f-bottom a {
  color: rgba(255, 255, 255, 0.45);
}

/* Floating buttons */
.float-btn {
  position: fixed;
  z-index: 997;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy-deep);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  transition: all 0.25s;
  right: 28px;
  animation: popIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.float-btn:hover {
  background: rgba(201, 168, 76, 0.15);
  transform: scale(1.08);
}

.float-btn svg {
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.float-btn-wa {
  bottom: 100px;
  animation-delay: 1.25s;
}

.float-btn-ln {
  bottom: 48px;
  animation-delay: 1.4s;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.4);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Chat */
.chat-bubble {
  position: fixed;
  bottom: 154px;
  right: 28px;
  z-index: 998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy-deep);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: all 0.25s;
  animation: popIn 0.6s 1.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.chat-bubble:hover {
  transform: scale(1.06);
}

.chat-bubble svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
}

.chat-bubble .chat-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.55rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--navy-deep);
}

/* Brief: floats at 100 and 48 — chat above at 154; hide duplicate .float-btn-chat if chat-bubble uses same slot */
.chat-panel {
  position: fixed;
  bottom: 230px;
  right: 28px;
  z-index: 999;
  width: 380px;
  max-height: min(560px, 70vh);
  background: var(--deep);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  display: none;
  flex-direction: column;
}

.chat-panel.open {
  display: flex;
}

.chat-head {
  background: linear-gradient(135deg, var(--ink), var(--surface));
  padding: 1rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.chat-head-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
}

.chat-head-info span {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.chat-close {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.45);
  font-size: 1.2rem;
}

.chat-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 260px;
  max-height: 340px;
}

.msg {
  max-width: 85%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.83rem;
  line-height: 1.65;
  word-break: break-word;
}

.msg.bot {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.88);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.msg.user {
  background: var(--gold);
  color: var(--ink);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}

.msg.typing {
  background: rgba(255, 255, 255, 0.07);
  align-self: flex-start;
}

.typing-dots {
  display: flex;
  gap: 4px;
}

.typing-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  animation: blink 1.4s ease infinite;
}

.typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes blink {
  0%,
  80%,
  100% {
    opacity: 0.3;
  }
  40% {
    opacity: 1;
  }
}

.chat-quick {
  padding: 0.6rem 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.qbtn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  font-size: 0.72rem;
  cursor: pointer;
  font-family: var(--font-ui);
}

.chat-foot {
  padding: 0.8rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  gap: 0.6rem;
}

.chat-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 0.65rem 0.9rem;
  border-radius: var(--r);
  font-family: var(--font-ui);
  outline: none;
}

.chat-send {
  width: 42px;
  height: 42px;
  background: var(--gold);
  border: none;
  border-radius: var(--r);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-send svg {
  width: 17px;
  stroke: var(--ink);
  fill: none;
  stroke-width: 2;
}

.chat-powered {
  padding: 0.4rem 1rem 0.65rem;
  text-align: center;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.22);
}

.msg-card {
  border: 1px solid var(--border-g);
  border-radius: var(--r);
  padding: 0.75rem;
  background: rgba(201, 168, 76, 0.06);
}

.msg-card .esc-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.65rem;
}

.msg-card .esc-actions a {
  flex: 1;
  text-align: center;
  padding: 0.45rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
}

/* Cookie */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: var(--deep);
  border-top: 1px solid var(--border-g);
  padding: 1rem 5%;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner.show {
  display: flex;
}

.cookie-banner p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  flex: 1;
  min-width: 200px;
}

.cookie-actions {
  display: flex;
  gap: 0.65rem;
}

.cookie-accept {
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 0.55rem 1.25rem;
  border-radius: var(--r);
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-ui);
}

.cookie-decline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.75);
  padding: 0.55rem 1.25rem;
  border-radius: var(--r);
  cursor: pointer;
  font-family: var(--font-ui);
}

/* Inner pages shared */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) 8% 4rem;
  background: var(--ink);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
  line-height: 1.75;
}

.page-section {
  padding: 4rem 8%;
}

.page-section.alt {
  background: var(--cream);
  color: var(--text-dark);
}

.page-section.dark {
  background: var(--deep);
  color: rgba(255, 255, 255, 0.85);
}

/* Journal & post */
.read-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gold);
  width: 0;
  z-index: 1101;
}

.journal-hero {
  padding: calc(var(--nav-h) + 3rem) 8% 3rem;
  background: var(--ink);
  text-align: center;
}

.journal-hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
}

.journal-hero p {
  color: rgba(255, 255, 255, 0.48);
  margin-top: 0.75rem;
}

.j-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
  margin: 2rem 0;
}

.filter-tab {
  border: 1px solid var(--border-g);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.65);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-ui);
}

.filter-tab.on {
  background: var(--gold-pale);
  border-color: var(--gold);
  color: var(--gold);
}

.journal-shell {
  padding: 0 8% 6rem;
  background: var(--deep);
  min-height: 50vh;
}

#journalGrid.skeleton {
  min-height: 320px;
  border-radius: var(--r);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04) 25%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.04) 75%);
  background-size: 400% 100%;
  animation: shimmer 1.2s ease infinite;
}

@keyframes shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

#journalGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  #journalGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.j-feature {
  grid-column: 1 / -1;
  background: var(--surface);
  border: 1px solid var(--border-g);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1rem;
}

.j-card {
  background: var(--surface);
  border: 1px solid var(--border-d);
  border-radius: var(--r);
  padding: 1.75rem;
  transition: border-color var(--t);
}

.j-card:hover {
  border-color: var(--border-g);
}

.j-card h2,
.j-card h3 {
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.j-card h2 a,
.j-card h3 a {
  color: var(--white);
}

.j-card .j-ex {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.j-cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.j-meta {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
}

.j-read {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
}

.post-shell {
  padding: 2rem 8% 6rem;
  background: var(--cream);
  color: var(--text-dark);
}

.post-layout {
  display: grid;
  grid-template-columns: minmax(200px, 240px) minmax(0, 720px);
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.post-layout aside {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

#postToc ul {
  list-style: none;
  font-size: 0.82rem;
}

#postToc li {
  margin-bottom: 0.45rem;
}

#postToc a {
  color: var(--text-muted);
}

#postToc a:hover {
  color: var(--gold);
}

.post-header h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0.5rem 0 1rem;
}

.post-sub {
  font-size: 1rem;
  color: var(--text-muted);
}

.post-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.post-body {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-dark);
}

.post-body h2 {
  font-family: var(--font-display);
  font-weight: 400;
  margin: 2.5rem 0 1rem;
  font-size: 1.65rem;
}

.post-body p {
  margin-bottom: 1rem;
}

.share-row {
  display: flex;
  gap: 0.65rem;
  margin-top: 2rem;
}

.share-row a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
}

#copyToast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: var(--white);
  padding: 0.65rem 1.25rem;
  border-radius: var(--r);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 1200;
}

#copyToast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.error-page {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 8%;
  text-align: center;
  background: var(--ink);
  color: var(--white);
}

.error-page h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
}

@media (max-width: 768px) {
  #journalGrid {
    grid-template-columns: 1fr;
  }

  .post-layout {
    grid-template-columns: 1fr;
  }

  .post-layout aside {
    display: none;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .pkg-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .design-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps::before {
    display: none;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  #hero {
    grid-template-columns: 1fr;
  }

  .hero-photo-col {
    padding: 2rem 5% 4rem;
  }

  .hero-photo-frame {
    max-width: 340px;
    margin: 0 auto;
  }

  .nav-dd-panel {
    left: 0;
    transform: translateX(0) translateY(8px);
  }

  .nav-dd:hover .nav-dd-panel {
    transform: translateX(0) translateY(0);
  }
}

@media (max-width: 768px) {
  section {
    padding: 4.5rem 5%;
  }

  .nav-links,
  .nav-center {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .pkg-grid,
  .design-grid,
  .faq-cols,
  .contact-split,
  .f-grid,
  .about-wrap {
    grid-template-columns: 1fr;
  }

  .proof-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .t-grid {
    grid-template-columns: 1fr;
  }

  .journal-mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .steps::before {
    display: none;
  }

  .hero-photo-col {
    display: none;
  }

  .hero-text {
    padding: 4rem 5% 4rem;
    text-align: center;
  }

  .hero-desc,
  .hero-chips,
  .hero-btns,
  .hero-kpis {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .tk-wrap {
    flex-direction: column;
    text-align: center;
  }

  .c-row {
    grid-template-columns: 1fr;
  }

  .chat-panel {
    width: calc(100vw - 32px);
    right: 16px;
    left: 16px;
    bottom: 200px;
  }

  .float-btn-chat,
  .float-btn-wa,
  .float-btn-ln {
    right: 16px;
  }

  .chat-bubble {
    right: 16px;
    bottom: 154px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2.6rem;
  }

  .hero-kpis {
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .proof-row {
    grid-template-columns: 1fr;
  }

  .design-grid,
  .journal-mini-grid {
    grid-template-columns: 1fr;
  }

  .hero-badge.b1,
  .hero-badge.b2 {
    display: none;
  }

  .pkg-grid {
    grid-template-columns: 1fr;
  }
}

/* ── LIGHT MODE OVERRIDES ── */
/* When body.light-mode flips --ink / --deep / --surface to light surfaces, prior white/light text rules would fail contrast. Restore readable colors. Omitted: footer.site-footer (always dark via --footer-bg) and .hero-badge.b2 (local dark panel). */

body.light-mode #hero {
  color: var(--text-dark);
}

body.light-mode .hero-text h1 {
  color: var(--text-dark);
}

body.light-mode .hero-desc {
  color: var(--text-muted);
}

body.light-mode .chip {
  color: var(--text-muted);
}

body.light-mode .btn-o {
  color: var(--text-dark);
}

body.light-mode .kpi-l {
  color: var(--text-muted);
}

body.light-mode .nav-dd-panel a {
  color: var(--text-muted);
}

body.light-mode .mob-nav-item a {
  color: var(--text-dark);
}

body.light-mode #services .s-title,
body.light-mode .pkg-name {
  color: var(--text-dark);
}

body.light-mode #services .s-sub,
body.light-mode .pkg-desc {
  color: var(--text-muted);
}

body.light-mode .pkg-feat {
  color: var(--text-muted);
}

body.light-mode #estimator .estimator-wrap h2 {
  color: var(--text-dark);
}

body.light-mode .estimator-sub,
body.light-mode .est-note {
  color: var(--text-muted);
}

body.light-mode .est-step-label {
  color: var(--text-muted);
}

body.light-mode .pill-btn {
  color: var(--text-dark);
}

body.light-mode #portfolio .s-title,
body.light-mode .d-tab.on {
  color: var(--text-dark);
}

body.light-mode #portfolio .s-sub,
body.light-mode .d-tab {
  color: var(--text-muted);
}

body.light-mode .logo-info h4,
body.light-mode .web-info h4 {
  color: var(--text-dark);
}

body.light-mode .logo-info p,
body.light-mode .web-info p {
  color: var(--text-muted);
}

body.light-mode .proof-n {
  color: var(--text-dark);
}

body.light-mode .proof-l,
body.light-mode .tk-left p,
body.light-mode .tk-l {
  color: var(--text-muted);
}

body.light-mode .tk-left h3 {
  color: var(--text-dark);
}

body.light-mode #journal-cta .s-title,
body.light-mode .journal-mini-card h3 {
  color: var(--text-dark);
}

body.light-mode #journal-cta .s-sub,
body.light-mode .journal-mini-card p {
  color: var(--text-muted);
}

body.light-mode #contact .s-title,
body.light-mode .c-left h3,
body.light-mode .c-m strong {
  color: var(--text-dark);
}

body.light-mode #contact .s-sub,
body.light-mode .c-left > p,
body.light-mode .c-m span {
  color: var(--text-muted);
}

body.light-mode .c-ln-big {
  color: var(--text-dark) !important;
}

body.light-mode .fg label {
  color: var(--text-muted);
}

body.light-mode .fg input,
body.light-mode .fg select,
body.light-mode .fg textarea {
  color: var(--text-dark);
}

body.light-mode .chat-head-info strong {
  color: var(--text-dark);
}

body.light-mode .chat-head-info span,
body.light-mode .chat-close,
body.light-mode .chat-powered {
  color: var(--text-muted);
}

body.light-mode .msg.bot {
  color: var(--text-dark);
}

body.light-mode .qbtn {
  color: var(--text-dark);
}

body.light-mode .chat-input {
  color: var(--text-dark);
}

body.light-mode .cookie-banner p {
  color: var(--text-muted);
}

body.light-mode .cookie-decline {
  color: var(--text-dark);
}

body.light-mode .page-hero h1,
body.light-mode .journal-hero h1 {
  color: var(--text-dark);
}

body.light-mode .page-hero p,
body.light-mode .journal-hero p {
  color: var(--text-muted);
}

body.light-mode .page-section.dark {
  color: var(--text-dark);
}

body.light-mode .page-section.dark h2 {
  color: var(--text-dark) !important;
}

body.light-mode .page-section.dark p {
  color: var(--text-muted) !important;
}

body.light-mode .page-hero h2 {
  color: var(--text-dark) !important;
}

body.light-mode .filter-tab {
  color: var(--text-muted);
}

body.light-mode .j-card h2 a,
body.light-mode .j-card h3 a {
  color: var(--text-dark);
}

body.light-mode .j-card .j-ex {
  color: var(--text-muted);
}

body.light-mode .j-meta {
  color: var(--text-muted);
}

body.light-mode #copyToast {
  color: var(--text-dark);
}

body.light-mode .error-page {
  color: var(--text-dark);
}

body.light-mode .error-page h1 {
  color: var(--text-dark);
}

body.light-mode .error-page p {
  color: var(--text-muted) !important;
}
/* ── LIGHT MODE FIXES ── */

/* Mobile nav */
body.light-mode .nav-overlay,
body.light-mode .mobile-nav,
body.light-mode .nav-mobile-panel {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Hero orb */
body.light-mode .hero-orb-2,
body.light-mode .orb2 {
  display: none !important;
}

/* Quiz text colors on light bg (moved to bottom appended fixes) */

/* Contact info borders in light mode */
body.light-mode .contact-method,
body.light-mode .cm {
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 8px;
  padding: 10px 14px;
}
body.light-mode .cval {
  color: var(--text-dark, #0f0f1a);
}
body.light-mode .clabel {
  color: var(--text-muted, #374151);
}
body.light-mode .cicon {
  background: rgba(138,101,32,.08);
  border-color: rgba(138,101,32,.25);
}

/* Social icons — footer always dark so use light rgba */
.f-social a svg,
footer .social-link svg,
.footer-social a svg {
  fill: rgba(255, 255, 255, 0.55);
  transition: fill .2s;
}
.f-social a:hover svg,
footer .social-link:hover svg,
.footer-social a:hover svg {
  fill: #C9A84C;
}

/* Logo in light mode nav */
body.light-mode nav svg polygon:first-child,
body.light-mode .nav-logo svg polygon:first-child,
body.light-mode .logo-wrap svg polygon:first-child {
  fill: #1a1a2e;
}
body.light-mode nav svg rect,
body.light-mode .nav-logo svg rect,
body.light-mode .logo-wrap svg rect {
  fill: #1a1a2e;
  opacity: 0.85;
}
body.light-mode nav svg text:first-of-type,
body.light-mode .nav-logo svg text:first-of-type,
body.light-mode .logo-wrap svg text:first-of-type {
  fill: #1a1a2e;
}

/* Mobile hamburger overflow fix */
.nav-overlay, .mobile-nav, [class*="mob-overlay"],
[class*="nav-overlay"], [class*="mobile-menu"] {
  max-width: 100vw !important;
  overflow-x: hidden !important;
  box-sizing: border-box !important;
}

/* Hide hero orb in light mode */
body.light-mode .orb2,
body.light-mode [class*="orb-2"],
body.light-mode [class*="hero-orb-2"] {
  display: none !important;
}

/* Logo fix in light mode */
body.light-mode .logo-poly-white { fill: #1a1a2e !important; }
body.light-mode .logo-rect-white { fill: #1a1a2e !important; }
body.light-mode .logo-text-main  { fill: #1a1a2e !important; }

/* Contact method borders light mode */
body.light-mode .contact-method,
body.light-mode .cm,
body.light-mode [class*="contact-method"] {
  border: 1px solid rgba(0,0,0,.12) !important;
  border-radius: 8px;
  padding: 10px 14px;
}
body.light-mode .cval,
body.light-mode [class*="contact-val"] {
  color: #0f0f1a !important;
}

/* Quiz text light mode */
body.light-mode #estimator .quiz .sh2,
body.light-mode #estimator .quiz .qt,
body.light-mode #estimator .quiz .ql,
body.light-mode #estimator .quiz .ot,
body.light-mode #estimator .quiz .rtitle,
body.light-mode #estimator .quiz .rn {
  color: var(--text-dark) !important;
}
body.light-mode .quiz .os,
body.light-mode .quiz .ssub,
body.light-mode .quiz .rdesc,
body.light-mode .quiz .pl,
body.light-mode .quiz .st,
body.light-mode .quiz .rd {
  color: var(--text-muted) !important;
}
body.light-mode .quiz .opt {
  background: rgba(0,0,0,.03) !important;
  border-color: rgba(0,0,0,.1) !important;
}
body.light-mode .quiz .opt.sel,
body.light-mode .quiz .opt:hover {
  background: rgba(138,101,32,.07) !important;
  border-color: rgba(138,101,32,.3) !important;
}
body.light-mode .quiz .sc {
  background: #ffffff !important;
  border-color: rgba(0,0,0,.1) !important;
}
body.light-mode .quiz .sn { color: var(--text-dark) !important; }
body.light-mode .quiz .st { color: var(--text-muted) !important; }