/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--navy);
  color: #f8fafc;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ── VARS ── */
:root {
  --navy: #374b54;
  --slate: #2e3f48;
  --slate-l: #3a4e58;
  --gold: #edaa14;
  --gold-d: #c98e0e;
  --amber-light: #f9cb5a;
  --white: #f8fafc;
  --light: #d9d9d9;
  --muted: #839aa2;
  --border: rgba(237, 170, 20, 0.22);
  --border-subtle: rgba(255, 255, 255, 0.07);
  --navy-rgb: 55, 75, 84;
  --gold-rgb: 237, 170, 20;
  --nav-h: 72px;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--navy);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}

/* ── TYPOGRAPHY ── */
.pf {
  font-family: "Playfair Display", serif;
}
.news-section {
  padding: 80px 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.news-card {
  background: var(--navy);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-content {
  padding: 20px;
}

.news-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.news-content p {
  font-size: 0.9rem;
  color: var(--muted);
}

.news-content a {
  display: inline-block;
  margin-top: 15px;
  color: #d4af37;
  text-decoration: none;
  font-weight: 500;
}

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes pulseGold {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(var(--gold-rgb), 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(var(--gold-rgb), 0);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes progFill {
  from {
    width: 0;
  }
  to {
    width: var(--w);
  }
}

/* ── UTILITY ── */
.shimmer-text {
  background: linear-gradient(
    90deg,
    var(--gold) 0%,
    var(--amber-light) 40%,
    var(--gold) 60%,
    var(--gold-d) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  
}

.gold-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 14px 0 22px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6%;
}
.inview {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.inview.visible {
  opacity: 1;
  transform: none;
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 30px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.contact-map {
  min-height: 500px;
  border-radius: 10px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(var(--gold-rgb), 0.3);
}
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 30px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  margin-top: 20px;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════
   NAVBAR  
════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(var(--navy-rgb), 0.15);
  backdrop-filter: blur(4px);
  transition:
    background 0.4s,
    backdrop-filter 0.4s,
    box-shadow 0.4s;
}
#navbar.scrolled {
  background: rgba(var(--navy-rgb), 0.95);
  backdrop-filter: blur(22px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-box {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo-box img {
  border-radius: 30px;
}
.nav-brand {
  line-height: 1;
}
.nav-brand-main {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 4px;
}
.nav-brand-sub {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.3s;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.caret {
  display: inline-block;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.has-dropdown:hover .caret,
.has-dropdown.open .caret {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown-wrap {
  position: relative;
}
.dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  min-width: 220px;
  background: var(--slate);
  border: 1px solid var(--border);
  animation: slideDown 0.25s ease;
  display: none;
  z-index: 200;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.dropdown.open {
  display: block;
}
.dropdown a {
  display: block;
  padding: 13px 20px;
  font-size: 0.82rem;
  color: var(--muted);
  transition: all 0.2s;
  border-left: 2px solid transparent;
  letter-spacing: 0.05em;
}
.dropdown a:hover {
  color: var(--white);
  background: rgba(var(--gold-rgb), 0.08);
  border-left-color: var(--gold);
}

/* CTA button in nav */
.nav-cta {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy);
  background: var(--gold);
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition: all 0.3s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: transparent;
  color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.35s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 998;
  background: var(--navy);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 1.8rem;
}
.mobile-menu.open {
  display: flex;
  animation: fadeIn 0.3s ease;
  
}
.mobile-menu a,
.mobile-menu button.mob-link {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--white);
  background: none;
  border: none;


}


/* ════════════════════════════════════════════════════
   HERO SECTION  (full-screen, bg slideshow, CTAs)
════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.active {
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(var(--navy-rgb), 0.75);
}
/* Gold vertical accent line */
.hero-accent-line {
  display: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  width: 100%;
  padding: 0 6%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  margin-top: 75px;
  animation: fadeIn 0.7s ease both;
}
.hero-eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero-eyebrow-text {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font: 11.2px "DM Sans", sans-serif;
  font-weight: 500;
}
.hero-heading {
  padding-top: 2.8rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  max-width: 860px;
  text-align: center;
  animation: fadeUp 0.9s 0.2s ease both;
}
.hero-sub {
  color: var(--muted);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  max-width: 580px;
  line-height: 1.85;
  margin-top: 22px;
  text-align: center;
  animation: fadeUp 0.9s 0.4s ease both;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 4vw, 52px);
  margin-top: 44px;
  animation: fadeUp 0.9s 0.6s ease both;
  flex-wrap: wrap;
}
.hero-stat-n {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: var(--gold);
  text-align: center;
}
.hero-stat-l {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 3px;
  text-align: center;
}
.hero-dots {
  display: none;
  gap: 8px;
  margin-top: 28px;
  justify-content: center;
  animation: fadeUp 0.9s 0.7s ease both;
}
.hero-dot {
  height: 4px;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2);
  padding: 0;
  transition: all 0.4s;
  border-radius: 0;
}
.hero-dot.active {
  background: var(--gold);
  width: 28px !important;
}
.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.8s ease both;
}

/* ════════════════════════════════════════════════════
   STATS BAR
════════════════════════════════════════════════════ */
#stats-bar {
  background: var(--light);
  padding: 26px 6%;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.stat-item {
  text-align: center;
}
.stat-n {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
}
.stat-l {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(var(--navy-rgb), 0.75);
  margin-top: 2px;
}

/* ════════════════════════════════════════════════════
   PILLARS
════════════════════════════════════════════════════ */
#pillars {
  padding: 96px 6%;
  background: var(--slate);
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 48px;
  background: rgba(255, 255, 255, 0.04);
}
.bento-item {
  background: var(--slate);
  border: 1px solid var(--border-subtle);
  padding: 30px;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.bento-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(var(--gold-rgb), 0.08),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.bento-item:hover {
  border-color: rgba(var(--gold-rgb), 0.4);
  transform: translateY(-4px);
}
.bento-item:hover::before {
  opacity: 1;
}
.bento-icon {
  margin-bottom: 16px;
}
.bento-title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.bento-body {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.75;
}
.bento-line {
  height: 1px;
  background: var(--gold);
  margin-top: 20px;
  width: 0;
  transition: width 0.5s;
}
.bento-item.visible .bento-line {
  width: 48px;
}

/* ════════════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════════════ */
#services {
  padding: 96px 6%;
  background: var(--navy);
}
.svc-layout {
  display: flex;
  margin-top: 48px;
  gap: 0;
}
.svc-tabs {
  flex: 0 0 248px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.svc-tab {
  padding: 18px 22px;
  border-left: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
  user-select: none;
}
.svc-tab.active {
  border-left-color: var(--gold);
  background: rgba(var(--gold-rgb), 0.08);
}
.svc-tab:hover:not(.active) {
  border-left-color: rgba(var(--gold-rgb), 0.3);
}
.svc-tab-num {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.svc-tab.active .svc-tab-num {
  color: var(--gold);
}
.svc-tab-title {
  font-family: "Playfair Display", serif;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--muted);
}
.svc-tab.active .svc-tab-title {
  color: var(--white);
}
.svc-tab-tag {
  font-size: 0.7rem;
  color: transparent;
  margin-top: 1px;
}
.svc-tab.active .svc-tab-tag {
  color: var(--gold);
}
.svc-panel {
  flex: 1;
  background: var(--slate);
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--border-subtle);
  border-left: none;
  animation: fadeIn 0.4s ease;
}
.svc-icon {
  margin-bottom: 14px;
}
.svc-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.1rem, 2.5vw, 1.9rem);
  font-weight: 700;
  margin: 14px 0 6px;
}
.svc-tag {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.svc-body {
  color: var(--muted);
  line-height: 1.85;
  font-size: 0.92rem;
  max-width: 540px;
  margin-bottom: 28px;
}
.svc-stat-wrap {
  padding: 16px 20px;
  background: rgba(var(--gold-rgb), 0.07);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.svc-stat-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.svc-stat-label {
  font-size: 0.75rem;
  color: var(--muted);
}
.svc-stat-val {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}
.svc-bar-track {
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
}
.svc-bar-fill {
  height: 100%;
  background: var(--gold);
  animation: progFill 0.9s ease forwards;
}
.svc-pts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.svc-pt {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
}

/* ════════════════════════════════════════════════════
   PORTFOLIO
════════════════════════════════════════════════════ */
#portfolio {
  padding: 96px 6%;
  background: var(--slate);
}
.port-controls {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.filter-btn {
  padding: 7px 16px;
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: "DM Sans", sans-serif;
  transition: all 0.3s;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.view-btns {
  display: flex;
  gap: 6px;
}
.form-message {
  margin: 10px 0;
  font-size: 0.9rem;
  font-weight: 600;
}
.view-btn {
  padding: 8px 16px;
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: "DM Sans", sans-serif;
  transition: all 0.3s;
}
.view-btn.active {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
/* Grid cards */
.port-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.port-card {
  background: var(--navy);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
}
.port-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border-color: var(--gold);
}
.port-thumb {
  position: relative;
  height: 170px;
  overflow: hidden;
}
.port-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.port-card:hover .port-thumb img {
  transform: scale(1.06);
}
.port-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(var(--navy-rgb), 0.5);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.port-card:hover .port-thumb-overlay {
  opacity: 1;
}
.port-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 9px;
}
.port-tag.in-prog {
  color: var(--gold);
  border: 1px solid var(--gold);
  background: rgba(var(--navy-rgb), 0.88);
}
.port-tag.done {
  background: var(--gold);
  color: var(--navy);
}
.port-info {
  padding: 16px 18px 20px;
}
.port-title {
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.port-loc {
  font-size: 0.73rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.port-nums {
  display: flex;
  justify-content: space-between;
}
.port-num-label {
  font-size: 0.62rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.port-num-val {
  font-family: "Playfair Display", serif;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
}
/* List view */
.port-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.port-list-item {
  display: flex;
  background: var(--navy);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: border-color 0.3s;
}
.port-list-item:hover {
  border-color: var(--gold);
}
.port-list-thumb {
  width: 110px;
  height: 76px;
  flex-shrink: 0;
  overflow: hidden;
}
.port-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.port-list-body {
  flex: 1;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.port-list-title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 0.94rem;
}
.port-list-loc {
  font-size: 0.72rem;
  color: var(--muted);
}
.port-list-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.port-status {
  font-size: 0.62rem;
  font-weight: 600;
  padding: 3px 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.port-status.done {
  background: var(--gold);
  color: var(--navy);
}

/* Lightbox */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#lightbox.open {
  display: flex;
  animation: fadeIn 0.3s ease;
}
.lb-wrap {
  background: var(--slate);
  max-width: 680px;
  width: 100%;
  border: 1px solid var(--border);
  max-height: 90vh;
  overflow-y: auto;
  animation: fadeUp 0.35s ease;
}
.lb-img {
  position: relative;
  height: 300px;
}
.lb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lb-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(var(--navy-rgb), 0.82);
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  color: var(--white);
}
.lb-body {
  padding: 24px 28px;
}
.lb-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.lb-loc {
  font-size: 0.76rem;
  color: var(--muted);
  margin-bottom: 14px;
}
.lb-desc {
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.88rem;
  margin-bottom: 22px;
}
.lb-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 16px 20px;
  background: rgba(var(--gold-rgb), 0.07);
  border: 1px solid var(--border);
  margin-bottom: 22px;
}
.lb-meta-label {
  font-size: 0.62rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 3px;
}
.lb-meta-val {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--gold);
}
.lb-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════════════════
   FOUNDER
════════════════════════════════════════════════════ */
#about {
  padding: 96px 6%;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#about::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(
    ellipse at left,
    rgba(var(--gold-rgb), 0.05),
    transparent 70%
  );
  pointer-events: none;
}
.founder-split {
  display: flex;
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}
.founder-img-wrap {
  flex: 0 0 clamp(220px, 34%, 380px);
  position: relative;
}
.founder-img-box {
  height: clamp(280px, 40vw, 460px);
  overflow: hidden;
  border: 1px solid var(--border);
}
.founder-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}
.founder-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--gold);
  padding: 18px 22px;
  animation: pulseGold 3s ease infinite;
}
.founder-badge-n {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.founder-badge-l {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 3px;
}
.founder-status {
  position: absolute;
  top: -18px;
  left: -18px;
  background: var(--slate);
  border: 1px solid var(--border);
  padding: 12px 16px;
}
.founder-status-label {
  font-size: 0.62rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
}
.founder-status-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
}
.founder-text {
  flex: 1;
}
.founder-tabs {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}
.founder-tab {
  padding: 9px 18px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.78rem;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.3s;
}
.founder-tab.active {
  color: var(--white);
  font-weight: 600;
  border-bottom-color: var(--gold);
}
.founder-tab-panel {
  display: none;
  color: var(--muted);
  line-height: 1.9;
  font-size: 0.93rem;
  margin-bottom: 28px;
  animation: fadeIn 0.4s ease;
}
.founder-tab-panel.active {
  display: block;
}
.founder-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 28px;
}
.founder-stat {
  border-left: 2px solid var(--gold);
  padding-left: 14px;
}
.founder-stat-n {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
}
.founder-stat-l {
  font-size: 0.74rem;
  color: var(--muted);
  margin-top: 2px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.news-card {
  background: var(--navy);
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.news-card:hover {
  transform: translateY(-6px);
  border-color: #d4af37;
}

.news-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.news-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.news-content {
  padding: 24px;
}

.news-content h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-content p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

.read-more {
  display: inline-block;
  margin-top: 15px;
  font-size: 0.9rem;
  color: #d4af37;
  font-weight: 500;
}

/* ════════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════════ */
#testimonials {
  padding: 96px 6%;
  background: var(--slate);
}
.test-main {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 44px 36px;
  background: var(--navy);
  border: 1px solid var(--border);
}
.test-quote-icon {
  margin-bottom: 14px;
}
.test-text {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 22px;
  color: var(--white);
}
.test-stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-bottom: 14px;
}
.test-name {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 0.95rem;
}
.test-role {
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 3px;
}
.test-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.test-dot {
  height: 4px;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2);
  padding: 0;
  transition: all 0.4s;
}
.test-dot.active {
  background: var(--gold);
  width: 28px !important;
}
.test-cards {
  display: flex;
  gap: 16px;
  margin-top: 44px;
}
.test-card {
  flex: 1;
  background: var(--navy);
  border: 1px solid var(--border-subtle);
  padding: 22px 20px;
  cursor: pointer;
  transition: all 0.3s;
}
.test-card:hover,
.test-card.active {
  border-color: var(--border);
}
.test-card-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
}
.test-card-text {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.65;
  margin-bottom: 12px;
  font-style: italic;
}
.test-card-name {
  font-size: 0.8rem;
  font-weight: 600;
}
.test-card-role {
  font-size: 0.7rem;
  color: var(--muted);
}
#section-label-review {
  font-size: 1.05rem;

  margin-bottom: 1.3rem;
}
.review-success-box {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 220px;
  padding: 28px;
  text-align: center;
  border-radius: 18px;
  background: rgba(237, 170, 20, 0.08);
  border: 1px solid rgba(237, 170, 20, 0.24);
  color: var(--white);
}

