/* ═══════════════════════════════════════════════
   PAPYRUS INTERIOR — PREMIUM STYLESHEET
   ═══════════════════════════════════════════════ */

*  { box-sizing: border-box }
html { scroll-behavior: smooth; scroll-padding-top: 5rem }
body { font-family: 'Inter', sans-serif; background: #F8FAFC; color: #0F172A; overflow-x: hidden }
h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif }

/* ── PROSE ── */
.prose p  { margin-bottom: 1rem; line-height: 1.85; color: #334155 }
.prose h2,.prose h3 { margin: 1.2rem 0 .75rem }
.prose img { max-width: 100%; height: auto; margin: 1rem 0; border-radius: 6px }

/* ══════════════════════════════════════
   PAGE LOADER
══════════════════════════════════════ */
#page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: #0B1122;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .85s cubic-bezier(.22,1,.36,1), transform .85s cubic-bezier(.22,1,.36,1);
}
#page-loader.loaded {
  opacity: 0; transform: translateY(-8px); pointer-events: none;
}
.loader-wrap { text-align: center }
.loader-logo {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 500; color: #fff; letter-spacing: .04em; line-height: 1;
  opacity: 0;
  animation: ldPrimary .75s .1s cubic-bezier(.22,1,.36,1) forwards;
}
.loader-sub {
  font-family: 'Inter', sans-serif;
  font-size: .68rem; letter-spacing: .36em; text-transform: uppercase; color: #dbad5e;
  opacity: 0; margin-top: .4rem;
  animation: ldSub .6s .5s ease forwards;
}
.loader-bar {
  width: 3.5rem; height: 1.5px; background: rgba(219,173,94,.18);
  margin: 1.6rem auto 0; position: relative; overflow: hidden; border-radius: 2px;
}
.loader-bar::after {
  content: '';
  position: absolute; inset: 0;
  background: #dbad5e;
  transform: scaleX(0); transform-origin: left center;
  animation: ldBar .85s .65s cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes ldPrimary { from { opacity:0; transform:translateY(18px) } to { opacity:1; transform:none } }
@keyframes ldSub     { from { opacity:0 }                             to { opacity:1 } }
@keyframes ldBar     { to   { transform:scaleX(1) } }

/* ══════════════════════════════════════
   SCROLL PROGRESS
══════════════════════════════════════ */
#scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 6000;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, #dbad5e, rgba(219,173,94,.4));
  transition: width .1s linear;
  pointer-events: none;
}

/* ══════════════════════════════════════
   CUSTOM CURSOR
══════════════════════════════════════ */
#cursor-dot, #cursor-ring { display: none }

@media (pointer: fine) {
  body, a, button { cursor: none }

  #cursor-dot {
    display: block;
    position: fixed; width: 6px; height: 6px;
    background: #dbad5e; border-radius: 50%;
    pointer-events: none; z-index: 8000;
    transform: translate(-50%, -50%);
    transition: width .2s, height .2s, background .2s, opacity .3s;
  }
  #cursor-ring {
    display: block;
    position: fixed; width: 32px; height: 32px;
    border: 1.5px solid rgba(219,173,94,.45); border-radius: 50%;
    pointer-events: none; z-index: 7999;
    transform: translate(-50%, -50%);
    transition: width .3s cubic-bezier(.22,1,.36,1), height .3s cubic-bezier(.22,1,.36,1),
                border-color .3s, opacity .3s;
  }
  body.cursor-hover #cursor-ring {
    width: 52px; height: 52px; border-color: rgba(219,173,94,.7);
  }
  body.cursor-hover #cursor-dot {
    width: 9px; height: 9px;
  }
}

/* ══════════════════════════════════════
   ISLAND NAVBAR
══════════════════════════════════════ */
#navbar {
  background: rgba(15,23,42,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition:
    top  .52s cubic-bezier(.22,1,.36,1),
    left .52s cubic-bezier(.22,1,.36,1),
    right .52s cubic-bezier(.22,1,.36,1),
    border-radius .52s cubic-bezier(.22,1,.36,1),
    box-shadow .52s ease,
    background .3s ease;
}
#navbar.island {
  top: .875rem !important;
  left: 14rem !important;
  right: 14rem !important;
  border-radius: 14px;
  background: rgba(8,15,32,.92) !important;
  backdrop-filter: blur(22px) saturate(180%);
  border-bottom-color: rgba(255,255,255,.07);
  box-shadow: 0 16px 56px rgba(2,6,23,.55), 0 0 0 1px rgba(255,255,255,.05);
}
#nav-inner {
  height: 5rem;
  transition: height .52s cubic-bezier(.22,1,.36,1);
}
#navbar.island #nav-inner { height: 3.75rem }
#navbar.island #mobile-menu { border-radius: 0 0 14px 14px }

