/* =========================================================
   GOLDEN DETAIL – Premium Redesign · style.css
   ========================================================= */

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #C8A94A;
  --gold-light: #E8C96E;
  --gold-dark: #9A7A2A;
  --black: #080808;
  --bg: #0D0D0D;
  --bg2: #111111;
  --bg3: #161616;
  --surface: #1A1A1A;
  --surface2: #222222;
  --border: rgba(200, 169, 74, .3);
  --text: #FFFFFF;
  --text-muted: #FFFFFF;
  --white: #FFFFFF;
  --font-head: 'Montserrat', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: none;
  font-family: inherit;
  border: none;
  background: none;
}

input,
select,
textarea {
  font-family: inherit;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

/* ---------- CURSOR ---------- */
.cursor,
.cursor-follower {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}

.cursor {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
}

.cursor-follower {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(200, 169, 74, .5);
  transform: translate(-50%, -50%);
  transition: transform .12s var(--ease), width .3s, height .3s, opacity .3s;
}

body:hover .cursor {
  opacity: 1;
}

body.cursor-hover .cursor {
  width: 14px;
  height: 14px;
  background: var(--gold-light);
}

body.cursor-hover .cursor-follower {
  width: 50px;
  height: 50px;
  opacity: .6;
}

/* ---------- TYPOGRAPHY UTILS ---------- */
.section-eyebrow {
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .75rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  font-family: var(--font-serif);
}

.section-sub {
  color: var(--text-muted);
  max-width: 600px;
  font-size: 1.05rem;
  opacity: 0.9;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.section-header .section-sub {
  margin: 0 auto;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 0 2rem;
  height: 52px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: all .3s var(--ease);
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  box-shadow: 0 6px 30px rgba(200, 169, 74, .35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(200, 169, 74, .5);
}

.btn--ghost {
  border: 1.5px solid var(--border);
  color: var(--text);
  background: rgba(200, 169, 74, .04);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200, 169, 74, .08);
}

.btn--block {
  width: 100%;
  justify-content: center;
}

/* ---------- FLOATING CONTACT BUTTONS ---------- */
.floating-contact {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 990;
}

.fbtn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.fbtn svg {
  width: 24px;
  height: 24px;
}

.fbtn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

.fbtn--phone {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.fbtn--sms {
  background: #34b7f1;
  color: #fff;
}

.fbtn--whatsapp {
  background: #25D366;
  color: #fff;
}

@media (max-width: 768px) {
  .floating-contact {
    bottom: 1.5rem;
    right: 1.5rem;
    gap: 0.75rem;
  }
  .fbtn {
    width: 48px;
    height: 48px;
  }
  .fbtn svg {
    width: 20px;
    height: 20px;
  }
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) {
  transition-delay: .1s;
}

.reveal:nth-child(3) {
  transition-delay: .18s;
}

.reveal:nth-child(4) {
  transition-delay: .26s;
}

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 1.25rem 0;
  transition: background .4s var(--ease), padding .4s, box-shadow .4s;
}

.header.scrolled {
  background: rgba(8, 8, 8, .92);
  backdrop-filter: blur(20px) saturate(1.5);
  padding: .8rem 0;
  box-shadow: 0 1px 0 var(--border);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__logo {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.logo-gold {
  color: var(--gold);
}

.logo-thin {
  color: var(--white);
  font-weight: 400;
  letter-spacing: .18em;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
}

.nav__link {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .5rem .9rem;
  border-radius: 100px;
  transition: color .2s, background .2s;
  color: var(--text-muted);
}

.nav__link:hover {
  color: var(--gold);
}

.nav__link--cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black) !important;
  padding: .5rem 1.25rem;
  font-weight: 700;
}

.nav__link--cta:hover {
  opacity: .88;
  transform: none;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  margin-left: auto;
  border-radius: 8px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s var(--ease);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, #1A1200 0%, var(--black) 70%),
    linear-gradient(160deg, #0D0900 0%, #080808 50%, #0A0A0A 100%);
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 70% 50%, rgba(200, 169, 74, .12) 0%, transparent 70%);
}

.hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 740px;
  padding: clamp(3rem, 8vh, 6rem) clamp(1.25rem, 5vw, 3rem);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--gold);
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  opacity: 0.95;
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.hero__stat {
  display: flex;
  flex-direction: column;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.stat-number {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat-plus {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  vertical-align: super;
}

.stat-label {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: .3rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  opacity: .6;
  transition: opacity .3s;
}

.hero__scroll:hover {
  opacity: 1;
}

.hero__scroll-dot {
  width: 1.5px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: .3;
    transform: scaleY(.6)
  }

  50% {
    opacity: 1;
    transform: scaleY(1)
  }
}

/* Particle canvas helper */
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  animation: particleDrift var(--dur, 8s) ease-in-out infinite var(--del, 0s);
  opacity: 0;
}

@keyframes particleDrift {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(.5);
  }

  20% {
    opacity: var(--op, .6);
  }

  80% {
    opacity: var(--op, .4);
  }

  100% {
    opacity: 0;
    transform: translate(var(--tx, 30px), var(--ty, -80px)) scale(1);
  }
}