.review-success-box.show {
  display: flex;
}

.review-success-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-weight: 800;
  flex-shrink: 0;
}

.review-success-box strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.review-success-box p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
/* ════════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════════ */
#contact {
  padding: 96px 6%;
  background: var(--navy);
}
.contact-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 36px;
  margin-bottom: 48px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: flex-end;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-icon-box {
  width: 38px;
  height: 38px;
  background: rgba(var(--gold-rgb), 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-label {
  font-size: 0.66rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.contact-info-val {
  font-size: 0.86rem;
  color: var(--white);
}
.contact-form {
  background: var(--slate);
  border: 1px solid var(--border-subtle);
  padding: clamp(24px, 5vw, 52px);
}
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.3s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group select option {
  background: var(--slate);
  color: var(--white);
}
.form-group textarea {
  resize: vertical;
}
.form-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.form-note {
  color: var(--muted);
  font-size: 0.74rem;
  max-width: 320px;
}
.form-success {
  text-align: center;
  padding: 72px 36px;
  background: var(--slate);
  border: 1px solid var(--border);
  display: none;
}
.success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(var(--gold-rgb), 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.mail-to:hover {
  text-decoration: underline;
  color: var(--gold);
  transition: 0.3s;
}

/* ════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
footer {
  background: #243038;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 6% 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(22px, 4vw, 52px);
  margin-bottom: 40px;
}
.footer-brand-name {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: var(--white);
}
.footer-brand-sub {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}
.footer-desc {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.8;
  max-width: 260px;
  margin: 16px 0 20px;
}
.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 9px;
}
.footer-contact-row span {
  color: var(--muted);
  font-size: 0.8rem;
}
.footer-col-title {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-link {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 10px;
  transition: color 0.3s;
}
.footer-link:hover {
  color: var(--white);
}
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom span {
  color: var(--muted);
  font-size: 0.74rem;
}
/* BLOG POST PAGE */

.blog-container {
  max-width: 900px;
  margin: auto;
  padding: 80px 20px;
  color: #eaeaea;
  font-family: "Inter", sans-serif;
}

/* Title */

#post-title {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 30px;
  font-weight: 600;
}

/* Featured Image */

.post-featured-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 40px;
  object-fit: cover;
}

/* Content Styling */

#post-content {
  font-size: 17px;
  line-height: 1.9;
  color: #cfcfcf;
}

/* Paragraph spacing */

#post-content p {
  margin-bottom: 20px;
}

