/* ==========================================================================
   NZ WEB RE M 1 — Shared Stylesheet
   Midnight Navy + Rose Gold · Editorial Refined
   ========================================================================== */

:root {
  /* Midnight Navy base */
  --bg:         #0b1220;          /* deep navy */
  --bg-2:       #0f172a;          /* slightly lifted */
  --bg-3:       #1e293b;          /* card surface */

  /* Ink */
  --ink:        #f8fafc;
  --ink-2:      rgba(248, 250, 252, 0.72);
  --ink-3:      rgba(248, 250, 252, 0.48);

  /* Rose Gold accents */
  --rose:       #e8b4a0;          /* rose gold */
  --rose-soft:  #f5cfc2;          /* soft champagne rose */
  --rose-deep:  #c8896f;          /* deep rose */

  /* Silo accents */
  --silo-1:     #8ab4ff;          /* cool sapphire for real estate */
  --silo-1-soft:#bfd4ff;
  --silo-2:     #e8b4a0;          /* rose gold for marketing */
  --silo-2-soft:#f5cfc2;

  /* Lines & glass */
  --line:        rgba(232, 180, 160, 0.12);
  --line-2:      rgba(232, 180, 160, 0.25);
  --glass:       rgba(255, 255, 255, 0.03);
  --glass-strong:rgba(255, 255, 255, 0.07);

  /* Font stack */
  --font-sans:  'Satoshi', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Cormorant Garamond', 'Fraunces', Georgia, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.01em;
}
::selection { background: var(--rose); color: var(--bg); }

.serif {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
}
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ==========================================================================
   NAVIGATION (with mobile dropdown)
   ========================================================================== */

nav.main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(11, 18, 32, 0.6);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
nav.main-nav.scrolled {
  background: rgba(11, 18, 32, 0.92);
  border-bottom-color: var(--line);
}
nav .nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  font-size: 17px; font-weight: 500; letter-spacing: 0.3px;
  z-index: 102;
}
.logo-mark {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--rose);
  background: linear-gradient(135deg, rgba(232,180,160,0.08), transparent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-style: italic; font-size: 16px;
  color: var(--rose);
}
.nav-links {
  display: flex; gap: 36px; align-items: center; font-size: 14px;
}
.nav-links > a, .nav-links .has-dropdown > button {
  color: var(--ink-2); transition: color 0.2s; position: relative;
  font-family: inherit; font-size: 14px; padding: 8px 0;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-links > a:hover, .nav-links .has-dropdown:hover > button {
  color: var(--ink);
}
.nav-links > a::after {
  content: ''; position: absolute; bottom: 4px; left: 0;
  width: 0; height: 1px; background: var(--rose); transition: width 0.3s;
}
.nav-links > a:hover::after { width: 100%; }
.nav-cta {
  padding: 11px 22px;
  border: 1px solid var(--rose);
  border-radius: 100px;
  font-size: 13px; font-weight: 500;
  background: transparent;
  color: var(--rose);
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--rose); color: var(--bg);
  box-shadow: 0 8px 24px rgba(232,180,160,0.25);
}

/* Dropdown menu (desktop) */
.has-dropdown { position: relative; }
.has-dropdown .caret { font-size: 9px; transition: transform 0.2s; }
.has-dropdown:hover .caret { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: -12px;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(24px);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px; min-width: 260px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: block; padding: 10px 14px;
  font-size: 13.5px; color: var(--ink-2);
  border-radius: 8px; transition: background 0.2s, color 0.2s;
  line-height: 1.4;
}
.dropdown a:hover { background: var(--glass-strong); color: var(--rose); }
.dropdown .group-label {
  font-size: 10px; text-transform: uppercase; letter-spacing: 2px;
  color: var(--rose); padding: 10px 14px 6px;
}

/* Mobile toggle */
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  z-index: 102;
}
.menu-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink); transition: all 0.3s;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 100px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.3px;
  border: 1px solid; transition: all 0.35s cubic-bezier(.2,.8,.2,1);
  font-family: inherit;
}
.btn-primary {
  background: var(--rose); color: var(--bg); border-color: var(--rose);
}
.btn-primary:hover {
  background: var(--rose-soft); border-color: var(--rose-soft);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(232, 180, 160, 0.35);
}
.btn-ghost {
  background: transparent; color: var(--ink); border-color: var(--line-2);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: var(--glass-strong); border-color: var(--rose);
  color: var(--rose); transform: translateY(-2px);
}
.btn .arrow { transition: transform 0.3s; }
.btn:hover .arrow { transform: translateX(5px); }

/* ==========================================================================
   SECTION PRIMITIVES
   ========================================================================== */