/* =========================================================
   PILLARS
   ========================================================= */
.pillars {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: var(--bg2);
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
}

.pillar {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  transition: background .3s;
}

.pillar:last-child {
  border-right: none;
}

.pillar:hover {
  background: rgba(200, 169, 74, .04);
}

.pillar__icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.pillar__icon svg {
  width: 100%;
  height: 100%;
}

.pillar h3 {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--white);
  margin-bottom: .75rem;
}

.pillar p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =========================================================
   SERVICES
   ========================================================= */
.services {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: var(--black);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.scard {
  position: relative;
  padding: 2.5rem;
  background: var(--bg);
  transition: background .4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.scard:hover {
  background: var(--bg3);
}

.scard--featured {
  background: linear-gradient(135deg, #1A1300, #0D0D0D);
}

.scard--featured:hover {
  background: linear-gradient(135deg, #1e1500, #111);
}

.scard__badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 100px;
}

.scard__num {
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--gold);
  opacity: .6;
}

.scard__icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
}

.scard__img {
  width: 100%;
  height: 180px;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid var(--border);
}

.scard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.scard:hover .scard__img img {
  transform: scale(1.15);
}

.scard__icon svg {
  width: 100%;
  height: 100%;
}

.scard h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.scard p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.scard__link {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap .2s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: .5rem;
}

.scard__link:hover {
  gap: .75rem;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

.about__deco {
  position: absolute;
  top: 50%;
  left: -2%;
  transform: translateY(-50%);
  font-family: var(--font-head);
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200, 169, 74, .06);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.about__img-wrap {
  position: relative;
}

.about__img-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--surface), var(--surface2));
  position: relative;
}

.about__img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--gold);
  opacity: .4;
}

.about__img-placeholder svg {
  width: 80px;
  height: 80px;
}

.about__img-placeholder span {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.about__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(200, 169, 74, .4);
}

.badge-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
}

.badge-lbl {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.about__cert {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding: 1rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
}

.cert-mark {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.2;
  letter-spacing: .05em;
}

.about__cert span {
  font-size: .8rem;
  color: var(--text-muted);
  letter-spacing: .06em;
}

.about__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about__body p {
  color: var(--text-muted);
  line-height: 1.8;
}

.about__body p strong {
  color: var(--gold);
}

.about__values {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin: .5rem 0;
}

.about__values li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  color: var(--text);
}

.vdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* =========================================================
   PROCESS
   ========================================================= */
.process {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: var(--black);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
  margin-top: 1rem;
}

.process__line {
  display: none;
  position: absolute;
  top: 2rem;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .3;
}

.pstep {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pstep__num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200, 169, 74, .35);
  line-height: 1;
}

.pstep__body h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.pstep__body p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: var(--bg2);
}

.gallery__wrap {
  margin: 2rem 0 2.5rem;
  overflow: hidden;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 3px;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  max-width: 1240px;
  margin: 0 auto;
}

.gitem {
  border-radius: 0;
  overflow: hidden;
  position: relative;
}

.gitem--tall {
  grid-row: span 2;
}

.gitem--wide {
  grid-column: span 2;
}

.gitem__inner {
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
  transition: transform .5s var(--ease);
}

.gitem:hover .gitem__inner {
  transform: scale(1.04);
}

.gitem__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 169, 74, .08) 0%, transparent 60%);
  pointer-events: none;
}

.gitem__inner span {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  background: rgba(0, 0, 0, .5);
  padding: .3rem .75rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, .08);
  position: relative;
  z-index: 1;
}