/* Headings */

#post-content h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #ffffff;
}

#post-content h3 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 10px;
}

/* Quote styling */

#post-content blockquote {
  border-left: 4px solid #d4af37;
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  color: #bdbdbd;
}

/* Images inside post */

#post-content img {
  width: 100%;
  border-radius: 8px;
  margin: 30px 0;
}

/* Lists */

#post-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

#post-content li {
  margin-bottom: 10px;
}

/* Links */

#post-content a {
  color: #d4af37;
  text-decoration: none;
}

#post-content a:hover {
  text-decoration: underline;
}

/* ════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .port-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
  }
  .hamburger {
    display: flex;
  }
  .nav-links,
  .nav-cta-wrap {
    display: none !important;
  }
  .bento-grid {
    grid-template-columns: 1fr !important;
  }
  .svc-layout {
    flex-direction: column !important;
  }
  .svc-tabs {
    flex: none !important;
    width: 100% !important;
    border-left: none !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    display: flex;
    overflow-x: auto;
  }
  .svc-tab {
    flex-shrink: 0;
    border-left: none !important;
    border-bottom: 2px solid transparent;
  }
  .svc-tab.active {
    border-bottom-color: var(--gold) !important;
    border-left: none !important;
  }
  .svc-panel {
    border-left: 1px solid var(--border-subtle) !important;
  }
  .port-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .founder-split {
    flex-direction: column !important;
  }
  .founder-img-wrap {
    flex: none !important;
    width: 100% !important;
  }
  .test-cards {
    display: none !important;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .contact-top {
    flex-direction: column !important;
  }
  .lb-meta {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .hero-accent-line {
    display: none;
  }
  .blog-container {
    padding: 60px 18px;
  }

  #post-title {
    font-size: 30px;
  }

  #post-content {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .port-grid {
    grid-template-columns: 1fr !important;
  }
  .hero-heading {
    text-align: left;
  }
  #hero {
    justify-content: flex-start;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-map {
    height: 400px;
  }
  .hero-stats {
    gap: 16px !important;
  }
  .hero-ctas {
    flex-direction: column !important;
    width: 100%;
  }
  .hero-ctas a,
  .hero-ctas button {
    text-align: center;
  }
  .hero-sub {
    text-align: left;
    color: #eaeaea;
    font: 15.2px "DM Sans", sans-serif;
  }
  
  .hero-eyebrow {
    justify-content: flex-start;
    margin-bottom: 16px;
    margin-top: 16px;
  }
  .hero-eyebrow-line {
    width: 22px;
  }
  .hero-eyebrow-text {
    font-size: 0.5rem;
    text-align: left;
  }
  .svc-pts {
    grid-template-columns: 1fr !important;
  }
}

/* ── GLOBAL NAV / MOBILE FIXES ───────────────────────────────────────────── */
.hamburger {
  position: relative;
  z-index: 1001;
}
.mob-nav-link {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
}
.hero-ctas {
  align-items: center;
}
.contact-phone {
  color: var(--gold);
  font-weight: 600;
}