section { padding: 120px 0; position: relative; }
.section-label {
  display: inline-block;
  font-size: 11px; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--rose); margin-bottom: 18px; font-weight: 500;
}
.section-heading {
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 1.02; font-weight: 300;
  letter-spacing: -0.025em; margin-bottom: 26px;
  font-family: var(--font-sans);
}
.section-heading .serif {
  display: inline; color: var(--rose-soft);
  font-family: var(--font-serif);
  font-weight: 400;
}
.section-intro {
  font-size: 17px; color: var(--ink-2);
  max-width: 640px; line-height: 1.7;
  font-weight: 400;
}

/* ==========================================================================
   INSTAGRAM CTA (shared across pages)
   ========================================================================== */

.ig-cta {
  background:
    radial-gradient(ellipse at center, rgba(232,180,160,0.1), transparent 70%),
    var(--bg);
  border-top: 1px solid var(--line);
  padding: 100px 0;
  text-align: center;
}
.ig-cta-inner {
  max-width: 720px; margin: 0 auto;
  padding: 64px 44px;
  border-radius: 32px;
  border: 1px solid var(--line-2);
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(24px);
  position: relative; overflow: hidden;
}
.ig-cta-inner::before {
  content: ''; position: absolute; inset: -2px;
  background: conic-gradient(from 180deg at 50% 50%,
    rgba(232,180,160,0.3),
    rgba(138,180,255,0.2),
    rgba(232,180,160,0.3));
  opacity: 0.4;
  animation: spin 22s linear infinite;
  z-index: -1;
}
@keyframes spin { to { transform: rotate(360deg); } }
.ig-icon-big {
  width: 74px; height: 74px; margin: 0 auto 26px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 20px;
  background: linear-gradient(135deg, #833ab4, #c13584, #e1306c, #fcb045);
  box-shadow: 0 10px 30px rgba(225, 48, 108, 0.3);
}
.ig-icon-big svg { width: 36px; height: 36px; color: #fff; }
.ig-cta h2 {
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 300; margin-bottom: 18px;
  letter-spacing: -0.025em;
  font-family: var(--font-sans);
}
.ig-cta h2 .serif { color: var(--rose); }
.ig-cta p { color: var(--ink-2); margin-bottom: 30px; font-size: 16px; }
.ig-handle {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 30px; border-radius: 100px;
  background: var(--ink); color: var(--bg);
  font-weight: 500; font-size: 14px;
  transition: all 0.3s;
}
.ig-handle:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 44px rgba(232, 180, 160, 0.35);
}

/* ==========================================================================
   FOOTER (shared)
   ========================================================================== */

footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 60px;
}
.footer-brand .logo { margin-bottom: 22px; }
.footer-brand p {
  color: var(--ink-2); font-size: 14px; max-width: 340px;
  line-height: 1.7;
}
.footer-col h4 {
  font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--rose); margin-bottom: 22px; font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-size: 14px; color: var(--ink-2); transition: color 0.2s;
}
.footer-col a:hover { color: var(--rose); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--ink-3);
}
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
  color: var(--ink-2);
}
.social-links a:hover {
  background: var(--rose); color: var(--bg);
  border-color: var(--rose); transform: translateY(-3px);
}
.social-links svg { width: 18px; height: 18px; }

/* ==========================================================================
   WHATSAPP FLOAT
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 62px; height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 34px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: waPulse 2.2s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 44px rgba(37, 211, 102, 0.72);
}
.whatsapp-float svg { width: 32px; height: 32px; color: white; }
.whatsapp-float::before {
  content: ''; position: absolute; inset: -6px;
  border-radius: 50%; border: 2px solid #25D366;
  animation: waRing 2.2s ease-out infinite;
  opacity: 0;
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 10px 34px rgba(37,211,102,0.5); }
  50%     { box-shadow: 0 10px 46px rgba(37,211,102,0.82); }
}
@keyframes waRing {
  0%   { transform: scale(0.92); opacity: 0.7; }
  100% { transform: scale(1.44); opacity: 0; }
}
.wa-tooltip {
  position: absolute; right: 78px; top: 50%;
  transform: translateY(-50%);
  background: var(--ink); color: var(--bg);
  padding: 10px 16px; border-radius: 8px;
  font-size: 13px; white-space: nowrap; font-weight: 500;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.whatsapp-float:hover .wa-tooltip {
  opacity: 1; transform: translateY(-50%) translateX(-4px);
}

/* ==========================================================================
   FORMS (shared)
   ========================================================================== */

