/* =====================================================
   FREYA BRAND SOLUTIONS — Main Styles
   ===================================================== */

:root {
  --gold: #c9a84c;
  --gold-light: #d4af37;
  --gold-pale: #f0e0a0;
  --black: #0a0a0a;
  --white: #fafaf8;
  --off-white: #f5f3ee;
  --gray: #474747;
  --mid-gray: #6e6e6e;
  --gray-light: #e8e6e0;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--white);
  color: var(--black);
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* CUSTOM CURSOR */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}
.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  opacity: 0.6;
}
body:hover .cursor {
  opacity: 1;
}

/* NAV */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.3s,
    padding 0.3s;
}
#mainNav.scrolled {
  border-color: var(--gray-light);
  padding: 18px 60px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav-logo svg,
.nav-logo img {
  width: 36px;
  height: 36px;
}
.nav-logo-text {
  font-family: "Cinzel", serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--black);
  line-height: 1.3;
}
.nav-logo-sub {
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--gold);
  display: block;
}

.nav-links {
  display: flex;
  gap: 48px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  right: 0;
}
.nav-cta {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 10px 24px;
  text-decoration: none;
  transition: all 0.3s;
}
.nav-cta:hover,
.nav-cta.active {
  background: var(--gold);
  color: var(--white);
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--white);
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  will-change: transform, opacity;
}
.hero-orb-1 {
  width: 700px;
  height: 700px;
  top: -20%;
  right: -10%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.28) 0%,
    rgba(201, 168, 76, 0.08) 40%,
    transparent 70%
  );
  animation: orbDrift1 20s ease-in-out infinite;
}
.hero-orb-2 {
  width: 500px;
  height: 500px;
  bottom: -10%;
  left: -5%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.22) 0%,
    rgba(201, 168, 76, 0.06) 40%,
    transparent 70%
  );
  animation: orbDrift2 25s ease-in-out infinite;
}
.hero-orb-3 {
  width: 350px;
  height: 350px;
  top: 35%;
  left: 40%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.18) 0%,
    rgba(201, 168, 76, 0.05) 40%,
    transparent 70%
  );
  animation: orbDrift3 18s ease-in-out infinite;
}
@keyframes orbDrift1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.8;
  }
  33% {
    transform: translate(-40px, 30px) scale(1.1);
    opacity: 1;
  }
  66% {
    transform: translate(20px, -20px) scale(0.95);
    opacity: 0.6;
  }
}
@keyframes orbDrift2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }
  40% {
    transform: translate(50px, -30px) scale(1.15);
    opacity: 1;
  }
  70% {
    transform: translate(-20px, 20px) scale(0.9);
    opacity: 0.5;
  }
}
@keyframes orbDrift3 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-30px, 40px) scale(1.2);
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.hero-eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: "Cinzel", serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 8px;
}
.hero-title > span {
  color: var(--gold);
  display: block;
}
.hero-title .hero-title-line1 {
  color: var(--black);
}
.hero-title .letter {
  display: inline-block;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  color: inherit;
}
.hero-title .letter.out {
  opacity: 0;
  transform: translateY(-0.2em);
}
.hero-title .letter.in {
  opacity: 0;
  transform: translateY(0.2em);
}

.hero-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-style: italic;
  color: var(--gray);
  margin: 28px 0 48px;
  line-height: 1.6;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
}
.btn-primary {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  padding: 16px 36px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  cursor: none;
  border: none;
}
.btn-primary:hover {
  background: var(--black);
}
.btn-ghost {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  border: 1px solid var(--black);
  padding: 16px 36px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  cursor: none;
}
.btn-ghost:hover {
  background: var(--black);
  color: var(--white);
}

/* Diamond / Logo */
.hero-diamond {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
.hero-diamond svg,
.hero-diamond img {
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 20px 60px rgba(201, 168, 76, 0.25));
}