.before-after-text {
  color: var(--light);
  line-height: 1.8;
}
.before-after-stage {
  display: grid;
  border: 2px solid var(--gold);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 2rem;
  gap: 16px;
  margin: 50px;
}
.before-after-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--slate);
  min-height: 250px;
  border: 1px solid var(--border-subtle);
}
.before-after-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.before-after-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(var(--navy-rgb), 0.76);
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.before-after-arrow {
  color: var(--gold);
  font-size: 2rem;
  font-weight: 700;
}

/* ── BLOG PAGE ───────────────────────────────────────────────────────────── */
.blog-page {
  min-height: 100vh;
  padding-top: calc(var(--nav-h) + 36px);
  padding-bottom: 80px;
  background: linear-gradient(
    180deg,
    rgba(var(--gold-rgb), 0.06) 0%,
    rgba(var(--navy-rgb), 0.96) 22%,
    var(--navy) 100%
  );
}
.blog-hero {
  padding: 28px 0 22px;
}
.blog-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  color: var(--white);
  margin-bottom: 14px;
}
.blog-subtitle {
  max-width: 760px;
  color: var(--light);
  line-height: 1.8;
  font-size: 1rem;
}
.blog-toolbar {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}
.blog-count {
  color: var(--muted);
  font-size: 0.92rem;
}
.blog-search {
  width: min(360px, 100%);
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  padding: 12px 16px;
}
.blog-search input {
  width: 100%;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
}
.blog-search input::placeholder {
  color: var(--muted);
}
.blog-listing {
  margin-top: 28px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.blog-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}
