/* MOBILE OVERFLOW FIX */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: #000;
  -webkit-overflow-scrolling: touch;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  max-width: 100%;
}
img { max-width: 100%; height: auto; display: block; }

:root {
  --black: #000;
  --gold: #c9a96e;
  --gold-light: #e2c07e;
  --white: #fff;
  --muted: rgba(255,255,255,0.5);
  --border: rgba(255,255,255,0.08);
}

html { scroll-behavior: smooth; background: #000; }
body {
  background: #000;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}

/* TRUST BAR */
.trust-bar {
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 10px 16px;
  text-align: left;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-start;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}
.trust-item svg { width: 16px; height: 16px; flex-shrink: 0; }
.trust-stars { color: var(--gold); font-size: 0.62rem; letter-spacing: 2px; }
.trust-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  line-height: 1;
}
.trust-platform {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.trust-sep { width: 1px; height: 16px; background: rgba(255,255,255,0.15); flex-shrink: 0; }

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 68px;
  background: rgba(0,0,0,0.0);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-logo-svg { height: 44px; width: auto; max-width: 220px; display: block; }
.nav-logo { display: flex; align-items: center; }
.nav-links { display: none; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold);
  color: #000;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  font-family: 'Outfit', sans-serif;
}
.nav-cta:hover { background: var(--gold-light); }
.hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 1.5px; background: #fff; transition: all 0.3s; }
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  z-index: 999;
  background: rgba(0,0,0,0.99);
  border-bottom: 1px solid var(--border);
  padding: 28px;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
}
@media (min-width: 768px) { .nav-links { display: flex; } .hamburger { display: none; } }

/* BUTTONS */
.btn {
  display: block;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  transition: all 0.25s cubic-bezier(0.22,1,0.36,1);
  cursor: pointer;
  border: none;
  font-family: 'Outfit', sans-serif;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.btn-gold { background: var(--gold); color: #000; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(201,169,110,0.25); }
.btn-gold:active { transform: scale(0.98); }
.btn-gold::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-20deg);
  transition: none;
}
.btn-gold:hover::before { left: 150%; transition: left 0.5s ease; }
.btn-outline { background: transparent; color: rgba(255,255,255,0.95); border: 1px solid rgba(255,255,255,0.65); text-shadow: 0 1px 4px rgba(0,0,0,0.4); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-outline:active { transform: scale(0.98); }

/* HERO */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 80px;
  background: #000;
  overflow: visible;
}
.hero-logo-block { width: 100%; margin-bottom: 36px; display: flex; justify-content: center; }
.hero-logo-block img { width: 100%;  }
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0.06em;
  color: #fff;
  max-width: 640px;
  margin-bottom: 20px;
  text-transform: uppercase;
  padding: 0 28px;
}

.hero-sub {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 400px;
  margin: 0 auto 40px;
  line-height: 1.75;
  padding: 0 28px;
}
.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 300px;
  padding: 0 28px;
}

/* SECTIONS */
.sec { padding: 56px 28px; background: #000; }
.sec-alt { padding: 56px 28px; background: #080808; }
.sec-inner { max-width: 720px; margin: 0 auto; }
.sec-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  text-align: center;
}
.rule { width: 32px; height: 1px; background: var(--gold); margin: 0 auto 18px; opacity: 0.5; }
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 10px;
}
.sec-intro {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  max-width: 440px;
  margin: 0 auto 28px;
  line-height: 1.75;
}

/* SERVICES */
.service-card {
  padding: 18px 24px;
  border-left: 2px solid rgba(201,169,110,0.2);
  border-bottom: 1px solid var(--border);
  background: #000;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-left-color 0.25s, background 0.3s;
}
.service-card:hover { border-left-color: var(--gold); background: rgba(201,169,110,0.03); }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: rgba(201,169,110,0.15);
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
}
.service-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.service-body p { font-size: 0.8rem; color: var(--muted); line-height: 1.6; }