/* Scale down island margins on smaller screens so links don't squeeze */
@media(max-width:1400px) {
  #navbar.island { left: 8rem !important; right: 8rem !important }
}
@media(max-width:1280px) {
  #navbar.island { left: 4rem !important; right: 4rem !important }
}
@media(max-width:1024px) {
  #navbar.island { left: 2rem !important; right: 2rem !important }
}
@media(max-width:768px) {
  #navbar.island { top: .5rem !important; left: .75rem !important; right: .75rem !important; border-radius: 10px }
}

.nav-link {
  position: relative; font-size: .82rem; letter-spacing: .13em;
  color: rgba(255,255,255,.82); transition: color .2s;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1.5px; background: #dbad5e; transition: width .28s ease;
}
.nav-link:hover, .nav-link.active { color: #dbad5e }
.nav-link:hover::after, .nav-link.active::after { width: 100% }

.hamburger-line { transition: all .25s ease }
#navbar.menu-open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg) }
#navbar.menu-open .hamburger-line:nth-child(2) { opacity: 0; transform: translateX(-6px) }
#navbar.menu-open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg) }

#mobile-menu {
  background: #0F172A;
  transition: max-height .35s ease, opacity .3s ease;
  max-height: 0; opacity: 0; overflow: hidden;
}
#mobile-menu.open { max-height: 520px; opacity: 1 }

/* ══════════════════════════════════════
   HERO SLIDER
══════════════════════════════════════ */
.hero-slider-wrap { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden }
.hero-slide {
  position: absolute; inset: 0;
  background: center/cover no-repeat;
  opacity: 0; transition: opacity 1.2s ease; z-index: 0;
}
.hero-slide.active { opacity: 1 }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(110deg, rgba(15,23,42,.93) 0%, rgba(15,23,42,.65) 45%, rgba(15,23,42,.5) 100%);
}
.hero-grid-pattern {
  position: absolute; inset: 0; z-index: 2; opacity: .13; pointer-events: none;
  background-image: linear-gradient(rgba(219,173,94,.28) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(219,173,94,.28) 1px, transparent 1px);
  background-size: 44px 44px;
}
.hero-slider-wrap > .hero-content { position: relative; z-index: 3; width: 100% }
.hero-dots {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .5rem; z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.35); border: none; cursor: pointer;
  transition: all .35s; padding: 0;
}
.hero-dot.active { background: #dbad5e; width: 24px; border-radius: 4px }

/* ══════════════════════════════════════
   SECTION LABELS
══════════════════════════════════════ */
.section-label {
  font-size: .68rem; font-weight: 600; letter-spacing: .24em;
  text-transform: uppercase; color: #dbad5e; display: inline-flex; align-items: center; gap: .5rem;
}
.section-label::before {
  content: ''; display: inline-block;
  width: 1.4rem; height: 1px; background: currentColor; opacity: .7; flex-shrink: 0;
}

.section-shell { position: relative; overflow: hidden }
.section-shell::before {
  content: ''; position: absolute;
  width: 45vw; height: 45vw; left: -20vw; top: -30vw;
  background: radial-gradient(circle, rgba(219,173,94,.1), transparent 65%);
  pointer-events: none;
}

/* ══════════════════════════════════════
   GLASS CARD — with shine sweep
══════════════════════════════════════ */
.glass-card {
  background: linear-gradient(140deg, rgba(255,255,255,.9), rgba(255,255,255,.7));
  border: 1px solid rgba(255,255,255,.45);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  position: relative; overflow: hidden;
}
.glass-card::after {
  content: ''; position: absolute;
  top: -60%; left: -80%; width: 55%; height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
  transform: skewX(-18deg); transition: left .7s ease;
  pointer-events: none;
}
.glass-card:hover::after { left: 130% }

/* ══════════════════════════════════════
   SERVICE EXPAND ACCORDION
══════════════════════════════════════ */
.service-expand-wrap { display: flex; gap: 6px; min-height: 480px }
.service-expand-item {
  flex: 0 0 64px;
  background: center/cover no-repeat;
  position: relative; overflow: hidden; cursor: pointer; border-radius: 12px;
  transition: flex .58s cubic-bezier(.22,1,.36,1);
}
.service-expand-item::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.92) 0%, rgba(15,23,42,.55) 42%, rgba(15,23,42,.36) 100%);
  transition: background .4s;
}
.service-expand-item.active { flex: 1 }
.service-expand-item.active::before {
  background: linear-gradient(to top, rgba(15,23,42,.94) 0%, rgba(15,23,42,.58) 48%, rgba(15,23,42,.2) 100%);
}
.service-expand-closed {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding: 1.5rem .75rem;
  opacity: 1; transition: opacity .25s; pointer-events: none;
}
.service-expand-item.active .service-expand-closed { opacity: 0; pointer-events: none }
.service-num {
  font-family: 'Playfair Display', serif; font-size: .78rem;
  color: #dbad5e; letter-spacing: .12em; margin-bottom: .65rem;
  writing-mode: vertical-rl; text-orientation: mixed;
}
.service-title-vert {
  font-family: 'Playfair Display', serif; font-size: .88rem;
  color: rgba(255,255,255,.9); writing-mode: vertical-rl;
  text-orientation: mixed; white-space: nowrap;
}
.service-expand-open {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem 1.75rem;
  opacity: 0; transform: translateY(14px);
  transition: opacity .42s .12s, transform .42s .12s;
  pointer-events: none; color: #fff;
}
.service-expand-item.active .service-expand-open {
  opacity: 1; transform: none; pointer-events: auto;
}
@media(max-width:768px) {
  .service-expand-wrap { flex-direction: column; min-height: auto; gap: 4px }
  .service-expand-item { flex: 0 0 58px; border-radius: 10px }
  .service-expand-item.active { flex: 0 0 290px }
  .service-num, .service-title-vert { writing-mode: horizontal-tb }
  .service-expand-closed { flex-direction: row; align-items: center; justify-content: flex-start; gap: .75rem; padding: .9rem 1.25rem }
}