.blog-card-link {
  display: block;
}
.blog-card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: var(--slate);
}
.blog-card-content {
  padding: 22px;
}
.blog-card-date {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.blog-card-title {
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--white);
  margin-bottom: 12px;
}
.blog-card-excerpt {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}
.blog-card-more {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.92rem;
}
.blog-empty,
.blog-loading,
.blog-error {
  padding: 40px 0;
  text-align: center;
  color: var(--light);
}
.blog-pagination {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.blog-pagination button {
  min-width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  cursor: pointer;
  transition: 0.25s ease;
  font-weight: 600;
}
.blog-pagination button:hover,
.blog-pagination button.active {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* ── ARTICLE PAGE ────────────────────────────────────────────────────────── */
.article-page {
  min-height: 100vh;
  background: linear-gradient(
    180deg,
    rgba(var(--gold-rgb), 0.08) 0%,
    rgba(var(--navy-rgb), 0.96) 18%,
    var(--navy) 100%
  );
}
.article-shell {
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 120px 0 80px;
}
.back-row {
  margin-bottom: 24px;
}
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
  backdrop-filter: blur(8px);
}
.back-btn:hover {
  transform: translateX(-4px);
  border-color: var(--gold);
  background: rgba(var(--gold-rgb), 0.12);
  color: var(--gold);
}
.article-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}
.article-image-wrap {
  position: relative;
  width: 100%;
  height: clamp(240px, 45vw, 520px);
  overflow: hidden;
  background: var(--slate);
}
.article-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(var(--navy-rgb), 0.06) 0%,
    rgba(var(--navy-rgb), 0.16) 45%,
    rgba(var(--navy-rgb), 0.72) 100%
  );
  pointer-events: none;
}
#post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.article-head {
  padding: 34px 34px 18px;
}
.article-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(var(--gold-rgb), 0.14);
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}
#post-title {
  margin: 0 0 14px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  color: var(--white);
}
.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--light);
  font-size: 0.92rem;
}
.article-meta .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}
.article-body {
  padding: 0 34px 40px;
}
#post-content {
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--light);
}
#post-content p {
  margin: 0 0 1.25rem;
}
#post-content h1,
#post-content h2,
#post-content h3,
#post-content h4,
#post-content h5,
#post-content h6 {
  font-family: "Playfair Display", serif;
  color: var(--white);
  line-height: 1.25;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