/* STEPS */
.steps-grid { display: grid; grid-template-columns: 1fr; }
.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--gold);
  margin-top: 2px;
  transition: background 0.25s, color 0.25s;
}
.step:hover .step-num { background: var(--gold); color: #000; }
.step-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.step-body p { font-size: 0.78rem; color: var(--muted); line-height: 1.55; }

/* PROJEKT BUTTON */
.proj-btn-wrap { display: flex; max-width: 300px; margin: 0 auto; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.gallery-cell {
  aspect-ratio: 4/3;
  background: #0a0a0a;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}
.gallery-cell.wide { grid-column: span 2; aspect-ratio: 16/7; }
.gallery-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-cell:hover img { transform: scale(1.04); }

/* REVIEWS */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 2px; }
.review {
  padding: 20px;
  border-left: 2px solid rgba(201,169,110,0.35);
  background: rgba(201,169,110,0.02);
  transition: all 0.3s;
}
.review:hover { border-left-color: var(--gold); background: rgba(201,169,110,0.05); }
.review-stars { color: var(--gold); font-size: 0.75rem; letter-spacing: 3px; margin-bottom: 14px; }
.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
}
.review-name { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.review-loc { font-size: 0.68rem; color: var(--muted); margin-top: 3px; }

/* CONTACT */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 40px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.ci-label { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.ci-value { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: #fff; text-decoration: none; }
.ci-sub { font-size: 0.72rem; color: var(--muted); margin-top: 2px; }
.form { display: flex; flex-direction: column; gap: 10px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea {
  background: #000;
  border: 1px solid var(--border);
  color: #fff;
  padding: 12px 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
  border-radius: 0;
  -webkit-appearance: none;
  width: 100%;
}
.field input:focus, .field textarea:focus { border-color: var(--gold); }
.field textarea { min-height: 120px; }

/* FOOTER */
footer { background: #000; border-top: 1px solid var(--border); padding: 48px 28px 32px; }
.footer-inner { max-width: 720px; margin: 0 auto; }
.footer-top { display: flex; flex-direction: column; gap: 28px; margin-bottom: 40px; }
.footer-logo img { height: 28px; width: auto; }
.footer-tagline { font-size: 0.75rem; color: var(--muted); margin-top: 8px; line-height: 1.6; }
.footer-links { display: flex; flex-direction: row; flex-wrap: wrap; gap: 10px 20px; }
.footer-links a { font-size: 0.73rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; display: flex; flex-direction: column; gap: 4px; }
.footer-bottom p { font-size: 0.67rem; color: rgba(255,255,255,0.2); }

/* PROJ MODAL */
.proj-modal { display: none; position: fixed; inset: 0; z-index: 3000; background: rgba(0,0,0,0.97); overflow-y: auto; -webkit-overflow-scrolling: touch; }
.proj-modal.open { display: block; }
.proj-modal-header { position: sticky; top: 0; z-index: 10; display: flex; align-items: center; justify-content: space-between; padding: 20px 28px; background: rgba(0,0,0,0.95); border-bottom: 1px solid var(--border); backdrop-filter: blur(12px); }
.proj-modal-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 300; letter-spacing: 0.06em; }
.proj-modal-close { background: none; border: none; color: var(--muted); font-size: 1.5rem; cursor: pointer; transition: color 0.2s; font-family: 'Outfit', sans-serif; }
.proj-modal-close:hover { color: var(--gold); }
.proj-modal-
.proj-item { margin-bottom: 48px; }
.proj-item-title { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.proj-item-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.proj-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.proj-img { position: relative; overflow: hidden; cursor: zoom-in; aspect-ratio: 4/3; }
.proj-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.proj-img:hover img { transform: scale(1.03); }
.proj-img-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }

/* LIGHTBOX */
.lb { display: none; position: fixed; inset: 0; z-index: 4000; background: rgba(0,0,0,0.97); align-items: center; justify-content: center; }
.lb.open { display: flex; }
.lb img { max-width: 95vw; max-height: 92vh; object-fit: contain; }
.lb-close { position: fixed; top: 20px; right: 24px; background: none; border: none; color: var(--muted); font-size: 2rem; cursor: pointer; transition: color 0.2s; z-index: 4001; }
.lb-close:hover { color: var(--gold); }

/* OFFERT PANEL */
.offert-overlay { display: none; position: fixed; inset: 0; z-index: 5000; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); }
.offert-overlay.open { display: block; }
.offert-panel {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 5001;
  width: 100%; max-width: 420px;
  background: #0a0a0a;
  border-left: 1px solid rgba(201,169,110,0.15);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.offert-panel.open { transform: translateX(0); }
.offert-panel-head { display: flex; align-items: center; justify-content: space-between; padding: 24px 28px; border-bottom: 1px solid rgba(255,255,255,0.05); flex-shrink: 0; }
.offert-panel-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 300; letter-spacing: 0.04em; }
.offert-close { background: none; border: none; color: rgba(255,255,255,0.4); font-size: 1.4rem; cursor: pointer; transition: color 0.2s; }
.offert-close:hover { color: var(--gold); }
.offert-
.offert-sub { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.6; }
.offert-field { display: flex; flex-direction: column; gap: 6px; }
.offert-field label { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.offert-field input, .offert-field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  padding: 14px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem; font-weight: 300;
  outline: none; transition: border-color 0.2s;
  resize: none; border-radius: 0; -webkit-appearance: none; width: 100%;
}
.offert-field input:focus, .offert-field textarea:focus { border-color: var(--gold); }
.offert-field textarea { min-height: 100px; }
.offert-btn { margin-top: 4px; padding: 16px; background: var(--gold); color: #000; border: none; font-family: 'Outfit', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; cursor: pointer; transition: background 0.2s, transform 0.15s; width: 100%; }
.offert-btn:hover { background: var(--gold-light); transform: translateY(-1px); }
.offert-note { font-size: 0.62rem; color: rgba(255,255,255,0.25); text-align: center; }

/* STICKY MOBILE CTA */
.sticky-cta {
  display: block;
  opacity: 1;
  position: fixed; bottom: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 5000;
  background: var(--gold); color: #000;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 14px 32px;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(201,169,110,0.3);
  transition: all 0.2s;
  opacity: 1;
  white-space: nowrap;
}
.sticky-cta:hover { background: var(--gold-light); }
@media (max-width: 768px) { .sticky-cta { display: block; } .offert-panel { max-width: 100%; } }

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible { opacity: 1; transform: none; }
.hero .reveal { opacity: 1; transform: none; }
.hero .hero-logo-block { opacity: 0.40 !important; }
.services-grid .reveal:nth-child(1) { transition-delay: 0s; }
.services-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.services-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.services-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.services-grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.steps-grid .reveal:nth-child(1) { transition-delay: 0s; }
.steps-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.steps-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.steps-grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.steps-grid .reveal:nth-child(5) { transition-delay: 0.4s; }
.reviews-grid .reveal:nth-child(1) { transition-delay: 0s; }
.reviews-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.reviews-grid .reveal:nth-child(3) { transition-delay: 0.2s; }

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .sec, .sec-alt { padding: 48px 20px; }
  h2 { margin-bottom: 8px; }
  .steps-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-cell.wide { grid-column: span 1; aspect-ratio: 4/3; }
  .proj-imgs { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
}
@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(5, 1fr); }
  .step { flex-direction: column; gap: 14px; padding: 20px 12px; border-bottom: none; border-right: 1px solid var(--border); }
  .step:last-child { border-right: none; }
  .contact-layout { grid-template-columns: 1fr 1fr; gap: 56px; }
  .footer-top { flex-direction: row; justify-content: space-between; }
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: rgba(201,169,110,0.3); }


/* ── ANIMATIONS ──────────────────────────────────── */

/* Page load fade-in for hero */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-logo-block {
  animation: heroFadeUp 0.8s cubic-bezier(0.22,1,0.36,1) both;
}
.hero h1 {
  animation: heroFadeUp 0.8s 0.15s cubic-bezier(0.22,1,0.36,1) both;
}
.hero-sub {
  animation: heroFadeUp 0.8s 0.28s cubic-bezier(0.22,1,0.36,1) both;
}
.hero-btns {
  animation: heroFadeUp 0.8s 0.4s cubic-bezier(0.22,1,0.36,1) both;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s cubic-bezier(0.22,1,0.36,1),
              transform 0.55s cubic-bezier(0.22,1,0.36,1);
  will-change: transform, opacity;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grids */
.services-grid .reveal:nth-child(1) { transition-delay: 0s; }
.services-grid .reveal:nth-child(2) { transition-delay: 0.07s; }
.services-grid .reveal:nth-child(3) { transition-delay: 0.14s; }
.services-grid .reveal:nth-child(4) { transition-delay: 0.21s; }
.services-grid .reveal:nth-child(5) { transition-delay: 0.28s; }
.steps-grid .reveal:nth-child(1)    { transition-delay: 0s; }
.steps-grid .reveal:nth-child(2)    { transition-delay: 0.08s; }
.steps-grid .reveal:nth-child(3)    { transition-delay: 0.16s; }
.steps-grid .reveal:nth-child(4)    { transition-delay: 0.24s; }
.steps-grid .reveal:nth-child(5)    { transition-delay: 0.32s; }
.reviews-grid .reveal:nth-child(1)  { transition-delay: 0s; }
.reviews-grid .reveal:nth-child(2)  { transition-delay: 0.1s; }
.reviews-grid .reveal:nth-child(3)  { transition-delay: 0.2s; }

/* Buttons - premium hover */
.btn {
  transition: background 0.25s ease,
              color 0.25s ease,
              border-color 0.25s ease,
              transform 0.25s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.25s ease;
  will-change: transform;
}
.btn-gold:hover {
  transform: scale(1.03) translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,169,110,0.28);
}
.btn-gold:active  { transform: scale(0.97); box-shadow: none; }
.btn-outline:hover {
  transform: scale(1.03) translateY(-2px);
  box-shadow: 0 4px 18px rgba(201,169,110,0.12);
}
.btn-outline:active { transform: scale(0.97); }

/* Nav CTA hover */
.nav-cta {
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover { transform: scale(1.04); }
.nav-cta:active { transform: scale(0.97); }

/* Gallery image zoom */
.gallery-cell {
  overflow: hidden;
}
.gallery-cell img {
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
  will-change: transform;
}
.gallery-cell:hover img { transform: scale(1.04); }

/* Project images zoom */
.proj-img img {
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
  will-change: transform;
}
.proj-img:hover img { transform: scale(1.04); }

/* Service card left border slide */
.service-card {
  transition: border-left-color 0.3s ease,
              background 0.3s ease,
              transform 0.25s cubic-bezier(0.22,1,0.36,1);
}
.service-card:hover { transform: translateX(4px); }

/* Step number fill */
.step-num {
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.step:hover .step-num { transform: scale(1.1); }

/* Review hover */
.review {
  transition: border-left-color 0.3s ease,
              background 0.3s ease,
              transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.review:hover { transform: translateX(4px); }

/* Mobile menu smooth open/close */
.mobile-menu {
  transform-origin: top center;
  transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.22,1,0.36,1);
  opacity: 0;
  transform: scaleY(0.95) translateY(-8px);
  pointer-events: none;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: scaleY(1) translateY(0);
  pointer-events: auto;
}

/* Trust bar items fade in */
@keyframes trustFade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.trust-item:nth-child(1) { animation: trustFade 0.5s 0.1s both; }
.trust-item:nth-child(3) { animation: trustFade 0.5s 0.2s both; }

/* Offert panel shimmer on button */
.offert-btn {
  transition: background 0.2s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
}
.offert-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
  transition: none;
}
.offert-btn:hover::before { left: 150%; transition: left 0.5s ease; }
.offert-btn:hover { transform: translateY(-1px); }

/* Footer links */
.footer-links a {
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}
.footer-links a:hover { transform: translateX(3px); }

/* Proj modal close */
.proj-modal-close, .lb-close, .offert-close {
  transition: color 0.2s ease, transform 0.2s ease;
}
.proj-modal-close:hover, .lb-close:hover, .offert-close:hover {
  transform: rotate(90deg);
}

.hero h1 .gold { color: var(--gold); }

/* SVG Logo styles */
.hero-logo-svg {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
}
.footer-logo .nav-logo-svg {
  height: 36px;
  opacity: 0.7;
}
@media (max-width: 480px) {
  .nav-logo-svg { height: 34px; max-width: 160px; }
  .hero-logo-svg { max-width: 340px; }
}

/* SVG LOGO HTML VERSION */
.svg-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  line-height: 1;
}
.svg-logo-top {
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 200;
  font-size: 20px;
  color: #ffffff;
  letter-spacing: 14px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.svg-logo-bottom {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-right: 32px;
}
.svg-line {
  display: block;
  height: 0.8px;
  width: 55px;
  min-width: 55px;
  max-width: 55px;
  background: #d4af37;
  flex-shrink: 0;
  flex-grow: 0;
}
.svg-arjun {
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 200;
  font-size: 19px;
  color: #ffffff;
  letter-spacing: 18px;
  white-space: nowrap;
  padding-left: 8px;
  padding-right: 10px;
  vertical-align: middle;
}
.svg-hammer {
  font-size: 22px;
  margin-left: 6px;
  filter: sepia(1) saturate(10) hue-rotate(5deg) brightness(0.9);
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
}

/* Nav logo sizing */
.nav-logo .svg-logo-top { font-size: 10px; letter-spacing: 7px; }
.nav-logo .svg-plats { font-size: 10px; letter-spacing: 7px; }
.nav-logo .svg-arjun { font-size: 9px; letter-spacing: 9px; }
.nav-logo .svg-line { width: 28px; min-width: 28px; max-width: 28px; }
.nav-logo .svg-hammer { font-size: 11px; }
.nav-logo .svg-logo { gap: 2px; }

/* Hero logo sizing */
.hero-logo-block .svg-logo {
  align-items: center;
}
.hero-logo-block { overflow: visible; width: 100%; display: flex; justify-content: center; }
.hero-logo-block .svg-logo { transform: scale(1.25); transform-origin: center center; align-items: center; }
.hero-logo-block .svg-logo { gap: 4px; align-items: center; }
.hero-logo-block .svg-plats { font-size: 15px; letter-spacing: 10px; }
.hero-logo-block .svg-logo-top { font-size: 15px; letter-spacing: 10px; }
.hero-logo-block .svg-arjun { font-size: 13px; letter-spacing: 13px; padding-left: 6px; padding-right: 6px; }
.hero-logo-block .svg-line { width: 45px; min-width: 45px; max-width: 45px; }
.hero-logo-block .svg-hammer { font-size: 16px; margin-left: 2px; }
.hero-logo-block .svg-logo-bottom { margin-right: 20px; }

@media (min-width: 480px) {
  .hero-logo-block .svg-plats { font-size: 20px; letter-spacing: 14px; }
  .hero-logo-block .svg-logo-top { font-size: 20px; letter-spacing: 14px; }
  .hero-logo-block .svg-arjun { font-size: 18px; letter-spacing: 18px; padding-left: 8px; padding-right: 8px; }
  .hero-logo-block .svg-line { width: 55px; min-width: 55px; max-width: 55px; }
  .hero-logo-block .svg-hammer { font-size: 22px; }
  .hero-logo-block .svg-logo-bottom { display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 8px; margin: 0; }
}

/* Footer logo sizing */
footer .svg-logo-top { font-size: 12px; letter-spacing: 9px; }
footer .svg-arjun { font-size: 11px; letter-spacing: 11px; }
footer .svg-line { width: 40px; }
footer .svg-hammer { font-size: 13px; }
footer .svg-logo { gap: 2px; }

@media(max-width: 480px) {
  .hero-logo-block .svg-logo-top { font-size: 20px; letter-spacing: 12px; }
  .hero-logo-block .svg-arjun { font-size: 18px; letter-spacing: 14px; }
  .hero-logo-block .svg-line { width: 70px; }
  .hero-logo-block .svg-hammer { font-size: 22px; }
}

.logo-svg-wrap svg { display: block; }
.nav-logo .logo-svg-wrap svg { height: 44px; width: auto; }
.hero-logo-block .logo-svg-wrap svg { width: 100%; height: auto; max-width: 520px; }
footer .logo-svg-wrap svg { height: 36px; width: auto; opacity: 0.7; }

.svg-plats {
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 200;
  font-size: 20px;
  color: #ffffff;
  letter-spacing: 14px;
  white-space: nowrap;
}

/* Each row centers independently */
.svg-logo-top {
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.svg-logo-bottom {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-right: 32px;
}
/* Lines: equal fixed width, no flex-grow */
.svg-line {
  display: block;
  height: 0.8px;
  width: 55px;
  min-width: 55px;
  max-width: 55px;
  background: #d4af37;
  flex-shrink: 0;
  flex-grow: 0;
}

/* ARJUN ROW - clean rebuild */
.arjun-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}
.arjun-line {
  display: block;
  width: 45px;
  height: 0.8px;
  background: #d4af37;
  flex-shrink: 0;
  flex-grow: 0;
}
.arjun-text {
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 200;
  font-size: 13px;
  color: #ffffff;
  letter-spacing: 13px;
  white-space: nowrap;
}
/* Hero scaling */
.hero-logo-block .arjun-row { margin: 0; }
.hero-logo-block .arjun-line { width: 45px; }
.hero-logo-block .arjun-text { font-size: 13px; letter-spacing: 13px; }
/* Nav scaling */
.nav-logo .arjun-row { gap: 5px; }
.nav-logo .arjun-line { width: 28px; }
.nav-logo .arjun-text { font-size: 9px; letter-spacing: 9px; }
/* Footer scaling */
footer .arjun-line { width: 22px; }
footer .arjun-text { font-size: 8px; letter-spacing: 8px; }

/* HERO ONLY - ARJUN row fix */
.hero-logo-block .svg-logo-bottom {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  margin: 0 !important;
  transform: none !important;
}
.hero-logo-block .svg-logo-bottom .svg-line {
  width: 45px !important;
  min-width: 45px !important;
  max-width: 45px !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
}
.hero-logo-block .svg-logo-bottom .svg-arjun {
  font-size: 13px !important;
  letter-spacing: 13px !important;
  padding: 0 !important;
  margin: 0 !important;
}


/* HERO ARJUN ROW */
.hero-arjun-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateX(-12px);
}
.hero-arjun-line {
  width: 45px;
  min-width: 45px;
  max-width: 45px;
  height: 0.8px;
  background: #d4af37;
  flex-shrink: 0;
  flex-grow: 0;
}
.hero-arjun-line:first-child {
  width: 38px;
  min-width: 38px;
  max-width: 38px;
  margin-left: -32px;
}
.hero-arjun-text {
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 200;
  font-size: 13px;
  color: #ffffff;
  letter-spacing: 13px;
  white-space: nowrap;
  position: relative;
  left: 8px;
}

/* TRUST SECTION */
.trust-section {
  background: #080808;
  padding: 48px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}
@media(min-width: 600px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
}
.trust-card {
  background: #0d0d0d;
  border: 1px solid rgba(201,169,110,0.15);
  padding: 28px 24px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.25s cubic-bezier(0.22,1,0.36,1);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.trust-card:hover {
  border-color: var(--gold);
  background: rgba(201,169,110,0.04);
  transform: translateY(-3px);
}
.trust-card:active { transform: scale(0.98); }
.trust-card-icon {
  font-size: 24px;
  margin-bottom: 4px;
  filter: sepia(1) saturate(5) hue-rotate(5deg) brightness(0.9);
}
.trust-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.03em;
}
.trust-card-text {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
}
.trust-card-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: var(--gold);
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
}
.trust-card:hover .trust-card-arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* TRUST PANEL */
.trust-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
}
.trust-overlay.open { display: block; }
.trust-panel {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 5001;
  background: #0d0d0d;
  border-top: 1px solid rgba(201,169,110,0.3);
  padding: 36px 28px 48px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  max-width: 600px;
  margin: 0 auto;
}
.trust-panel.open { transform: translateY(0); }
.trust-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.3rem;
  cursor: pointer;
  transition: color 0.2s;
}
.trust-close:hover { color: var(--gold); }
.trust-panel-icon { font-size: 32px; margin-bottom: 12px; }
.trust-panel-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 12px;
}
.trust-panel-body {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.75;
}