.gallery__cta {
  text-align: center;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: var(--black);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.tcard {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color .3s, transform .3s;
}

.tcard:hover {
  border-color: rgba(200, 169, 74, .4);
  transform: translateY(-4px);
}

.tcard__stars {
  color: var(--gold);
  letter-spacing: .1em;
}

.tcard p {
  font-size: .95rem;
  color: var(--text-muted);
  font-style: italic;
  flex: 1;
  line-height: 1.75;
}

.tcard footer {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: .5rem;
}

.tcard__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  font-weight: 900;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tcard footer strong {
  display: block;
  font-weight: 700;
  color: var(--white);
  font-size: .9rem;
}

.tcard footer span {
  font-size: .78rem;
  color: var(--text-muted);
}

/* =========================================================
   BLOG
   ========================================================= */
.blog {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: var(--bg2);
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.blog__empty {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--text-muted);
  border: 1.5px dashed rgba(200, 169, 74, .2);
  border-radius: var(--radius-lg);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.blog__empty.show {
  display: flex;
}

.blog__empty svg {
  width: 56px;
  height: 56px;
  color: var(--gold);
  opacity: .35;
}

.blog__empty p {
  font-size: 1rem;
}

.blog__empty strong {
  color: var(--gold);
}

/* Blog Post Card */
.bcard {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), border-color .3s, box-shadow .4s;
  cursor: none;
}

.bcard:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 169, 74, .35);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.bcard__cover {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg3), var(--surface2));
  position: relative;
}

.bcard__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.bcard:hover .bcard__cover img {
  transform: scale(1.06);
}

.bcard__cover-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  color: var(--gold);
  opacity: .25;
}

.bcard__cover-placeholder svg {
  width: 48px;
  height: 48px;
}

.bcard__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  flex: 1;
}

.bcard__meta {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.bcard__cat {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: .2rem .7rem;
  border-radius: 100px;
}

.bcard__date {
  font-size: .78rem;
  color: var(--text-muted);
  margin-left: auto;
}

.bcard__title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}

.bcard__excerpt {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.bcard__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: .25rem;
}

.bcard__read {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: gap .2s;
}

.bcard:hover .bcard__read {
  gap: .65rem;
}

.bcard__admin {
  display: flex;
  gap: .5rem;
}

.bcard__edit,
.bcard__delete {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  transition: all .2s;
  cursor: none;
}

.bcard__edit:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.bcard__delete:hover {
  border-color: #e55;
  color: #e55;
}

/* Blog FAB */
.blog-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 800;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-size: 1.6rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 30px rgba(200, 169, 74, .5);
  transition: transform .3s var(--ease-spring), box-shadow .3s;
}

.blog-fab:hover {
  transform: scale(1.12) rotate(45deg);
  box-shadow: 0 10px 40px rgba(200, 169, 74, .7);
}

.blog-fab.active {
  background: var(--surface2);
  color: var(--text);
}

.blog-fab.active:hover {
  transform: scale(1.12) rotate(0deg);
}

/* =========================================================
   BLOG CMS PANEL
   ========================================================= */
.panel-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .7);
  backdrop-filter: blur(8px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}

.panel-backdrop.show {
  opacity: 1;
  pointer-events: all;
}

.blog-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1010;
  width: min(620px, 95vw);
  background: var(--bg2);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  overflow: hidden;
}

.blog-panel.open {
  transform: translateX(0);
}

.blog-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg3);
  flex-shrink: 0;
}

.blog-panel__header h2 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.panel-close {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  cursor: none;
}

.panel-close:hover {
  border-color: #e55;
  color: #e55;
}

.blog-panel__body {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.blog-panel__body::-webkit-scrollbar {
  width: 3px;
}

.blog-panel__body::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
}

.blog-panel__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  padding: 1.25rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg3);
  flex-shrink: 0;
}

/* Form fields inside panel */
.field-group {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field-group label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}

.field-group input,
.field-group select,
.field-group textarea {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  padding: .75rem 1rem;
  font-size: .93rem;
  transition: border-color .2s;
  outline: none;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: var(--gold);
}

.field-group input::placeholder,
.field-group textarea::placeholder {
  color: var(--text-muted);
}

select option {
  background: var(--bg3);
}

/* Cover upload */
.cover-upload {
  border: 1.5px dashed rgba(200, 169, 74, .3);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/7;
  background: var(--bg3);
  transition: border-color .3s, background .3s;
  cursor: pointer;
  position: relative;
}

.cover-upload:hover {
  border-color: var(--gold);
  background: rgba(200, 169, 74, .04);
}

.cover-upload__preview {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  color: var(--text-muted);
  font-size: .85rem;
  pointer-events: none;
}

.cover-upload__preview svg {
  width: 36px;
  height: 36px;
  color: var(--gold);
  opacity: .5;
}