/* ══════════════════════════════════════
   PORTFOLIO GRID
══════════════════════════════════════ */
.portfolio-item { overflow: hidden; position: relative; cursor: pointer }
.portfolio-item img {
  transition: transform .75s cubic-bezier(.22,1,.36,1);
  width: 100%; height: 100%; object-fit: cover;
}
.portfolio-item:hover img { transform: scale(1.09) }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.9) 0%, rgba(15,23,42,.22) 45%, transparent 70%);
  opacity: .1; transition: opacity .4s;
  display: flex; align-items: flex-end; padding: 1.25rem;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1 }

/* ══════════════════════════════════════
   SERVICE CARD (services page + about)
══════════════════════════════════════ */
.service-card {
  border: 1px solid #e2e8f0; background: #fff;
  border-radius: 14px;
  position: relative; overflow: hidden;
  transition: border-color .32s, box-shadow .32s, transform .32s;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(140deg, rgba(219,173,94,.08), transparent 55%);
  opacity: 0; transition: opacity .3s;
}
.service-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; width: 0; height: 2px;
  background: #dbad5e; transition: width .4s cubic-bezier(.22,1,.36,1);
}
.service-card:hover { border-color: #dbad5e; box-shadow: 0 14px 48px rgba(219,173,94,.14); transform: translateY(-7px) }
.service-card:hover::before { opacity: 1 }
.service-card:hover::after  { width: 100% }

/* ══════════════════════════════════════
   JOURNEY PROCESS
══════════════════════════════════════ */
.journey-wrap { position: relative }
.journey-line { display: none }
@media(min-width: 768px) {
  .journey-line {
    display: block; position: absolute;
    top: 28px; left: calc(12.5% + 14px); right: calc(12.5% + 14px);
    height: 1px;
    background: linear-gradient(90deg, #dbad5e, rgba(219,173,94,.2));
    z-index: 0;
  }
}
.journey-step { text-align: center; position: relative; z-index: 1 }
.journey-circle {
  width: 58px; height: 58px; border-radius: 50%;
  border: 2px solid #dbad5e;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #dbad5e;
  background: #fff; margin: 0 auto;
  box-shadow: 0 0 0 7px rgba(219,173,94,.07);
  transition: background .32s, color .32s, box-shadow .32s, transform .32s;
}
.journey-step:hover .journey-circle {
  background: #dbad5e; color: #fff;
  box-shadow: 0 10px 28px rgba(219,173,94,.32); transform: scale(1.06);
}

/* ══════════════════════════════════════
   WHY CHOOSE CARDS
══════════════════════════════════════ */
.why-card {
  background: #fff; border: 1px solid #e2e8f0;
  border-radius: 14px;
  position: relative; overflow: hidden;
  transition: box-shadow .32s, transform .32s, border-color .32s;
}
.why-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; width: 0; height: 2px;
  background: #dbad5e; transition: width .42s cubic-bezier(.22,1,.36,1);
}
.why-card:hover { box-shadow: 0 14px 48px rgba(219,173,94,.14); transform: translateY(-5px); border-color: #dbad5e }
.why-card:hover::after { width: 100% }
.why-num {
  font-family: 'Playfair Display', serif; font-size: 2.4rem;
  color: rgba(219,173,94,.2); font-weight: 700; line-height: 1;
  margin-bottom: .65rem; transition: color .3s;
}
.why-card:hover .why-num { color: rgba(219,173,94,.5) }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonial-card {
  background: #fff; border: 1px solid #e2e8f0;
  border-radius: 14px;
  position: relative; overflow: hidden;
  transition: box-shadow .32s, transform .32s, border-color .32s;
}
.testimonial-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; width: 0; height: 2px;
  background: #dbad5e; transition: width .42s cubic-bezier(.22,1,.36,1);
}
.testimonial-card:hover { box-shadow: 0 14px 48px rgba(219,173,94,.14); transform: translateY(-5px); border-color: #dbad5e }
.testimonial-card:hover::after { width: 100% }
.testimonial-quote {
  font-size: 3rem; line-height: 1; color: rgba(219,173,94,.22);
  font-family: 'Playfair Display', serif; margin-bottom: .1rem;
  transition: color .3s;
}
.testimonial-card:hover .testimonial-quote { color: rgba(219,173,94,.45) }

/* ── TESTIMONIAL SLIDER ── */
.testi-slider-wrap { position: relative; }
.testi-slider-outer { overflow: hidden; }
.testi-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  transition: transform .52s cubic-bezier(.22,1,.36,1);
  will-change: transform;
  align-items: stretch;
}
/* width set by JS — avoids circular calc(100%) on unbounded flex container */
.testi-slide {
  flex: 0 0 auto;
  min-width: 0;
}

/* arrows */
.testi-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: #fff; border: 1px solid #e2e8f0;
  color: #0F172A; font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  transition: background .2s, color .2s, border-color .2s;
  z-index: 10;
}
.testi-arrow:hover { background: #dbad5e; color: #fff; border-color: #dbad5e; }
.testi-prev { left: -1.25rem; }
.testi-next { right: -1.25rem; }
@media (max-width: 640px) {
  .testi-prev { left: 0; }
  .testi-next { right: 0; }
}

/* dots */
.testi-dots {
  display: flex; justify-content: center; gap: .5rem;
  margin-top: 1.75rem;
}
.testi-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #cbd5e1; border: none; cursor: pointer;
  transition: background .25s, transform .25s;
  padding: 0;
}
.testi-dot.active { background: #dbad5e; transform: scale(1.3); }

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-accent {
  background: #dbad5e; color: #0F172A;
  font-weight: 600; letter-spacing: .08em;
  border-radius: 8px;
  position: relative; overflow: hidden;
  transition: background .25s, box-shadow .2s, transform .2s;
  display: inline-flex; align-items: center; justify-content: center;
}
.btn-accent::after {
  content: ''; position: absolute;
  top: 0; left: -110%; width: 65%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: skewX(-15deg); transition: left .55s ease;
  pointer-events: none;
}
.btn-accent:hover { background: #c99840; box-shadow: 0 10px 32px rgba(219,173,94,.38); transform: translateY(-2px) }
.btn-accent:hover::after { left: 150% }

.btn-outline {
  border: 1.5px solid rgba(255,255,255,.85); color: #fff;
  font-weight: 500; letter-spacing: .08em;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .25s;
}
.btn-outline:hover { background: #fff; color: #0F172A; transform: translateY(-2px) }

/* ══════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 1.6rem; right: 1.6rem; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; box-shadow: 0 8px 28px rgba(37,211,102,.38);
  display: flex; align-items: center; justify-content: center;
  transition: transform .22s, box-shadow .22s;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 14px 36px rgba(37,211,102,.52) }

/* ══════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
══════════════════════════════════════ */
.reveal              { opacity: 0; transform: translateY(28px) }
.reveal.show         { opacity: 1; transform: none; transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1) }
[data-fade-left]     { opacity: 0; transform: translateX(-32px) }
[data-fade-right]    { opacity: 0; transform: translateX(32px)  }
[data-fade-left].show,
[data-fade-right].show { opacity: 1; transform: none; transition: all .82s cubic-bezier(.22,1,.36,1) }
[data-fade-scale]    { opacity: 0; transform: scale(.95) }
[data-fade-scale].show { opacity: 1; transform: scale(1); transition: all .75s cubic-bezier(.22,1,.36,1) }

/* ══════════════════════════════════════
   HERO TITLE LINES
══════════════════════════════════════ */
.hero-title-line { will-change: transform, opacity }
.hero-meta, .hero-cta { will-change: transform, opacity }

/* ══════════════════════════════════════
   ADMIN SURFACE
══════════════════════════════════════ */
.admin-surface { background: linear-gradient(180deg, #0b1222 0%, #111827 35%, #f1f5f9 35%) }

/* ══════════════════════════════════════
   SCROLLBAR
══════════════════════════════════════ */
::-webkit-scrollbar { width: 5px }
::-webkit-scrollbar-track { background: #F8FAFC }
::-webkit-scrollbar-thumb { background: #dbad5e; border-radius: 4px }

/* ══════════════════════════════════════
   PORTFOLIO ITEMS — softer corners
══════════════════════════════════════ */
.portfolio-item { border-radius: 10px !important }

/* ══════════════════════════════════════
   FORM INPUTS — premium feel
══════════════════════════════════════ */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="search"],
input[type="password"],
textarea,
select {
  border-radius: 8px;
  transition: border-color .22s, box-shadow .22s;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  box-shadow: 0 0 0 3px rgba(219,173,94,.12);
}

/* ══════════════════════════════════════
   AMBIENT CURSOR GLOW
══════════════════════════════════════ */
#cursor-glow {
  position: fixed; pointer-events: none; z-index: 3;
  width: 540px; height: 540px; border-radius: 50%;
  background: radial-gradient(circle, rgba(219,173,94,.065) 0%, rgba(219,173,94,.02) 45%, transparent 70%);
  transform: translate(-50%,-50%);
  will-change: left, top;
  transition: opacity .6s ease;
}

/* ══════════════════════════════════════
   SCROLL-TO-TOP BUTTON
══════════════════════════════════════ */
#scroll-top {
  position: fixed; bottom: 5.5rem; right: 1.6rem; z-index: 998;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(11,17,34,.88); backdrop-filter: blur(12px);
  border: 1px solid rgba(219,173,94,.38);
  color: #dbad5e;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; transform: translateY(16px);
  transition: opacity .35s cubic-bezier(.22,1,.36,1),
              transform .35s cubic-bezier(.22,1,.36,1),
              background .22s, border-color .22s, color .22s, box-shadow .22s;
  pointer-events: none;
}
#scroll-top.visible { opacity: 1; transform: none; pointer-events: auto }
#scroll-top:hover {
  background: #dbad5e; border-color: #dbad5e; color: #0F172A;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(219,173,94,.38);
}

/* ══════════════════════════════════════
   HERO GRAIN TEXTURE
══════════════════════════════════════ */
.hero-slider-wrap::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  pointer-events: none; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ══════════════════════════════════════
   SECTION LABEL — breathing line
══════════════════════════════════════ */
@keyframes labelLinePulse {
  0%, 100% { opacity: .55; width: 1.4rem }
  50%       { opacity: 1;   width: 1.9rem }
}
.section-label::before { animation: labelLinePulse 2.8s ease-in-out infinite }

/* ══════════════════════════════════════
   SECTION SHELL — second ambient orb
══════════════════════════════════════ */
.section-shell::after {
  content: ''; position: absolute;
  width: 38vw; height: 38vw; right: -10vw; bottom: -10vw;
  background: radial-gradient(circle, rgba(219,173,94,.06), transparent 65%);
  pointer-events: none; z-index: 0;
}

/* ══════════════════════════════════════
   JOURNEY LINE SHIMMER
══════════════════════════════════════ */
@media(min-width:768px) {
  .journey-line { overflow: hidden }
  .journey-line::after {
    content: ''; position: absolute; top: 0; left: 0;
    width: 38%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(219,173,94,.8), transparent);
    animation: lineShimmer 3s ease-in-out infinite;
    pointer-events: none;
  }
  @keyframes lineShimmer {
    0%   { transform: translateX(-100%) }
    100% { transform: translateX(370%)  }
  }
}

/* ══════════════════════════════════════
   IMAGE BLUR-UP LAZY LOAD
══════════════════════════════════════ */
.img-blur { filter: blur(10px); transition: filter .72s cubic-bezier(.22,1,.36,1) }
.img-blur.loaded { filter: none }

/* ══════════════════════════════════════
   BUTTON CLICK RIPPLE
══════════════════════════════════════ */
@keyframes rippleExpand {
  from { transform: translate(-50%,-50%) scale(0); opacity: 1 }
  to   { transform: translate(-50%,-50%) scale(3.8); opacity: 0 }
}
.ripple-circle {
  position: absolute; border-radius: 50%;
  width: 40px; height: 40px;
  background: rgba(255,255,255,.26);
  pointer-events: none;
  animation: rippleExpand .65s ease-out forwards;
}

/* ══════════════════════════════════════
   HERO SCROLL HINT
══════════════════════════════════════ */
.hero-scroll-hint {
  position: absolute; bottom: 2.25rem; right: 2.75rem; z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: .45rem;
  color: rgba(255,255,255,.42); font-size: .58rem;
  letter-spacing: .24em; text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  animation: hintFloat 2.4s ease-in-out infinite;
  cursor: default; user-select: none;
}
@keyframes hintFloat {
  0%, 100% { transform: translateY(0) }
  50%       { transform: translateY(7px) }
}
.hero-scroll-hint .scroll-mouse {
  width: 20px; height: 32px;
  border: 1.5px solid rgba(255,255,255,.28); border-radius: 10px;
  display: flex; justify-content: center; padding-top: 5px;
}
.hero-scroll-hint .scroll-mouse::after {
  content: '';
  width: 3px; height: 6px; background: rgba(219,173,94,.7); border-radius: 2px;
  animation: scrollWheel 1.9s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%, 100% { transform: translateY(0); opacity: 1 }
  70%       { transform: translateY(8px); opacity: 0 }
}
@media(max-width:640px) { .hero-scroll-hint { display: none } }

/* ══════════════════════════════════════
   HERO ACCENT — gradient text
══════════════════════════════════════ */
.hero-accent-gradient {
  background: linear-gradient(125deg, #f2cd7e 0%, #dbad5e 38%, #b8902e 72%, #ecc366 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════
   PORTFOLIO OVERLAY — deeper gradient
══════════════════════════════════════ */
.portfolio-overlay {
  background: linear-gradient(to top, rgba(15,23,42,.97) 0%, rgba(15,23,42,.38) 48%, transparent 72%);
}

/* ══════════════════════════════════════
   GLASS CARD — dark variant (hero card)
══════════════════════════════════════ */
.hero-content .glass-card {
  background: linear-gradient(140deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 20px 60px rgba(2,6,23,.45), inset 0 1px 0 rgba(255,255,255,.08);
}
.hero-content .glass-card:hover::after { left: 130% }

/* ══════════════════════════════════════
   NAV LINK — active dot indicator
══════════════════════════════════════ */
.nav-link.active::before {
  content: '';
  position: absolute; bottom: -7px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 3px; border-radius: 50%;
  background: #dbad5e;
}

/* ══════════════════════════════════════
   TESTI ARROW — refined
══════════════════════════════════════ */
.testi-arrow {
  width: 2.75rem; height: 2.75rem;
  transition: background .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.testi-arrow:hover { transform: translateY(-50%) scale(1.1) }

/* ══════════════════════════════════════
   SERVICE CARD — icon accent on hover
══════════════════════════════════════ */
.service-card .service-icon {
  transition: transform .38s cubic-bezier(.22,1,.36,1), color .3s;
}
.service-card:hover .service-icon { transform: translateY(-4px) scale(1.08) }

/* ══════════════════════════════════════
   WHY CARD — top accent line
══════════════════════════════════════ */
.why-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; width: 0; height: 2px;
  background: linear-gradient(90deg, #dbad5e, rgba(219,173,94,.3));
  transition: width .45s cubic-bezier(.22,1,.36,1);
}
.why-card:hover::before { width: 100% }

/* ══════════════════════════════════════
   SCROLL PROGRESS — refined glow
══════════════════════════════════════ */
#scroll-progress {
  background: linear-gradient(90deg, #dbad5e 0%, #f2cd7e 50%, rgba(219,173,94,.5) 100%);
  box-shadow: 0 0 8px rgba(219,173,94,.5);
  height: 2px;
}

/* ══════════════════════════════════════
   LOADER — enhanced sub-line spacing
══════════════════════════════════════ */
.loader-sub { letter-spacing: .42em }
.loader-bar { width: 4rem; margin-top: 2rem }