/* TRUST CARD TWEAKS */
.trust-card {
  padding: 20px 20px 28px !important;
}
.trust-card-icon svg { display: block; }
.trust-card-arrow {
  opacity: 1 !important;
  color: var(--gold);
  font-size: 0.75rem;
  transition: transform 0.2s;
}
.trust-card:hover .trust-card-arrow {
  transform: translateX(4px);
}

/* Note above offert button */
.hero-offert-note {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: -4px;
}

/* INLINE PROJECT BEFORE/AFTER */
.inline-proj {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin: 20px 0 4px;
}
.inline-proj-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: zoom-in;
}
.inline-proj-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.inline-proj-img:hover img { transform: scale(1.04); }
.inline-proj-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}


/* SERVICES IMPROVEMENTS */
.service-card {
  padding: 22px 24px !important;
}
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.services-cta {
  margin-top: 32px;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}

.form-note {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 8px;
  letter-spacing: 0.06em;
}

/* HERO TRUST POINTS */
.hero-trust {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 28px;
  padding: 0 28px;
}
.hero-trust li {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-trust li::first-letter {
  color: var(--gold);
  font-weight: 600;
}

/* HERO SUB HEADING */
.hero-sub-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 3.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  text-transform: none;
  letter-spacing: 0.04em;
  display: block;
  margin-top: 8px;
}