form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label {
  font-size: 11px; color: var(--ink-3);
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 8px; display: block; font-weight: 500;
}
input, select, textarea {
  width: 100%;
  padding: 15px 18px;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  transition: all 0.2s;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--rose);
  background: var(--glass-strong);
  box-shadow: 0 0 0 3px rgba(232, 180, 160, 0.1);
}
textarea { resize: vertical; min-height: 120px; }
select option { background: var(--bg-2); color: var(--ink); }
.form-submit { margin-top: 8px; padding: 16px 32px; }
.hp-field {
  position: absolute; left: -9999px;
  opacity: 0; pointer-events: none;
}

/* ==========================================================================
   REVEAL ANIMATION
   ========================================================================== */

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(.2,.8,.2,1), transform 0.8s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   RESPONSIVE — MOBILE FIRST FIXES
   ========================================================================== */

@media (max-width: 960px) {
  section { padding: 72px 0; }
  .container { padding: 0 20px; }

  /* Hide desktop nav, show hamburger */
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw); height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 28px 40px;
    gap: 8px;
    background: rgba(11, 18, 32, 0.98);
    backdrop-filter: blur(28px);
    border-left: 1px solid var(--line);
    transition: right 0.4s cubic-bezier(.2,.8,.2,1);
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-links > a, .nav-links .has-dropdown > button {
    font-size: 16px; padding: 12px 0;
    width: 100%; border-bottom: 1px solid var(--line);
  }
  .nav-links > a::after { display: none; }
  .nav-cta {
    margin-top: 16px; width: 100%;
    justify-content: center; padding: 14px;
  }

  /* Mobile dropdown behavior — click to expand */
  .has-dropdown { width: 100%; }
  .has-dropdown > button {
    justify-content: space-between;
    width: 100%;
  }
  .dropdown {
    position: static;
    opacity: 1; visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 4px 0 8px 12px;
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .has-dropdown.open .dropdown { max-height: 600px; }
  .has-dropdown.open .caret { transform: rotate(180deg); }
  .dropdown a {
    padding: 10px 12px;
    font-size: 14px;
    border-left: 1px solid var(--line);
  }
  .dropdown .group-label { padding: 8px 12px 4px; }

  .menu-toggle { display: flex; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 56px; height: 56px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .ig-cta-inner { padding: 44px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   LANGUAGE SWITCHER
   ========================================================================== */

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  background: var(--glass);
  margin-right: 12px;
}
.lang-switch button, .lang-switch a {
  font-family: inherit;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--ink-3);
  border-radius: 100px;
  transition: all 0.25s;
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}
.lang-switch button:hover, .lang-switch a:hover {
  color: var(--ink);
}
.lang-switch button.active, .lang-switch a.active {
  background: var(--rose);
  color: var(--bg);
}

@media (max-width: 960px) {
  .lang-switch {
    order: -1;
    margin: 20px 0;
    width: 100%;
    justify-content: center;
  }
  .lang-switch button, .lang-switch a { padding: 8px 16px; font-size: 13px; }
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

.testimonials {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-top: 1px solid var(--line);
  padding: 120px 0;
}
.testimonials-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  padding: 36px 32px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(.2,.8,.2,1);
  position: relative;
  display: flex;
  flex-direction: column;
}
.testimonial:hover {
  border-color: var(--rose);
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.28);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
  color: var(--rose);
}
.testimonial-stars svg { width: 16px; height: 16px; }
.testimonial-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 28px;
  flex-grow: 1;
  letter-spacing: -0.01em;
}
.testimonial-quote::before {
  content: '"';
  font-size: 60px;
  color: var(--rose);
  opacity: 0.3;
  line-height: 0;
  margin-right: 4px;
  vertical-align: -0.3em;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(232,180,160,0.3), rgba(138,180,255,0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--rose-soft);
  border: 1px solid var(--line-2);
  flex-shrink: 0;
}
.testimonial-meta .name {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 2px;
}
.testimonial-meta .role {
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.3px;
}