/* ===================== TICKER ===================== */
.ticker-wrap {
  background: var(--black);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker {
  display: inline-flex;
  animation: ticker 30s linear infinite;
}
.ticker-item {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 5px 48px;
}
.ticker-sep {
  color: var(--white);
  opacity: 0.3;
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===================== GENESIS ===================== */
.genesis {
  padding: 140px 60px;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: start;
}
.genesis-left {
  position: sticky;
  top: 120px;
}

.section-number {
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 24px;
}
.section-title {
  font-family: "Cinzel", serif;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 32px;
}
.section-body {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  line-height: 1.9;
  color: #4a4a4a;
  font-weight: 300;
}

.genesis-stat {
  border-top: 1px solid var(--gray-light);
  padding: 48px 0;
}
.genesis-stat:last-child {
  border-bottom: 1px solid var(--gray-light);
}
.stat-number {
  font-family: "Cinzel", serif;
  font-size: 64px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-label {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
}

.credential-badge {
  margin-top: 64px;
  border: 1px solid var(--gold);
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.badge-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 20px;
}
.badge-text {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  line-height: 1.8;
  color: var(--gray);
  text-transform: uppercase;
}
.badge-title {
  font-family: "Cinzel", serif;
  font-size: 13px;
  color: var(--black);
  margin-bottom: 8px;
}

/* ===================== PROCESS ===================== */
.process {
  background: var(--black);
  padding: 140px 60px;
}
.process-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.process-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 100px;
}
.process-header .section-title {
  color: var(--white);
  margin-bottom: 0;
}
.process-header .section-number {
  color: var(--gold);
}
.process-tagline {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-style: italic;
  color: var(--gold-pale);
  opacity: 0.7;
  max-width: 300px;
  text-align: right;
  line-height: 1.5;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
.process-step {
  background: #111;
  padding: 48px 32px;
  position: relative;
  transition: background 0.4s;
  cursor: none;
}
.process-step:hover {
  background: #1a1a1a;
}
.process-step:hover .step-num {
  color: var(--gold);
}
.step-num {
  font-family: "Cinzel", serif;
  font-size: 48px;
  font-weight: 900;
  color: #222;
  line-height: 1;
  margin-bottom: 32px;
  transition: color 0.4s;
}
.step-title {
  font-family: "Cinzel", serif;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.step-desc {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.9;
  color: #666;
  font-weight: 300;
}
.step-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.process-step:hover .step-line {
  transform: scaleX(1);
}

/* ===================== SERVICES ===================== */
.services {
  padding: 140px 60px;
  max-width: 1400px;
  margin: 0 auto;
}
.services-header {
  margin-bottom: 80px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.services-grid {
  display: grid;
  column-gap: 25px;
  grid-template-columns: 1fr 1fr;
  column-gap: 10px;
}
.service-col {
  padding: 64px;
  border: 1px solid var(--gray-light);
  margin-top: 10px;
}

.service-icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--gold);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}
.service-name {
  font-family: "Cinzel", serif;
  font-size: 22px;
  margin-bottom: 40px;
  color: var(--black);
  line-height: 1.3;
}
.service-list {
  list-style: none;
}
.service-list li {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  font-weight: 300;
  color: var(--gray);
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: color 0.3s;
}
.service-list li:hover {
  color: var(--black);
}
.service-list li::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ===================== CLIENTS / LOGO WALL ===================== */
.clients {
  background: var(--off-white);
  padding: 100px 60px;
}
.clients-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.clients-header {
  text-align: center;
  margin-bottom: 80px;
}
.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}
.client-logo {
  flex: 1;
  min-width: 150px;
  background: var(--white);
  padding: 40px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cinzel", serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #979797;
  text-align: center;
  transition: all 0.4s;
  cursor: none;
  min-height: 100px;
}
.client-logo:hover {
  color: var(--gold);
  background: var(--black);
}

/* ===================== TESTIMONIAL ===================== */
.testimonial {
  padding: 120px 60px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.quote-mark {
  font-family: "Cinzel", serif;
  font-size: 120px;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 48px;
  display: block;
  opacity: 0.3;
}
.quote-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: var(--black);
  margin-bottom: 48px;
}
.quote-author {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}

/* GOLD DIVIDER */
.gold-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 60px;
  opacity: 0.5;
}

/* ===================== CONTACT PAGE ===================== */
.contact-hero {
  display: flex;
  align-items: center;
  padding: 140px 60px 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.contact-giant-text {
  font-family: "Cinzel", serif;
  font-size: clamp(32px, 6vw, 96px);
  font-weight: 900;
  color: var(--black);
  line-height: 1.05;
  margin-bottom: 80px;
}
.contact-giant-text span {
  color: var(--gold);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px 140px;
}

.contact-form {
  background: var(--white, #fff);
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  padding: 48px 44px;
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.06),
    0 1px 3px rgba(0, 0, 0, 0.04);
}

.contact-item {
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-light);
}
.contact-item:first-child {
  border-top: 1px solid var(--gray-light);
}
.contact-label {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.contact-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  color: var(--black);
  font-weight: 300;
  line-height: 1.5;
}
.contact-value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.contact-value a:hover {
  color: var(--gold);
}

.form-group {
  margin-bottom: 32px;
  position: relative;
}
.form-label {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--mid-gray);
  display: block;
  margin-bottom: 12px;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--gray-light);
  padding: 12px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  color: var(--black);
  background: transparent;
  outline: none;
  transition: border-color 0.3s;
  font-weight: 300;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--gold);
}
.form-textarea {
  height: 120px;
  resize: none;
}
.form-submit {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  border: none;
  padding: 20px 48px;
  cursor: none;
  transition: background 0.3s;
  display: block;
  margin: 0 auto;
  margin-top: 16px;
}
.form-submit:hover {
  background: var(--gold);
}
.contact-form .g-recaptcha {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

/* Form messages */
.form-success {
  background: #0e0e0e;
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 40px 32px;
  margin-bottom: 32px;
  text-align: center;
  animation: successIn 0.5s ease;
}
.form-success-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 12px;
}
.form-success-title {
  font-family: "Cinzel", serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.form-success-text {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--gray-light);
  line-height: 1.6;
}
@keyframes successIn {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.form-field-error {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  color: #f87171;
  letter-spacing: 0.03em;
  margin-top: 6px;
  min-height: 0;
}
.form-input.invalid {
  border-color: #f87171;
}
.form-error {
  background: #3a1a1a;
  color: #f87171;
  padding: 16px 24px;
  margin-bottom: 32px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 0.05em;
  border-left: 3px solid #f87171;
}
.form-errors {
  list-style: none;
  padding: 0;
}
.form-errors li {
  padding: 4px 0;
}

.whatsapp-vip {
  background: var(--black);
  margin: 0 60px 60px;
  padding: 60px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.whatsapp-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.whatsapp-icon svg {
  width: 32px;
  height: 32px;
}
.whatsapp-text {
  font-family: "Cinzel", serif;
  font-size: 24px;
  color: var(--white);
  line-height: 1.4;
}
.whatsapp-text span {
  color: var(--gold);
  display: block;
}
.btn-whatsapp {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 18px 40px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s;
  flex-shrink: 0;
}
.btn-whatsapp:hover {
  background: var(--white);
}

.social-links {
  padding: 80px 60px;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.social-card {
  border: 1px solid var(--gray-light);
  padding: 48px 32px;
  text-decoration: none;
  transition: all 0.4s;
  display: block;
}
.social-card:hover {
  background: var(--black);
  border-color: var(--black);
}
.social-card:hover .social-name,
.social-card:hover .social-handle {
  color: var(--white);
}
.social-card:hover .social-icon {
  color: var(--gold);
}
.social-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  margin-bottom: 24px;
  transition: color 0.4s;
}
.social-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.social-name {
  font-family: "Cinzel", serif;
  font-size: 14px;
  color: var(--black);
  margin-bottom: 8px;
  transition: color 0.4s;
}
.social-handle {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  color: var(--gray);
  letter-spacing: 0.1em;
  transition: color 0.4s;
}

/* ===================== ARTICLES PAGE ===================== */
.articles-hero {
  padding: 160px 60px 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.articles-title {
  font-family: "Cinzel", serif;
  font-size: clamp(36px, 5vw, 80px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}
.articles-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-style: italic;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.7;
}

.articles-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px 140px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.article-featured {
  grid-column: 1 / -1;
  background: var(--black);
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 2px;
}
.article-featured-tag {
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.article-featured-title {
  font-family: "Cinzel", serif;
  font-size: 36px;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 24px;
}
.article-featured-excerpt {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  color: #888;
  line-height: 1.8;
  font-style: italic;
}
.article-featured-meta {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 48px;
  display: flex;
  gap: 24px;
  align-items: center;
}
.article-featured-meta span {
  color: var(--mid-gray);
}
.article-read-btn {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 14px 32px;
  text-decoration: none;
  margin-top: 48px;
  transition: all 0.3s;
  cursor: none;
  background: none;
}
.article-read-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.article-card {
  background: var(--off-white);
  padding: 56px 48px;
  transition: background 0.3s;
  cursor: none;
  text-decoration: none;
  display: block;
}
.article-card:hover {
  background: var(--gray-light);
}
.article-tag {
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.article-title {
  font-family: "Cinzel", serif;
  font-size: 20px;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 20px;
}
.article-excerpt {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  color: var(--gray);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 32px;
}
.article-date {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--mid-gray);
  text-transform: uppercase;
}

/* ARTICLE FULL / SINGLE VIEW */
.article-full {
  padding: 160px 60px 100px;
  max-width: 900px;
  margin: 0 auto;
}
.article-full-back {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  cursor: none;
  margin-bottom: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  text-decoration: none;
}
.article-full-back:hover {
  opacity: 0.7;
}
.article-full-tag {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.article-full-title {
  font-family: "Cinzel", serif;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.2;
  margin-bottom: 40px;
}
.article-full-body {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  line-height: 1.9;
  color: #333;
  font-weight: 300;
}
.article-full-body p {
  margin-bottom: 28px;
}
.article-full-body h3 {
  font-family: "Cinzel", serif;
  font-size: 22px;
  color: var(--black);
  margin: 48px 0 20px;
  font-weight: 600;
}
.article-full-body .gold-pull {
  border-left: 2px solid var(--gold);
  padding-left: 32px;
  font-style: italic;
  color: var(--black);
  font-size: 22px;
  margin: 48px 0;
}

/* ===================== CLIENTS PAGE ===================== */
.clients-page-hero {
  padding: 160px 60px 80px;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}
.clients-page-title {
  font-family: "Cinzel", serif;
  font-size: clamp(36px, 5vw, 80px);
  font-weight: 700;
  line-height: 1.1;
}
.clients-page-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-style: italic;
  color: var(--gray);
  max-width: 380px;
  text-align: right;
  line-height: 1.7;
}

.reviews-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 60px 140px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.review-card {
  background: var(--off-white);
  padding: 56px 48px;
  position: relative;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.review-card:hover {
  background: var(--black);
}
.review-card:hover .review-company,
.review-card:hover .review-text,
.review-card:hover .review-author {
  color: var(--white);
}
.review-card:hover .review-stars {
  color: var(--gold);
}
.review-card:hover .review-type {
  color: #666;
}
.review-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: 32px;
  transition: color 0.3s;
}
.review-logo {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s;
}
.review-card:hover .review-logo {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
}
.review-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.review-attribution {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.review-card:hover .review-attribution {
  border-top-color: rgba(255, 255, 255, 0.1);
}
.review-identity {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-company {
  font-family: "Cinzel", serif;
  font-size: 14px;
  color: var(--black);
  transition: color 0.3s;
}
.review-type {
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
}
.review-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  font-style: italic;
  margin-bottom: 0;
  transition: color 0.3s;
}
.review-author {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gray);
  text-transform: uppercase;
  transition: color 0.3s;
}

/* CREATOR HUB */
.creator-hub {
  background: var(--black);
  padding: 120px 60px;
  text-align: center;
}
.creator-hub-inner {
  max-width: 900px;
  margin: 0 auto;
}
.creator-eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.creator-title {
  font-family: "Cinzel", serif;
  font-size: clamp(28px, 4vw, 56px);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 32px;
}
.creator-desc {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-style: italic;
  color: #888;
  line-height: 1.8;
  margin-bottom: 56px;
}
.creator-tags {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.creator-tag {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid #333;
  padding: 10px 24px;
  transition: border-color 0.3s;
}
.creator-tag:hover {
  border-color: var(--gold);
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--black);
  border-top: 1px solid #1a1a1a;
}
.footer-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 60px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
}
.footer-brand {
  max-width: 380px;
}
.footer-logo {
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--white);
  letter-spacing: 0.15em;
  text-decoration: none;
  display: block;
  margin-bottom: 20px;
}
.footer-logo span {
  color: var(--gold);
  display: block;
  font-size: 9px;
  letter-spacing: 0.4em;
  font-family: "Montserrat", sans-serif;
  margin-top: 4px;
}
.footer-description {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: var(--mid-gray);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  transition: all 0.3s;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-social svg {
  width: 16px;
  height: 16px;
}
.footer-nav h4,
.footer-contact h4 {
  font-family: "Cinzel", serif;
  font-size: 12px;
  color: var(--white);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.footer-nav ul,
.footer-contact ul {
  list-style: none;
}
.footer-nav li,
.footer-contact li {
  margin-bottom: 12px;
}
.footer-nav a,
.footer-contact a {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: #999;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--gold);
}
.footer-location {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: #666;
  margin-top: 20px;
  letter-spacing: 0.05em;
}
.footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding: 24px 60px;
  max-width: 1400px;
  margin: 0 auto;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 12px;
}
.footer-legal span {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--mid-gray);
}
.footer-copy {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--mid-gray);
  text-transform: uppercase;
}

/* ===================== ANIMATIONS ===================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== HAMBURGER / MOBILE DRAWER ===================== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--black);
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--white);
  z-index: 1001;
  padding: 120px 48px 48px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.08);
  overflow-y: auto;
}
.mobile-drawer.open {
  transform: translateX(0);
}
.mobile-drawer-links {
  list-style: none;
  margin-bottom: 48px;
}
.mobile-drawer-links li {
  border-bottom: 1px solid var(--gray-light);
}
.mobile-drawer-links a {
  font-family: "Cinzel", serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--black);
  text-decoration: none;
  display: block;
  padding: 24px 0;
  transition: color 0.3s;
}
.mobile-drawer-links a:hover,
.mobile-drawer-links a.active {
  color: var(--gold);
}
.mobile-drawer-cta {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  padding: 18px 36px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}
.mobile-drawer-cta:hover,
.mobile-drawer-cta.active {
  background: var(--black);
}

.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ===================== 404 ERROR PAGE ===================== */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 32px 80px;
}