/* Move trust points closer to description */
.hero-trust {
  margin-top: -12px !important;
  margin-bottom: 24px !important;
}

/* Sticky CTA hidden until scroll */
.sticky-cta.visible {
  display: block !important;
  opacity: 1;
}

/* Note closer to button */
.hero-offert-note {
  margin-top: -6px !important;
  margin-bottom: 2px !important;
}

/* HERO BACKGROUND IMAGE */
.hero {
  background-image: url('images/hero-bg.jpg') !important;
  background-size: cover !important;
  background-position: center 85% !important;
  background-repeat: no-repeat !important;
  position: relative !important;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.78) 15%,
    rgba(0,0,0,0.62) 30%,
    rgba(0,0,0,0.42) 48%,
    rgba(0,0,0,0.52) 62%,
    rgba(0,0,0,0.70) 78%,
    rgba(0,0,0,0.90) 90%,
    rgba(0,0,0,1.00) 100%
  );
  z-index: 0;
}
.hero > * {
  position: relative;
  z-index: 1;
}

/* HERO LOGO - subtle brand element */
.hero-logo-block {
  opacity: 0.40 !important;
  margin-bottom: 20px !important;
  margin-top: -10px !important;
}

/* More space above hero headline */
.hero h1 {
  margin-top: 40px !important;
}