.cover-upload__preview.has-image {
  background: var(--bg3);
}

.cover-upload img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Rich text editor */
.editor-toolbar {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: .5rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: var(--radius) var(--radius) 0 0;
  flex-wrap: wrap;
}

.editor-toolbar button {
  padding: .35rem .6rem;
  border-radius: 6px;
  font-size: .82rem;
  color: var(--text-muted);
  transition: all .2s;
  cursor: none;
  min-width: 30px;
  text-align: center;
}

.editor-toolbar button:hover {
  background: var(--border);
  color: var(--gold);
}

.toolbar-sep {
  width: 1px;
  height: 18px;
  background: var(--border);
  margin: 0 4px;
}

.editor-body {
  min-height: 180px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 1rem;
  font-size: .93rem;
  color: var(--text);
  line-height: 1.75;
  outline: none;
  overflow-y: auto;
}

.editor-body:focus {
  border-color: var(--gold);
}

.editor-body:empty::before {
  content: attr(data-placeholder);
  color: var(--text-muted);
  pointer-events: none;
}

.editor-body h3 {
  color: var(--white);
  margin: .75rem 0 .4rem;
  font-size: 1rem;
}

.editor-body p {
  margin-bottom: .75rem;
  color: var(--text-muted);
}

.editor-body ul {
  padding-left: 1.5rem;
  margin-bottom: .75rem;
}

.editor-body li {
  color: var(--text-muted);
  margin-bottom: .3rem;
}

.editor-body a {
  color: var(--gold);
  text-decoration: underline;
}

/* =========================================================
   POST READER OVERLAY
   ========================================================= */
.post-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s;
}

.post-overlay.open {
  pointer-events: all;
  opacity: 1;
}

.post-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .85);
  backdrop-filter: blur(16px);
}

.post-reader {
  position: relative;
  z-index: 1;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: min(760px, 92vw);
  max-height: 88vh;
  overflow-y: auto;
  transform: scale(.96) translateY(16px);
  transition: transform .4s var(--ease-spring);
}

.post-overlay.open .post-reader {
  transform: scale(1) translateY(0);
}

.post-reader::-webkit-scrollbar {
  width: 3px;
}

.post-reader::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
}

.post-reader__close {
  position: sticky;
  top: 1rem;
  left: 100%;
  float: right;
  margin: 1rem 1rem 0 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  cursor: none;
  z-index: 2;
  background: var(--bg2);
}

.post-reader__close:hover {
  border-color: #e55;
  color: #e55;
}

.post-reader__cover {
  width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.post-reader__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-reader__meta {
  padding: 1.5rem 2rem .5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.post-reader__title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  padding: 0 2rem 1rem;
  line-height: 1.2;
}

.post-reader__body {
  padding: 1rem 2rem 2rem;
  color: var(--text-muted);
  font-size: .97rem;
  line-height: 1.8;
}

.post-reader__body h3 {
  color: var(--white);
  margin: 1.25rem 0 .5rem;
  font-size: 1.1rem;
}

.post-reader__body p {
  margin-bottom: .9rem;
}

.post-reader__body ul {
  padding-left: 1.5rem;
  margin-bottom: .9rem;
}

.post-reader__body li {
  margin-bottom: .35rem;
}

.post-reader__body a {
  color: var(--gold);
}

.post-reader__actions {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.contact__glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(200, 169, 74, .07) 0%, transparent 70%);
  transform: translate(30%, -30%);
  pointer-events: none;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cdetail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg2);
  transition: border-color .3s, transform .3s;
}

.cdetail:hover {
  border-color: rgba(200, 169, 74, .4);
  transform: translateX(4px);
}

.cdetail__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(200, 169, 74, .1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.cdetail__icon svg {
  width: 18px;
  height: 18px;
}

.cdetail span {
  display: block;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cdetail strong {
  font-size: .95rem;
  color: var(--white);
  font-weight: 600;
}

.contact__social {
  display: flex;
  gap: .75rem;
}

.soc {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all .2s;
}

.soc svg {
  width: 18px;
  height: 18px;
}

.soc:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200, 169, 74, .06);
}