#post-content h2 {
  font-size: 1.8rem;
}
#post-content h3 {
  font-size: 1.4rem;
}
#post-content ul,
#post-content ol {
  padding-left: 1.4rem;
  margin: 0 0 1.25rem;
}
#post-content li {
  margin-bottom: 0.65rem;
}
#post-content a {
  color: var(--gold);
}
#post-content a:hover {
  text-decoration: underline;
}
#post-content img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  margin: 1.5rem 0;
}
#post-content blockquote {
  margin: 1.6rem 0;
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0 14px 14px 0;
  color: var(--white);
  font-style: italic;
}
.article-loading,
.article-error {
  padding: 60px 24px;
  text-align: center;
  color: var(--light);
}
.article-error a {
  color: var(--gold);
}

/* ── TESTIMONIALS + REVIEWS ─────────────────────────────────────────────── */
.testimonials-head {
  text-align: center;
  margin-bottom: 48px;
}
.testimonial-label {
  display: inline-block;
}
.testimonials-line {
  margin-left: auto;
  margin-right: auto;
}
.testimonials-title {
  font-size: clamp(2rem, 3.5vw, 1.7rem);
  font-weight: 700;
}
.testimonials-sub {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--light);
  line-height: 1.8;
}
.review-split {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 28px;
  margin-top: 42px;
}
.review-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 28px;
}
.review-panel-title {
  margin: 10px 0 14px;
  font-size: 1.75rem;
}
.review-panel-copy {
  color: var(--light);
  line-height: 1.8;
}
.review-text {
  margin-top: 10px;
  font-size: 0.9rem;
  /*text-align: center;*/
}