/* ── PREMIUM ANIMATIONS ──────────────────────── */

/* 1. Hero staggered load animations */
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  animation: heroReveal 0.8s cubic-bezier(0.22,1,0.36,1) 0.1s both !important;
}
.hero-sub-heading {
  animation: heroReveal 0.8s cubic-bezier(0.22,1,0.36,1) 0.25s both;
}
.hero .hero-sub {
  animation: heroReveal 0.8s cubic-bezier(0.22,1,0.36,1) 0.35s both;
}
.hero .hero-trust {
  animation: heroReveal 0.7s cubic-bezier(0.22,1,0.36,1) 0.5s both;
}
.hero .hero-btns {
  animation: heroReveal 0.7s cubic-bezier(0.22,1,0.36,1) 0.65s both;
}

/* 2. Section scroll reveal - refined */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s cubic-bezier(0.22,1,0.36,1),
    transform 0.65s cubic-bezier(0.22,1,0.36,1);
  will-change: transform, opacity;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 3. Project + gallery image hover zoom */
.proj-img img,
.inline-proj-img img,
.gallery-cell img {
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1) !important;
  will-change: transform;
}
.proj-img:hover img,
.inline-proj-img:hover img,
.gallery-cell:hover img {
  transform: scale(1.04) !important;
}