@media (max-width: 960px) {
  .testimonials { padding: 80px 0; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
  .testimonials-header { margin-bottom: 48px; }
  .testimonial-quote { font-size: 17px; }
}

/* ==========================================================================
   BLOG / INSIGHTS PAGE
   ========================================================================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.blog-card {
  grid-column: span 4;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(20px);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(.2,.8,.2,1);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: var(--rose);
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.28);
}
.blog-card.featured {
  grid-column: span 8;
}
.blog-card-visual {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--bg-3);
}
.blog-card.featured .blog-card-visual { height: 340px; }
.blog-card-visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 56px;
  color: rgba(232, 180, 160, 0.22);
  letter-spacing: -0.03em;
}
.blog-card.featured .blog-card-visual-inner { font-size: 88px; }
.blog-card-visual-gradient-1 { background: radial-gradient(circle at 30% 30%, rgba(232,180,160,0.18), transparent 60%), radial-gradient(circle at 70% 70%, rgba(138,180,255,0.15), transparent 60%), var(--bg-2); }
.blog-card-visual-gradient-2 { background: radial-gradient(circle at 60% 40%, rgba(232,180,160,0.22), transparent 60%), var(--bg-2); }
.blog-card-visual-gradient-3 { background: radial-gradient(circle at 20% 70%, rgba(138,180,255,0.2), transparent 60%), radial-gradient(circle at 80% 20%, rgba(232,180,160,0.15), transparent 60%), var(--bg-2); }
.blog-card-visual-gradient-4 { background: linear-gradient(135deg, rgba(30,58,138,0.25), rgba(232,180,160,0.12)), var(--bg-2); }
.blog-card-body {
  padding: 28px 30px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-3);
}
.blog-card-category {
  color: var(--rose);
  font-weight: 500;
}
.blog-card-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-3); }
.blog-card h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.blog-card.featured h3 { font-size: 30px; }
.blog-card-excerpt {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.65;
  flex-grow: 1;
}
.blog-card-link {
  margin-top: 22px;
  font-size: 13px;
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.5px;
  font-weight: 500;
}
.blog-card-link .arrow { transition: transform 0.3s; }
.blog-card:hover .blog-card-link .arrow { transform: translateX(5px); }

/* Category filter pills */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 48px 0;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.blog-filter {
  padding: 9px 18px;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  background: transparent;
  color: var(--ink-2);
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.25s;
}
.blog-filter:hover { color: var(--ink); border-color: var(--rose); }
.blog-filter.active {
  background: var(--rose);
  color: var(--bg);
  border-color: var(--rose);
}

@media (max-width: 960px) {
  .blog-card, .blog-card.featured { grid-column: span 12; }
  .blog-card.featured h3 { font-size: 24px; }
  .blog-card-visual, .blog-card.featured .blog-card-visual { height: 200px; }
}

/* ==========================================================================
   BLOG POST (individual article)
   ========================================================================== */

.post-hero {
  padding: 180px 0 60px;
  border-bottom: 1px solid var(--line);
}
.post-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}
.post-hero .breadcrumb {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 24px;
}
.post-hero .breadcrumb a { color: var(--rose); }
.post-hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-3);
}
.post-hero-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-3); }
.post-hero-meta .category { color: var(--rose); font-weight: 500; }
.post-hero h1 {
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.post-hero h1 .serif { color: var(--rose-soft); font-family: var(--font-serif); }
.post-hero .post-lede {
  font-size: 20px;
  color: var(--ink-2);
  line-height: 1.6;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  max-width: 680px;
}

.post-visual {
  height: 440px;
  margin: 60px 0;
  border-radius: 20px;
  overflow: hidden;
  background: radial-gradient(circle at 40% 50%, rgba(232,180,160,0.22), transparent 60%), radial-gradient(circle at 70% 70%, rgba(138,180,255,0.15), transparent 60%), var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 120px;
  color: rgba(232,180,160,0.3);
}

.post-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-2);
}
.post-content h2 {
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  margin: 56px 0 20px;
  letter-spacing: -0.02em;
}
.post-content h2 .serif { color: var(--rose); font-family: var(--font-serif); }
.post-content h3 {
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin: 40px 0 14px;
  letter-spacing: -0.01em;
}
.post-content p { margin-bottom: 22px; }
.post-content a { color: var(--rose); border-bottom: 1px solid rgba(232,180,160,0.3); }
.post-content a:hover { border-bottom-color: var(--rose); }
.post-content ul, .post-content ol { margin: 22px 0 22px 24px; padding-left: 0; }
.post-content ul li, .post-content ol li { margin-bottom: 10px; padding-left: 8px; }
.post-content blockquote {
  margin: 36px 0;
  padding: 22px 30px;
  border-left: 2px solid var(--rose);
  background: rgba(232, 180, 160, 0.05);
  border-radius: 0 12px 12px 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--ink);
}
.post-content strong { color: var(--ink); font-weight: 500; }
.post-content em { color: var(--rose-soft); }

.post-footer {
  max-width: 720px;
  margin: 80px auto 0;
  padding: 40px 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.post-share { display: flex; gap: 10px; }
.post-share a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-2); transition: all 0.3s;
}
.post-share a:hover { background: var(--rose); color: var(--bg); border-color: var(--rose); }
.post-share svg { width: 16px; height: 16px; }