.review-form .form-group label {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 0.72rem;
}
.review-row {
  gap: 20px;
}
.review-row-slim {
  grid-template-columns: 0.6fr 1.4fr;
}
.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  padding: 14px 16px;
  font: inherit;
}
.review-form textarea {
  resize: vertical;
  min-height: 140px;
}
.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
}
.review-message {
  color: var(--muted);
  font-size: 0.94rem;
}
.review-message.success {
  color: var(--gold);
}
.review-steps {
  display: grid;
  gap: 14px;
  color: var(--light);
}
.review-steps li {
  position: relative;
  padding-left: 20px;
  line-height: 1.7;
}
.review-steps li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.review-split {
  display: flex;
  /* justify-content: center; */
  margin-top: 40px;
}

.review-panel-centered {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  /* text-align: center; */
}

/* .review-form-compact {
  width: 100%;
  max-width: 760px;
  margin: 28px auto 0;
} */

.review-row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.star-rating-body {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px;
}

.star {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 4.2rem;
  padding: 0;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  transition: 1s;
}

/* Filled stars */
.star.active {
  color: var(--gold);
  /* -webkit-text-stroke: 0; */
}

/* Hover effect */
/* .star:hover {
  transform: scale(1.1);
} */

/* .star:hover {
  transform: scale(1.08);
  transition: 2s;
} */

.review-form-compact textarea {
  min-height: 120px;
  resize: vertical;
}

.review-actions-centered {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  gap: 12px;
  margin-top: 18px;
}

.review-message {
  min-height: 24px;
  /* text-align: center; */
}

@media (max-width: 768px) {
  .review-panel-centered,
  .review-form-compact {
    max-width: 100%;
  }

  .review-row-two {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .star {
    font-size: 1.8rem;
  }
}

@media (max-width: 900px) {
  .before-after-feature,
  .review-split {
    grid-template-columns: 1fr;
  }
  .before-after-stage {
    grid-template-columns: 1fr;
  }
  .before-after-arrow {
    display: none;
  }
}
@media (max-width: 768px) {
  .blog-page {
    padding-top: calc(var(--nav-h) + 18px);
  }
  .blog-toolbar {
    align-items: stretch;
  }
  .blog-search,
  .article-shell {
    width: 100%;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-card-image {
    height: 220px;
  }
  .article-shell {
    width: min(94%, 1100px);
    padding: 96px 0 60px;
  }
  .article-card {
    border-radius: 20px;
  }
  .article-head {
    padding: 24px 20px 14px;
  }
  .article-body {
    padding: 0 20px 28px;
  }
  #post-title {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
  }
  #post-content {
    font-size: 1rem;
    line-height: 1.8;
  }
  .back-btn {
    padding: 10px 15px;
    font-size: 0.88rem;
  }
}
@media (max-width: 480px) {
  .article-shell {
    width: 92%;
    padding-top: 88px;
  }
  .article-image-wrap,
  .before-after-card {
    height: 220px;
    min-height: 220px;
  }
  .article-meta {
    gap: 8px;
    font-size: 0.84rem;
  }
  .review-panel {
    padding: 22px 18px;
  }
}