/* Contact Form */
.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.fgroup {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.fgroup--full {
  grid-column: 1/-1;
}

.fgroup label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

.fgroup input,
.fgroup select,
.fgroup textarea {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  padding: .75rem 1rem;
  font-size: .93rem;
  transition: border-color .2s;
  outline: none;
}

.fgroup input:focus,
.fgroup select:focus,
.fgroup textarea:focus {
  border-color: var(--gold);
}

.fgroup input::placeholder,
.fgroup textarea::placeholder {
  color: var(--text-muted);
}

select option {
  background: var(--bg3);
}

.fgroup--full .btn {
  margin-top: .25rem;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--bg3);
  border-top: 1px solid var(--border);
  padding-top: 4rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__brand p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer__links h4,
.footer__contact h4 {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer__links a {
  font-size: .88rem;
  color: var(--text-muted);
  transition: color .2s;
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer__contact p,
.footer__contact a {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer__contact a:hover {
  color: var(--gold);
}

.footer__partner {
  margin-top: .5rem;
}

.footer__partner strong {
  color: var(--gold);
}

.footer__bar {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
}

.footer__bar .container {
  display: flex;
  justify-content: center;
}

.footer__bar p {
  font-size: .78rem;
  color: var(--text-muted);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr;
  }

  .about__visual {
    order: -1;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery__grid {
    grid-template-rows: 200px 200px;
  }
}

@media (max-width: 768px) {
  .nav__list {
    display: none;
    position: fixed;
    inset: 0;
    top: 70px;
    flex-direction: column;
    background: rgba(8, 8, 8, .97);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 888;
  }

  .nav__list.open {
    display: flex;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__link {
    font-size: 1rem;
    padding: .75rem 2rem;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .contact__form {
    grid-template-columns: 1fr;
  }

  .pillar {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .pillar:last-child {
    border-bottom: none;
  }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }

  .gitem--tall {
    grid-row: span 1;
  }

  .gitem--wide {
    grid-column: span 2;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__stats {
    gap: 1.25rem;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .blog__grid {
    grid-template-columns: 1fr;
  }

  body {
    cursor: auto;
  }

  .cursor,
  .cursor-follower {
    display: none;
  }
}

@media (max-width: 480px) {
  .services__grid {
    grid-template-columns: 1fr;
    border: none;
    gap: 1px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    height: 48px;
  }

  .about__badge {
    bottom: -1rem;
    right: -0.5rem;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gitem--wide {
    grid-column: span 1;
  }

  .gitem {
    height: 200px;
  }
}

/* ── Hero real photo ── */
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: .42;
  filter: saturate(.75);
}

/* ── Gallery real photos ── */
.gitem__inner {
  position: relative;
}

.gitem__inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s var(--ease);
}

.gitem:hover .gitem__inner img {
  transform: scale(1.06);
}

/* ── PIN Modal ── */
.pin-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .82);
  backdrop-filter: blur(14px);
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}

.pin-modal__backdrop.show {
  opacity: 1;
  pointer-events: all;
}

.pin-modal {
  position: fixed;
  inset: 0;
  z-index: 1210;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s;
}

.pin-modal.show {
  opacity: 1;
  pointer-events: all;
}

.pin-modal__box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  width: min(400px, 90vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  transform: scale(.94) translateY(12px);
  transition: transform .38s var(--ease-spring);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .65);
}

.pin-modal.show .pin-modal__box {
  transform: scale(1) translateY(0);
}

.pin-modal__icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, rgba(200, 169, 74, .15), rgba(200, 169, 74, .04));
  border: 1px solid rgba(200, 169, 74, .28);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: .25rem;
}

.pin-modal__icon svg {
  width: 26px;
  height: 26px;
}

.pin-modal__box h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
}

.pin-modal__box p {
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: .25rem;
}

.pin-inputs {
  width: 100%;
}

.pin-digit {
  width: 100%;
  background: var(--bg3);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  padding: .85rem 1rem;
  font-size: 1.1rem;
  text-align: center;
  letter-spacing: .3em;
  outline: none;
  transition: border-color .2s;
}

.pin-digit:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 74, .12);
}

.pin-error {
  color: #ff6b6b;
  font-size: .82rem;
  font-weight: 500;
  display: none;
}

.pin-error.show {
  display: block;
}

.pin-modal__actions {
  display: flex;
  gap: .75rem;
  width: 100%;
  margin-top: .25rem;
}

.pin-modal__actions .btn {
  flex: 1;
  justify-content: center;
}

/* Shake animation for wrong PIN */
@keyframes shake {

  0%,
  100% {
    transform: translateX(0)
  }

  20% {
    transform: translateX(-8px)
  }

  40% {
    transform: translateX(8px)
  }

  60% {
    transform: translateX(-5px)
  }

  80% {
    transform: translateX(5px)
  }
}

.pin-digit.shake {
  animation: shake .4s ease;
}