/* 4. Trust card hover */
.trust-card {
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.35s cubic-bezier(0.22,1,0.36,1) !important;
}
.trust-card:hover {
  transform: translateY(-4px) !important;
}

/* 5. Service card */
.service-card {
  transition:
    border-left-color 0.3s ease,
    background 0.3s ease,
    transform 0.3s cubic-bezier(0.22,1,0.36,1) !important;
}
.service-card:hover {
  transform: translateX(5px) !important;
}

/* ── PREMIUM GOLD BUTTON ─────────────────────── */
.btn-gold {
  background: linear-gradient(
    135deg,
    #d4af37 0%,
    #c9a96e 30%,
    #e2c07e 55%,
    #c9a96e 75%,
    #b8941f 100%
  ) !important;
  color: #000 !important;
  box-shadow:
    0 2px 8px rgba(201,169,110,0.25),
    0 1px 2px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.15) !important;
  border: none !important;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.2s cubic-bezier(0.22,1,0.36,1) !important;
  position: relative;
  overflow: hidden;
}

.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.12) 0%,
    rgba(255,255,255,0.0) 50%,
    rgba(255,255,255,0.06) 100%
  );
  pointer-events: none;
}

.btn-gold:hover {
  background: linear-gradient(
    135deg,
    #e2c040 0%,
    #d4af37 30%,
    #f0d080 55%,
    #d4af37 75%,
    #c9a030 100%
  ) !important;
  box-shadow:
    0 4px 20px rgba(201,169,110,0.35),
    0 1px 4px rgba(0,0,0,0.25),
    0 0 28px rgba(201,169,110,0.18),
    inset 0 1px 0 rgba(255,255,255,0.2) !important;
  transform: scale(1.03) translateY(-2px) !important;
}

.btn-gold:active {
  transform: scale(0.98) translateY(1px) !important;
  box-shadow:
    0 1px 4px rgba(201,169,110,0.2),
    0 1px 1px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.1) !important;
}

/* Nav CTA same treatment */
.nav-cta {
  background: linear-gradient(
    135deg,
    #d4af37 0%,
    #c9a96e 40%,
    #e2c07e 60%,
    #c9a030 100%
  ) !important;
  box-shadow: 0 2px 10px rgba(201,169,110,0.2) !important;
}
.nav-cta:hover {
  box-shadow: 0 3px 16px rgba(201,169,110,0.35) !important;
}

/* HERO TYPOGRAPHY REFINEMENT */
.hero h1 {
  text-shadow:
    0 2px 20px rgba(0,0,0,0.6),
    0 1px 4px rgba(0,0,0,0.4) !important;
  margin-bottom: 28px !important;
}
.hero-sub-heading {
  margin-top: 14px !important;
}

/* NAV CTA - minimal integrated style */
.nav-cta {
  background: transparent !important;
  color: rgba(255,255,255,0.75) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  padding: 7px 16px !important;
  box-shadow: none !important;
  font-size: 0.62rem !important;
  letter-spacing: 0.18em !important;
  transition: border-color 0.2s ease, color 0.2s ease !important;
}
.nav-cta:hover {
  background: transparent !important;
  color: #fff !important;
  border-color: rgba(255,255,255,0.3) !important;
  transform: none !important;
  box-shadow: none !important;
}
.nav-cta:active {
  transform: scale(0.97) !important;
}

/* HERO SUBTITLE REFINEMENT */
.hero-sub-heading {
  font-size: clamp(1.3rem, 4vw, 2.1rem) !important;
  font-weight: 400 !important;
  color: #e8c97e !important;
}

/* HERO DESCRIPTION TEXT READABILITY */
.hero-sub {
  color: rgba(255,255,255,0.88) !important;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5) !important;
}
.hero-trust li {
  color: rgba(255,255,255,0.78) !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4) !important;
}

/* HERO READABILITY REFINEMENTS */

/* 1. Gold subtitle - slightly larger and heavier */
.hero-sub-heading {
  font-size: clamp(1.4rem, 4.5vw, 2.2rem) !important;
  font-weight: 500 !important;
  color: #ecd080 !important;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5) !important;
}