/* === 2026 cleanup overrides === */
body,
button,
input,
textarea,
select {
  font-family: "Playfair Display", serif;
}

section {
  scroll-margin-top: calc(var(--nav-h) + 16px);
}

img {
  max-width: 100%;
  height: auto;
}

.before-after-feature {
  margin: 42px 0 10px;
}

.before-after-head {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 18px;
}

.before-after-title {
  color: var(--white);
  margin: 10px 0 8px;
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
}

.before-after-text {
  max-width: 680px;
  margin: 0 auto;
}

.before-after-slider {
  position: relative;
  width: min(100%, 1080px);
  aspect-ratio: 1;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.before-after-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.before-after-overlay {
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  overflow: hidden;
  border-right: 1px solid rgba(212, 175, 55, 0.35);
}

.before-after-overlay .before-after-image {
  width: 100vw;
  max-width: none;
}

.before-after-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0;
  transform: translateX(-50%);
  border-left: 2px solid var(--gold);
  pointer-events: none;
}

.before-after-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(var(--navy-rgb), 0.92);
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  font-size: 1.1rem;
}

.before-after-badge {
  top: 18px;
}

.before-label {
  left: 18px;
}

.after-label {
  left: auto;
  right: 18px;
}

.before-after-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.review-text {
  max-width: 640px;
  margin: 0 auto;
  color: var(--light);
  line-height: 1.8;
}

.review-form-compact {
  max-width: 860px;
}

.review-form textarea {
  min-height: 128px;
}

.star-rating {
  margin-top: 8px;
  margin-bottom: 14px;
}

.star {
  line-height: 1;
  font-size: 3rem;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--gold);
  text-shadow: 0 0 0 transparent;
}

.star.active {
  color: var(--gold);
}

.article-shell {
  width: min(1320px, 94%);
  padding: calc(var(--nav-h) + 38px) 0 90px;
}

.article-card {
  max-width: 1180px;
  margin: 0 auto;
}

.article-head,
.article-body {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(24px, 5vw, 60px);
  padding-right: clamp(24px, 5vw, 60px);
}

.article-image-wrap {
  max-width: 1120px;
  margin: 0 auto;
}

#post-content {
  font-size: clamp(1.05rem, 1.1vw, 1.14rem);
  line-height: 1.95;
}

.blog-grid {
  align-items: stretch;
}

.blog-card-content,
.test-card,
.review-panel {
  backdrop-filter: blur(8px);
}

@media (max-width: 900px) {
  .before-after-slider {
    aspect-ratio: 4 / 3;
    border-radius: 22px;
  }

  .article-shell {
    width: min(96%, 1320px);
  }
}

@media (max-width: 768px) {
  .before-after-feature {
    margin-top: 32px;
  }

  .before-after-slider {
    aspect-ratio: 1 / 1;
  }

  .before-after-handle {
    width: 50px;
    height: 50px;
  }

  .star {
    font-size: 2.35rem;
  }

  .article-head,
  .article-body {
    padding-left: 20px;
    padding-right: 20px;
  }
}


/* WordPress review + before/after cleanup */
.before-after-badge {
  display: none !important;
}

.hero-ctas {
  align-items: center;
}

.hero-ctas a,
.hero-ctas button,
.btn-gold,
.btn-outline {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline {
  margin-top: 0 !important;
}

@media (max-width: 768px) {
  .hero-ctas a,
  .hero-ctas button,
  .btn-gold,
  .btn-outline {
    min-height: 48px;
    width: 100%;
  }
}
#section-label-rev{
    text-align: center;
    font-weight: 700;
}