.error-page-bg {
  position: absolute;
  inset: 0;
  background: var(--white);
}
.error-page-bg::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: breathe 6s ease-in-out infinite;
}
.error-page-bg::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.04) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: breathe 8s ease-in-out infinite reverse;
}

.error-page-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
}

/* Large 4_4 display */
.error-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  animation: errorFadeIn 0.8s ease-out both;
}
.error-digit {
  font-family: "Cinzel", serif;
  font-size: clamp(80px, 15vw, 160px);
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  opacity: 0.08;
}
.error-diamond {
  color: var(--gold);
  animation: diamondSpin 8s ease-in-out infinite;
  display: flex;
  align-items: center;
}
.error-diamond svg {
  width: clamp(48px, 8vw, 72px);
  height: clamp(48px, 8vw, 72px);
}
@keyframes diamondSpin {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  25% {
    transform: rotate(5deg) scale(1.05);
  }
  50% {
    transform: rotate(0deg) scale(1);
  }
  75% {
    transform: rotate(-5deg) scale(1.05);
  }
}

/* Eyebrow */
.error-eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  animation: errorFadeIn 0.8s ease-out 0.15s both;
}
.error-eyebrow span {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

/* Title */
.error-title {
  font-family: "Cinzel", serif;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--black);
  margin-bottom: 20px;
  animation: errorFadeIn 0.8s ease-out 0.3s both;
}
.error-title em {
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
  color: var(--gold);
  font-weight: 400;
}