/* 2. White description - better contrast */
.hero-sub {
  color: rgba(255,255,255,0.92) !important;
  text-shadow: 0 1px 14px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.4) !important;
  font-weight: 400 !important;
}

/* 3. Bullet list - brighter and clearer */
.hero-trust li {
  color: rgba(255,255,255,0.88) !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5) !important;
  font-weight: 400 !important;
  letter-spacing: 0.04em !important;
}

/* SUBTITLE UPPERCASE REFINEMENT */
.hero-sub-heading {
  text-transform: uppercase !important;
  letter-spacing: 0.18em !important;
  font-style: normal !important;
  font-size: clamp(0.85rem, 2.5vw, 1.2rem) !important;
  font-weight: 400 !important;
}

.hero-sub-heading {
  font-weight: 500 !important;
}

/* TRUST SECTION REVEAL */
.trust-section.reveal {
  transition:
    opacity 0.45s cubic-bezier(0.22,1,0.36,1),
    transform 0.45s cubic-bezier(0.22,1,0.36,1);
}
.trust-card-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.45s cubic-bezier(0.22,1,0.36,1) var(--d, 0s),
    transform 0.45s cubic-bezier(0.22,1,0.36,1) var(--d, 0s),
    border-color 0.3s ease,
    background 0.3s ease;
}
.trust-card-reveal.card-visible {
  opacity: 1;
  transform: translateY(0);
}

/* REFINED SCROLL REVEAL */
.reveal {
  opacity: 0 !important;
  transform: translateY(55px) !important;
  transition:
    opacity 0.65s cubic-bezier(0.16,1,0.3,1),
    transform 0.65s cubic-bezier(0.16,1,0.3,1) !important;
}
.reveal.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.trust-card-reveal {
  transform: translateY(55px) !important;
  transition:
    opacity 0.65s cubic-bezier(0.16,1,0.3,1) var(--d, 0s),
    transform 0.65s cubic-bezier(0.16,1,0.3,1) var(--d, 0s),
    border-color 0.3s ease,
    background 0.3s ease !important;
}
.trust-card-reveal.card-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* CINEMATIC HERO → NEXT SECTION TRANSITION */

/* Trust section slides up over hero */

/* Hero bleeds into trust section */

/* HERO SCROLL TRANSITION - STRONGER */

/* Bigger overlap */

/* Hero bottom fade */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.6) 70%, #000 100%);
  z-index: 1;
  height: 260px;
  pointer-events: none;
}

/* Hero bg zoom on scroll - handled via JS */

/* HERO LOGO - watermark style */
.hero .hero-logo-block .svg-plats,
.hero .hero-logo-block .svg-logo-top {
  opacity: 0.58;
}
.hero .hero-logo-block .hero-arjun-text {
  opacity: 0.58;
}
.hero .hero-logo-block .hero-arjun-line {
  opacity: 0.62;
}
.hero .hero-logo-block .svg-hammer {
  opacity: 0.92;
  filter: sepia(1) saturate(10) hue-rotate(5deg) brightness(0.9) !important;
}
/* Override the block-level opacity so we can control each element */
.hero .hero-logo-block {
  opacity: 1 !important;
}

/* HERO TEXT READABILITY IMPROVEMENTS */

/* Gold tagline */
.hero-sub-heading {
  font-weight: 600 !important;
  font-size: clamp(0.95rem, 2.8vw, 1.35rem) !important;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6) !important;
}

/* White description text */
.hero-sub {
  font-weight: 500 !important;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7) !important;
  color: rgba(255,255,255,0.95) !important;
}

/* Trust bullet points */
.hero-trust li {
  font-weight: 500 !important;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7) !important;
  color: rgba(255,255,255,0.92) !important;
}

/* HERO LOGO IMAGE */
.hero-logo-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* HERO LOGO IMAGE - full width, moved up */
.hero-logo-img {
  width: 100% !important;
  max-width: 100% !important;
  margin-top: -10px !important;
}

/* NAV LOGO IMAGE */
.nav-logo-img {
  height: 28px;
  width: auto;
  display: block;
}

/* HERO READABILITY - subtle size improvements */

/* Gold subtitle +12% */
.hero-sub-heading {
  font-size: clamp(1.05rem, 3.1vw, 1.5rem) !important;
  line-height: 1.5 !important;
}

/* White description +10% */
.hero-sub {
  font-size: 0.97rem !important;
  line-height: 1.85 !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.55) !important;
}

/* Bullet points +10% */
.hero-trust li {
  font-size: 0.86rem !important;
  line-height: 1.7 !important;
}
.hero-trust {
  gap: 8px !important;
}

/* FÖRE/EFTER LABELS - improved visibility */
.proj-img-label,
.inline-proj-label {
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.22em !important;
  color: #ffffff !important;
  padding: 8px 14px !important;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.5) 60%, transparent 100%) !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.9) !important;
}

/* Offset for fixed navbar */

/* FOOTER LOGO */
.footer-logo-img {
  height: 28px;
  width: auto;
  display: block;
  opacity: 0.7;
}

/* PROJECT GALLERY */
.proj-expand-link {
  margin-top: 16px;
  text-align: center;
}
.proj-expand-btn {
  background: none;
  border: none;
  color: var(--gold);
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px 0;
  border-bottom: 1px solid rgba(201,169,110,0.3);
  transition: color 0.2s, border-color 0.2s;
}
.proj-expand-btn:hover {
  color: var(--gold-light);
  border-color: var(--gold);
}