@media (max-width: 960px) {
  .post-hero { padding: 140px 0 40px; }
  .post-visual { height: 280px; font-size: 72px; }
  .post-content { font-size: 16px; }
  .post-content h2 { font-size: 26px; }
}

/* ==========================================================================
   RTL (ARABIC) SUPPORT
   ========================================================================== */

html[dir="rtl"] {
  font-family: 'IBM Plex Sans Arabic', 'Satoshi', sans-serif;
}
html[dir="rtl"] body { letter-spacing: 0; }
html[dir="rtl"] .serif {
  font-family: 'Reem Kufi', 'IBM Plex Sans Arabic', sans-serif;
  font-style: normal;
}

/* Mirror key components */
html[dir="rtl"] .hero-side.right { text-align: right; }
html[dir="rtl"] .hero-side.left { text-align: right; }
html[dir="rtl"] .hero-side.right .hero-heading-plate { margin-left: 0; margin-right: auto; }
html[dir="rtl"] .hero-side.left .hero-heading-plate { margin-right: 0; margin-left: auto; }
html[dir="rtl"] .hero-side.right .hero-lede { margin-left: 0; margin-right: auto; }
html[dir="rtl"] .hero-side.right .hero-stats { justify-content: flex-start; }
html[dir="rtl"] .hero-side.left .hero-stats { justify-content: flex-end; }

html[dir="rtl"] .dropdown { left: auto; right: -12px; }
html[dir="rtl"] .btn .arrow { transform: scaleX(-1); }
html[dir="rtl"] .btn:hover .arrow { transform: scaleX(-1) translateX(5px); }
html[dir="rtl"] .service-link .arrow { transform: scaleX(-1); }
html[dir="rtl"] .service:hover .service-link .arrow { transform: scaleX(-1) translateX(6px); }
html[dir="rtl"] .blog-card-link .arrow { transform: scaleX(-1); }
html[dir="rtl"] .blog-card:hover .blog-card-link .arrow { transform: scaleX(-1) translateX(5px); }

html[dir="rtl"] .whatsapp-float { right: auto; left: 28px; }
html[dir="rtl"] .wa-tooltip { right: auto; left: 78px; }
html[dir="rtl"] .whatsapp-float:hover .wa-tooltip { transform: translateY(-50%) translateX(4px); }

html[dir="rtl"] .testimonial-quote::before { margin-right: 0; margin-left: 4px; }
html[dir="rtl"] .post-content blockquote {
  border-left: none;
  border-right: 2px solid var(--rose);
  border-radius: 12px 0 0 12px;
}

html[dir="rtl"] .breadcrumb { direction: rtl; }

@media (max-width: 960px) {
  html[dir="rtl"] .nav-links {
    right: auto; left: -100%;
    border-left: none; border-right: 1px solid var(--line);
  }
  html[dir="rtl"] .nav-links.open { left: 0; }
  html[dir="rtl"] .whatsapp-float { left: 20px; right: auto; }
}

/* ==========================================================================
   CYRILLIC / RUSSIAN TYPOGRAPHY
   ========================================================================== */

html[lang="ru"] {
  font-family: 'Manrope', 'Satoshi', sans-serif;
}
html[lang="ru"] .serif {
  font-family: 'Cormorant Garamond', 'Manrope', serif;
}


/* Newsletter band */
.newsletter-band {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.newsletter-band::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(232,180,160,0.06), transparent 60%);
  pointer-events: none;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.newsletter-heading {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 14px 0 18px;
}
.newsletter-heading .serif {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--rose);
}
.newsletter-text {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  max-width: 480px;
}
.newsletter-form {
  width: 100%;
}
.newsletter-input-row {
  display: flex;
  gap: 8px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 6px;
  transition: border-color 0.3s;
}
.newsletter-input-row:focus-within {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(232,180,160,0.1);
}
.newsletter-input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 14px 18px;
  color: var(--ink);
  font-size: 15px;
  font-family: var(--font-sans);
  outline: none;
  min-width: 0;
}
.newsletter-input::placeholder { color: var(--ink-3); }
.newsletter-btn {
  background: linear-gradient(135deg, var(--rose), #c4856f);
  color: var(--bg);
  border: 0;
  padding: 14px 22px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.newsletter-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,180,160,0.25);
}
.newsletter-btn:active { transform: translateY(0); }
.newsletter-fineprint {
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.3px;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 860px) {
  .newsletter-band { padding: 60px 0; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 36px; }
  .newsletter-input-row { flex-direction: column; padding: 8px; }
  .newsletter-input { width: 100%; padding: 12px 14px; }
  .newsletter-btn { width: 100%; justify-content: center; padding: 14px; }
}