/* Description */
.error-description {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray);
  font-weight: 300;
  margin-bottom: 44px;
  animation: errorFadeIn 0.8s ease-out 0.45s both;
}

/* Actions */
.error-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  animation: errorFadeIn 0.8s ease-out 0.6s both;
}

/* Floating particles */
.error-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.15;
}
.particle-1 {
  top: 20%;
  left: 15%;
  animation: particleFloat 7s ease-in-out infinite;
}
.particle-2 {
  top: 60%;
  right: 12%;
  animation: particleFloat 9s ease-in-out infinite 1s;
  width: 6px;
  height: 6px;
}
.particle-3 {
  bottom: 25%;
  left: 25%;
  animation: particleFloat 6s ease-in-out infinite 0.5s;
  width: 3px;
  height: 3px;
}
.particle-4 {
  top: 35%;
  right: 25%;
  animation: particleFloat 8s ease-in-out infinite 2s;
  width: 5px;
  height: 5px;
  opacity: 0.1;
}
.particle-5 {
  bottom: 40%;
  left: 10%;
  animation: particleFloat 10s ease-in-out infinite 1.5s;
  width: 4px;
  height: 4px;
}

@keyframes particleFloat {
  0%,
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0.15;
  }
  33% {
    transform: translateY(-20px) translateX(10px);
    opacity: 0.25;
  }
  66% {
    transform: translateY(10px) translateX(-10px);
    opacity: 0.1;
  }
}

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

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  body {
    cursor: auto;
  }
  .cursor,
  .cursor-ring {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-drawer {
    display: block;
  }
  .drawer-overlay {
    display: block;
  }
  #mainNav {
    padding: 20px 32px;
  }
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 32px;
    text-align: center;
  }
  .hero-diamond {
    order: -1;
  }
  .hero-diamond img {
    max-width: 260px;
  }
  .hero-eyebrow {
    justify-content: center;
  }
  .hero-title {
    font-size: clamp(32px, 8vw, 52px);
  }
  .hero-actions {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .hero-actions a {
    text-align: center;
    width: 100%;
  }
  .genesis {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 80px 32px;
  }
  .genesis-left {
    position: static;
  }
  .stat-number {
    font-size: 48px;
  }
  .process {
    padding: 80px 32px;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
  .process-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .process-tagline {
    text-align: left;
  }
  .services {
    padding: 80px 32px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-col {
    padding: 40px 32px;
  }
  .service-col:first-child {
    border-right: none;
    border-bottom: 1px solid var(--gray-light);
  }
  .contact-hero {
    padding: 120px 32px 60px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 0 32px 80px;
  }
  .contact-form {
    padding: 36px 28px;
  }
  .whatsapp-vip {
    margin: 0 32px 40px;
    padding: 40px 24px;
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .whatsapp-text {
    font-size: 20px;
  }
  .social-links {
    grid-template-columns: 1fr 1fr;
    padding: 40px 32px;
  }
  .articles-hero {
    padding: 120px 32px 60px;
  }
  .articles-grid {
    grid-template-columns: 1fr;
    padding: 0 32px 80px;
  }
  .article-featured {
    grid-column: 1;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 32px;
  }
  .article-featured-title {
    font-size: 26px;
  }
  .article-full {
    padding: 120px 32px 80px;
  }
  .clients-page-hero {
    flex-direction: column;
    padding: 120px 32px 60px;
    gap: 24px;
    align-items: start;
  }
  .clients-page-subtitle {
    text-align: left;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    padding: 0 32px 80px;
  }
  .review-card {
    padding: 40px 32px;
  }
  .clients {
    padding: 60px 32px;
  }
  .client-logos {
    flex-direction: column;
  }
  .gold-divider {
    margin: 0 32px;
  }
  .testimonial {
    padding: 80px 32px;
  }
  .quote-text {
    font-size: 24px;
  }
  .creator-hub {
    padding: 80px 32px;
  }
  .error-page {
    padding: 100px 24px 60px;
  }
  .error-particles {
    display: none;
  }
  .creator-tags {
    flex-direction: column;
    align-items: center;
  }
  footer {
    text-align: center;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 32px 40px;
    text-align: center;
  }
  .footer-brand {
    max-width: 100%;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-bottom {
    padding: 24px 32px;
  }
}

@media (max-width: 600px) {
  #mainNav {
    padding: 16px 20px;
  }
  #mainNav.scrolled {
    padding: 12px 20px;
  }
  .hero {
    padding-top: 100px;
    padding-bottom: 48px;
  }
  .hero-content {
    padding: 0 20px;
    gap: 24px;
  }
  .hero-diamond img {
    max-width: 200px;
  }
  .hero-eyebrow {
    font-size: 8px;
    margin-bottom: 20px;
  }
  .hero-subtitle {
    font-size: 17px;
    margin: 20px 0 32px;
  }
  .genesis {
    padding: 60px 20px;
    gap: 40px;
  }
  .credential-badge {
    flex-direction: column;
    padding: 24px;
  }
  .process {
    padding: 60px 20px;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .process-step {
    padding: 36px 24px;
  }
  .services {
    padding: 60px 20px;
  }
  .service-col {
    padding: 32px 20px;
  }
  .clients {
    padding: 40px 20px;
  }
  .testimonial {
    padding: 60px 20px;
  }
  .quote-text {
    font-size: 20px;
  }
  .quote-mark {
    font-size: 80px;
  }
  .contact-hero {
    padding: 100px 20px 40px;
  }
  .contact-grid {
    padding: 0 20px 60px;
    gap: 40px;
  }
  .contact-form {
    padding: 28px 20px;
  }
  .whatsapp-vip {
    margin: 0 20px 32px;
    padding: 32px 20px;
  }
  .whatsapp-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
  }
  .whatsapp-icon svg {
    width: 26px;
    height: 26px;
  }
  .whatsapp-text {
    font-size: 18px;
  }
  .social-links {
    grid-template-columns: 1fr;
    padding: 32px 20px;
  }
  .social-card {
    padding: 32px 24px;
  }
  .articles-hero {
    padding: 100px 20px 40px;
  }
  .articles-grid {
    padding: 0 20px 60px;
  }
  .article-card {
    padding: 36px 28px;
  }
  .article-featured {
    padding: 36px 24px;
  }
  .article-featured-title {
    font-size: 22px;
  }
  .article-full {
    padding: 100px 20px 60px;
  }
  .clients-page-hero {
    padding: 100px 20px 40px;
  }
  .reviews-grid {
    padding: 0 20px 60px;
  }
  .review-card {
    padding: 32px 24px;
  }
  .creator-hub {
    padding: 60px 20px;
  }
  .error-page {
    padding: 80px 20px 48px;
  }
  .error-number {
    margin-bottom: 28px;
  }
  .error-title {
    font-size: 22px;
  }
  .error-description {
    font-size: 16px;
    margin-bottom: 32px;
  }
  .error-actions {
    flex-direction: column;
    gap: 12px;
  }
  .error-actions a {
    width: 100%;
    text-align: center;
  }
  .gold-divider {
    margin: 0 20px;
  }
  footer {
    text-align: center;
  }
  .footer-main {
    padding: 48px 20px 32px;
    gap: 36px;
  }
  .footer-bottom {
    padding: 20px;
  }
  .mobile-drawer {
    padding: 100px 32px 48px;
    width: 280px;
  }
}