/* GALLERY MODAL */
.gallery-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 6000;
  background: rgba(0,0,0,0.97);
  flex-direction: column;
}
.gallery-modal.open { display: flex; }
.gallery-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.gallery-modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: #fff;
}
.gallery-modal-close {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.2rem;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: color 0.2s, transform 0.2s;
}
.gallery-modal-close:hover { color: var(--gold); transform: rotate(90deg); }
.gallery-modal-
.gallery-slider {
  width: 100%;
  max-width: 700px;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.gallery-slide {
  display: none;
  position: relative;
}
.gallery-slide.active { display: block; }
.gallery-slide img {
  width: 100%;
  max-height: 65vh;
  object-fit: contain;
  display: block;
}
.gallery-slide-label {
  text-align: center;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 12px;
}
.gallery-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.gallery-prev, .gallery-next {
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 40px; height: 40px;
  font-size: 1rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.gallery-prev:hover, .gallery-next:hover { border-color: var(--gold); color: var(--gold); }
.gallery-dots { display: flex; gap: 8px; align-items: center; }
.gallery-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background 0.2s;
}
.gallery-dot.active { background: var(--gold); }

/* PROJECT MODAL - FULLSCREEN SLIDER */

/* Larger project titles */
.proj-item-title {
  font-size: 22px !important;
  letter-spacing: 0.1em !important;
}

/* Make proj-item clickable */
.proj-item {
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.proj-item:hover {
  opacity: 0.92;
}

/* Fullscreen project modal */
.proj-fs-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 7000;
  background: rgba(0,0,0,0.95);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.proj-fs-modal.open { display: flex; }
.proj-fs-modal { z-index: 9000 !important; }

/* Close button */
.proj-fs-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 7001;
  transition: color 0.2s, transform 0.2s;
  line-height: 1;
}
.proj-fs-close:hover { color: var(--gold); transform: rotate(90deg); }

/* Project title in modal */
.proj-fs-title {
  position: fixed;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  z-index: 7001;
  white-space: nowrap;
}

/* Slider container */
.proj-fs-slider {
  width: 100%;
  max-width: 800px;
  position: relative;
  overflow: hidden;
  padding: 0 20px;
}

/* Slide */
.proj-fs-slide {
  display: none;
  position: relative;
  animation: slideIn 0.35s ease;
}
.proj-fs-slide.active { display: block; }

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

.proj-fs-slide img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* FÖRE/EFTER label on slide */
.proj-fs-label {
  position: absolute;
  bottom: 16px;
  left: 36px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}

/* Nav arrows */
.proj-fs-prev,
.proj-fs-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 7001;
  transition: border-color 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.proj-fs-prev { left: 16px; }
.proj-fs-next { right: 16px; }
.proj-fs-prev:hover,
.proj-fs-next:hover { border-color: var(--gold); color: var(--gold); }

@media(max-width: 600px) {
  .proj-fs-prev { display: none; }
  .proj-fs-next { display: none; }
}

/* Dots */
.proj-fs-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}
.proj-fs-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background 0.2s;
}
.proj-fs-dot.active { background: var(--gold); }

/* Fix clickable proj-items inside modal */
.proj-modal-body {
  pointer-events: auto;
}
.proj-item {
  pointer-events: auto;
  position: relative;
}
/* Visual click feedback */
.proj-item:active {
  opacity: 0.8;
}
/* Add a small "Klicka för mer" hint */
.proj-item-hint {
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 8px;
  text-align: center;
  opacity: 0.7;
}

.proj-fs-close, .proj-fs-prev, .proj-fs-next { z-index: 9001 !important; }
.proj-fs-title { z-index: 9001 !important; }
.proj-fs-dots { position: relative; z-index: 9001; }

/* Project title hint */
.proj-item-hint {
  font-family: 'Outfit', sans-serif;
  font-size: 0.58rem !important;
  font-weight: 400;
  color: rgba(201,169,110,0.6);
  letter-spacing: 0.12em;
  text-transform: none;
  vertical-align: middle;
}

/* Slideshow button */
.proj-slideshow-btn {
  background: none;
  border: none;
  color: rgba(201,169,110,0.65);
  font-family: 'Outfit', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  margin-bottom: 12px;
  transition: color 0.2s;
  display: block;
}
.proj-slideshow-btn:hover { color: var(--gold); }

/* Trust section overlaps hero bottom */
.trust-section { position: relative; z-index: 2; margin-top: 0 !important; padding-top: 32px !important; background: #080808 !important; border-top: none !important; }
/* Hero bottom padding for overlap */


nav.scrolled {
  background: rgba(0,0,0,0.50) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border-bottom: 1px solid rgba(255,255,255,0.07) !important;
}

/* fixed-nav-offset */
.trust-bar { padding-top: 68px !important; }

.hero { margin-bottom: 0 !important; padding-bottom: 0 !important; }




/* Fix Se våra tjänster button visibility - above hero overlay */
.hero-btns {
  position: relative;
  z-index: 2;
}
.btn-outline {
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.75) !important;
  opacity: 1 !important;
}

.sticky-cta { opacity: 1 !important; display: block !important; visibility: visible !important; bottom: 20px !important; right: 20px !important; left: auto !important; transform: none !important; z-index: 9000 !important; }
