

:root {
  --navy-deep:    #04101f;
  --navy:         #0d1f3c;
  --navy-mid:     #14294f;
  --navy-light:   #1b3468;
  --gold:         #c9a227;
  --gold-light:   #e0ba3c;
  --gold-pale:    rgba(201,162,39,0.12);
  --gold-shine:   rgba(201,162,39,0.35);
  --white:        #ffffff;
  --off-white:    #f0ece4;
  --text:         #dce4ef;
  --text-muted:   #7a8daa;
  --card-bg:      rgba(20,41,79,0.7);
  --card-border:  rgba(201,162,39,0.18);
  --glass:        rgba(255,255,255,0.04);
  --shadow-gold:  0 0 40px rgba(201,162,39,0.22);
  --shadow-card:  0 16px 48px rgba(4,16,31,0.55);
  --radius:       20px;
  --radius-sm:    12px;
  --ease:         cubic-bezier(0.16,1,0.3,1);
  --tr:           0.4s var(--ease);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }


body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-color: #06101d;
  background-image:
    url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='700' height='500'><filter id='m'><feTurbulence type='fractalNoise' baseFrequency='0.022 0.009' numOctaves='6' seed='4' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/><feComponentTransfer><feFuncA type='linear' slope='0.11'/></feComponentTransfer></filter><rect width='700' height='500' filter='url(%23m)'/></svg>"),
    linear-gradient(135deg, #06101d 0%, #091522 45%, #0b1a2c 60%, #06101d 100%);
  background-size: 700px 500px, cover;
  background-repeat: repeat, no-repeat;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 130% 70% at 15% 20%, rgba(201,162,39,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 90% 120% at 85% 80%, rgba(201,162,39,0.05) 0%, transparent 50%),
    linear-gradient(111deg,
      transparent 0%,
      transparent 16%,
      rgba(201,162,39,0.055) 16.3%,
      rgba(201,162,39,0.09)  16.7%,
      rgba(201,162,39,0.055) 17.1%,
      transparent 17.4%,
      transparent 100%
    ),
    linear-gradient(-68deg,
      transparent 0%,
      transparent 26%,
      rgba(255,255,255,0.028) 26.3%,
      rgba(255,255,255,0.045) 26.6%,
      rgba(255,255,255,0.028) 26.9%,
      transparent 27.2%,
      transparent 100%
    );
}

.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  background:
    url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='300'><filter id='p'><feTurbulence type='fractalNoise' baseFrequency='0.04 0.015' numOctaves='4' seed='9' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/><feComponentTransfer><feFuncA type='linear' slope='0.08'/></feComponentTransfer></filter><rect width='400' height='300' filter='url(%23p)'/></svg>"),
    repeating-linear-gradient(
      -28deg,
      transparent 0px,
      transparent 55px,
      rgba(255,255,255,0.018) 55px,
      rgba(255,255,255,0.018) 56px
    ),
    linear-gradient(135deg, rgba(20,41,79,0.9) 0%, rgba(14,28,55,0.95) 100%);
  background-size: 400px 300px, auto, auto;
  border: 1px solid rgba(201,162,39,0.18);
  border-radius: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.img-placeholder::after {
  content: "✦";
  font-size: 2rem;
  color: rgba(201,162,39,0.28);
  letter-spacing: 0;
}

.img-placeholder--gallery {
  min-height: 260px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 60% at 50% 30%, rgba(201,162,39,0.07) 0%, transparent 65%),
    linear-gradient(180deg,
      rgba(6,16,29,0.35) 0%,
      rgba(6,16,29,0.55) 55%,
      rgba(6,16,29,0.92) 100%
    );
}


html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Poppins", sans-serif;
  background: #06101d;
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
}

img { max-width:100%; display:block; }
a   { text-decoration:none; color:inherit; }
ul  { list-style:none; }
address { font-style:normal; }

#preloader {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center; gap: 2.5rem;
  background: var(--navy-deep);
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader-logo { text-align: center; }

.pl-mark {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 3.5rem;
  color: var(--white);
  display: flex;
  align-items: center;
  letter-spacing: -1px;
  animation: plPulse 1.6s ease-in-out infinite;
}

@keyframes plPulse {
  0%,100% { opacity:0.6; transform:scale(0.97); }
  50%      { opacity:1;   transform:scale(1.02); }
}

.pl-m-box {
  background: var(--gold);
  padding: 0 6px;
  margin: 0 2px;
  border-radius: 4px;
  display: inline-flex;
}

.pl-tag {
  font-family: "Poppins", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 8px;
  opacity: 0.85;
}

.pl-bar {
  width: 180px; height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 99px;
  overflow: hidden;
}

.pl-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 99px;
  animation: plFill 0.9s var(--ease) forwards;
}

@keyframes plFill { from{width:0} to{width:100%} }

body.loaded #preloader { opacity:0; visibility:hidden; pointer-events:none; }

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  cursor: pointer;
}

.logo-mark {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--white);
  display: flex;
  align-items: center;
  line-height: 1;
  letter-spacing: -0.5px;
}

.logo-m-box {
  background: var(--gold);
  padding: 2px 5px;
  margin: 0 1px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
}

.logo-tagline {
  font-family: "Poppins", sans-serif;
  font-size: 0.48rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.navbar {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4%;
  height: 74px;
  background: transparent;
  transition: background var(--tr), backdrop-filter var(--tr), box-shadow var(--tr);
}

.navbar.scrolled {
  background: rgba(4,16,31,0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.78);
  position: relative;
  transition: color var(--tr);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--tr);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  border: none; cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  border-radius: 6px;
  transition: var(--tr);
  text-align: center;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #07111e;
  padding: 11px 22px;
  font-size: 0.83rem;
  box-shadow: 0 4px 20px rgba(201,162,39,0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,162,39,0.5);
  filter: brightness(1.08);
}

.btn-lg { padding: 14px 28px; font-size: 0.9rem; border-radius: 8px; }
.btn-sm { padding: 9px 18px;  font-size: 0.78rem; }
.btn-full { width: 100%; justify-content: center; padding: 15px; font-size: 0.92rem; }

.btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--white);
  padding: 13px 26px;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 99px;
  transition: var(--tr);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; z-index: 800;
  background: var(--navy-deep);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2.2rem;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
}

.mobile-nav.open { transform: none; }

.mobile-nav a {
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 1px;
}

.mobile-nav a:hover { color: var(--gold); }

.hero {
  position: relative;
  height: 100vh; min-height: 700px;
  display: flex; flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-canvas {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
}

.hero-img-wrap {
  position: absolute; inset: 0; z-index: 1;
  will-change: transform;
}

.hero-img {
  width: 100%; height: 115%; object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(4,16,31,0.88) 0%,
    rgba(13,31,60,0.78) 45%,
    rgba(4,16,31,0.92) 100%
  );
}

.hero-content {
  position: relative; z-index: 10;
  padding: 0 8%;
  max-width: 800px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}

.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%,100% { box-shadow:0 0 10px var(--gold); }
  50%      { box-shadow:0 0 22px var(--gold), 0 0 40px rgba(201,162,39,0.4); }
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  position: relative;
}

.hero-title em::after {
  content: "";
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  opacity: 0.6;
}

.hero-sub {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-bottom: 4rem;
}

.hero-stats {
  position: absolute;
  bottom: 3.5rem; left: 8%; right: 8%;
  z-index: 10;
  display: flex; align-items: center; gap: 0;
  background: rgba(13,31,60,0.72);
  backdrop-filter: blur(14px);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 1.6rem 2rem;
  max-width: 720px;
}

.stat-item {
  display: flex; flex-direction: column;
  flex: 1;
}

.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-suffix { font-family: "Playfair Display", serif; font-size: 1.4rem; color: var(--gold); }
.stat-label  { font-size: 0.7rem; color: var(--text-muted); margin-top: 4px; letter-spacing: 0.3px; }

.stat-sep {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0; margin: 0 1.2rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 1.8rem; right: 8%;
  z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  writing-mode: vertical-lr;
}

.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity:0; }
  50%  { transform: scaleY(1); transform-origin: top; opacity:1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity:0; }
}

.reveal-hero {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-hero.delay-1 { transition-delay: 0.15s; }
.reveal-hero.delay-2 { transition-delay: 0.3s; }
.reveal-hero.delay-3 { transition-delay: 0.45s; }
.reveal-hero.delay-4 { transition-delay: 0.6s; }
.reveal-hero.visible { opacity:1; transform:none; }

.trust-strip {
  background: linear-gradient(90deg, var(--navy-mid), var(--navy-light), var(--navy-mid));
  border-top: 1px solid rgba(201,162,39,0.15);
  border-bottom: 1px solid rgba(201,162,39,0.15);
  overflow: hidden;
  padding: 0;
}

.trust-inner {
  display: flex; align-items: center; gap: 0;
  white-space: nowrap;
  animation: trustScroll 30s linear infinite;
  width: max-content;
  padding: 18px 0;
}

.trust-item {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 28px;
}

.trust-sep {
  color: rgba(201,162,39,0.3);
  font-size: 0.9rem;
}

@keyframes trustScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.section {
  padding: 110px 0;
  position: relative;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 5%;
}

.text-center { text-align: center; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  padding-left: 28px;
  margin-bottom: 1rem;
}

.section-label::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 18px; height: 1.5px;
  background: var(--gold);
  transform: translateY(-50%);
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.section-title span {
  color: var(--gold);
  font-style: italic;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 3.5rem;
  line-height: 1.75;
}

.text-center .section-label { padding-left: 0; }
.text-center .section-label::before { display:none; }
.text-center .section-label::after {
  content:"";
  display:inline-block;
  width:18px; height:1.5px;
  background: var(--gold);
  vertical-align: middle;
  margin-left:10px;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity:1; transform:none; }
.reveal-delay-1.visible { transition-delay: 0.12s; }
.reveal-delay-2.visible { transition-delay: 0.24s; }
.reveal-delay-3.visible { transition-delay: 0.36s; }

.about {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-frame {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
}

.about-img-frame::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(4,16,31,0.5));
  z-index: 1;
}

.about-img-frame img {
  width: 100%; height: 520px;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.about-img-frame:hover img { transform: scale(1.04); }

.about-badge-card {
  position: absolute;
  bottom: -24px; right: -24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-gold);
  color: #07111e;
}

.about-badge-card .badge-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.about-badge-card strong { display:block; font-size: 1rem; font-weight: 700; }
.about-badge-card span   { font-size: 0.7rem; opacity: 0.75; }

.about-text { padding-left: 1rem; }

.about-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.about-feat {
  display: flex; gap: 12px;
  align-items: flex-start;
  background: var(--glass);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 16px;
  transition: var(--tr);
}

.about-feat:hover {
  background: rgba(201,162,39,0.06);
  border-color: rgba(201,162,39,0.3);
  transform: translateY(-2px);
}

.feat-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--gold-pale);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}

.about-feat strong { display:block; font-size: 0.82rem; color: var(--white); margin-bottom: 2px; }
.about-feat span   { font-size: 0.75rem; color: var(--text-muted); }

.services {
  background: var(--navy-deep);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
  cursor: default;
  will-change: transform;
}

.service-card:hover {
  box-shadow: var(--shadow-gold), var(--shadow-card);
  border-color: rgba(201,162,39,0.5);
}

.service-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.service-card:hover .service-img-wrap img { transform: scale(1.08); }

.service-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(13,31,60,0.85));
}

.service-body {
  padding: 20px;
}

.service-num {
  font-family: "Playfair Display", serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 8px;
  opacity: 0.7;
}

.service-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.service-body p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--tr), opacity var(--tr);
}

.service-link:hover { gap: 10px; opacity: 0.8; }

.gallery {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 1rem;
  margin-top: 3rem;
}

.g-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--card-border);
}

.g-item.g-tall   { grid-row: span 2; }
.g-item.g-wide   { grid-column: span 2; }

.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.g-item:hover img { transform: scale(1.07); }

.g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,16,31,0.88) 0%, transparent 55%);
  display: flex; align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity var(--tr);
}

.g-item:hover .g-overlay { opacity: 1; }

.g-overlay span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
}

.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(4,16,31,0.97);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.2rem;
  padding: 2rem;
}

.lightbox.open { display: flex; animation: lbFadeIn 0.3s ease; }
@keyframes lbFadeIn { from{opacity:0} to{opacity:1} }

.lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 24px 80px rgba(0,0,0,0.8);
}

.lb-caption {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
  font-style: italic;
}

.lb-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--tr);
}

.lb-close:hover { background: rgba(255,255,255,0.2); }

.process {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,162,39,0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(27,52,104,0.5) 0%, transparent 50%);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative; z-index: 1;
  margin-top: 4rem;
}

.process-item {
  padding: 0 2rem;
  position: relative;
  border-left: 1px solid rgba(201,162,39,0.2);
}

.process-item:first-child { border-left: none; padding-left: 0; }

.process-num {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.18;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.process-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.process-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.why-us {
  background: var(--navy-deep);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-text .section-sub {
  text-align: left;
  margin: 0 0 2.5rem;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--gold-pale);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-top: 2px;
  transition: var(--tr);
}

.why-item:hover .why-icon {
  background: var(--gold);
  color: #07111e;
  box-shadow: 0 4px 20px rgba(201,162,39,0.4);
}

.why-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 4px;
}

.why-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.why-visual { position: relative; }

.why-img-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}

.why-img-frame::after {
  content: "";
  position: absolute; inset: 0;
  border: 1.5px solid rgba(201,162,39,0.2);
  border-radius: var(--radius);
  pointer-events: none;
}

.why-img-frame img {
  width: 100%; height: 450px;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.why-img-frame:hover img { transform: scale(1.04); }

.why-numbers {
  display: flex; gap: 0;
  margin-top: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.wn-item {
  flex: 1;
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}

.wn-item + .wn-item::before {
  content: "";
  position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}

.wn-num {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.wn-suf  { font-size: 1.2rem; color: var(--gold); }
.wn-label { display:block; font-size: 0.68rem; color: var(--text-muted); margin-top: 4px; }

.testimonials {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
}

.testimonials-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1100px;
  margin: 3rem auto 0;
  padding: 0 5%;
}

.tslider-viewport {
  overflow: hidden; flex: 1; border-radius: var(--radius);
}

.tslider {
  display: flex;
  transition: transform 0.55s var(--ease);
}

.tcard {
  min-width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 3rem;
}

.tcard-stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
}

.tcard-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 2rem;
}

.tcard-author {
  display: flex; align-items: center; gap: 14px;
}

.tcard-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: #07111e;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.tcard-author strong { display:block; font-size: 0.9rem; color: var(--white); }
.tcard-author span   { font-size: 0.78rem; color: var(--text-muted); }

.tslider-btn {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 50%;
  color: var(--gold);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--tr);
}

.tslider-btn:hover {
  background: var(--gold);
  color: #07111e;
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,162,39,0.4);
}

.tslider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}

.tdot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none; cursor: pointer;
  transition: var(--tr);
}

.tdot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(201,162,39,0.5);
}

.faq {
  background: var(--navy);
}

.faq-header { margin-bottom: 3.5rem; }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  transition: color var(--tr);
}

.faq-q:hover { color: var(--gold); }

.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1.5px solid rgba(201,162,39,0.35);
  border-radius: 50%;
  position: relative;
  transition: var(--tr);
}

.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}

.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 10px; transition: var(--tr); }

.faq-item.open .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-item.open .faq-q { color: var(--gold); }
.faq-item.open .faq-icon { background: var(--gold); border-color: var(--gold); }
.faq-item.open .faq-icon::before { background: #07111e; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}

.faq-item.open .faq-a { max-height: 300px; }

.faq-a p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  padding-bottom: 1.5rem;
}

.contact {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.contact::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(201,162,39,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.contact-header { margin-bottom: 4rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
  align-items: start;
  position: relative; z-index: 1;
}

.ci-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.ci-block {
  display: flex; align-items: flex-start; gap: 16px;
}

.ci-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-top: 2px;
}

.ci-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.ci-value {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.55;
  transition: color var(--tr);
}

a.ci-value:hover { color: var(--gold); }

.ci-contact-name {
  display: flex; align-items: center; gap: 14px;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.ci-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: #07111e;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.ci-contact-name strong { display:block; font-size: 0.9rem; color: var(--white); }
.ci-contact-name span   { font-size: 0.78rem; color: var(--text-muted); }

.contact-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex; flex-direction: column; gap: 6px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.3px;
}

.form-group label span { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(4,16,31,0.6);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: "Poppins", sans-serif;
  font-size: 0.88rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--tr), box-shadow var(--tr);
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201,162,39,0.5);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.08);
}

.form-group select option { background: var(--navy); color: var(--white); }

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

.form-note {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-align: center;
}

.footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(201,162,39,0.12);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
  padding-top: 4.5rem;
  padding-bottom: 3.5rem;
}

.footer-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 1.2rem 0;
}

.footer-contact-row {
  display: flex; gap: 12px; align-items: center;
  font-size: 0.82rem;
}

.footer-contact-row a { color: var(--gold); font-weight: 600; transition: opacity var(--tr); }
.footer-contact-row a:hover { opacity: 0.75; }
.footer-contact-row span { color: rgba(255,255,255,0.2); }

.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-col a,
.footer-col address,
.footer-col p {
  display: block;
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  transition: color var(--tr);
  line-height: 1.65;
}

.footer-col a:hover { color: var(--white); }

.footer-www {
  color: var(--gold) !important;
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.footer-hours { font-size: 0.82rem; color: var(--text-muted); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.5rem 5%;
}

.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }

.footer-kontaktio {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color var(--tr);
}

.footer-kontaktio:hover { color: var(--white); }
.footer-kontaktio strong { color: var(--gold); }

.stickyBar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: linear-gradient(90deg, var(--navy-mid), var(--navy-light));
  border-top: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem;
  padding: 0.9rem 2rem;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
}

.stickyBar.on { transform: none; }

.stickyBar__content {
  display: flex; align-items: center; gap: 1.2rem;
  flex-wrap: wrap;
}

.stickyBar__content b {
  font-size: 0.85rem;
  color: var(--white);
}

.stickyBar__content span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.stickyBtn {
  background: var(--gold);
  color: #07111e;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  transition: var(--tr);
}

.stickyBtn:hover { filter: brightness(1.1); }

.stickyClose {
  position: absolute; right: 1.5rem;
  background: none; border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.3rem;
  cursor: pointer; padding: 4px 8px;
  transition: color var(--tr);
}

.stickyClose:hover { color: var(--white); }

@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top    { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .process-grid  { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
}

@media (max-width: 900px) {
  .about-grid   { grid-template-columns: 1fr; }
  .why-grid     { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .about-features { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .g-wide { grid-column: span 2; }
  .g-tall { grid-row: span 1; }
  .about-badge-card { right: 0; }
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .hamburger { display: flex; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; position: static; margin: 2rem 8% 0; border-radius: var(--radius); }
  .stat-sep { display: none; }
  .hero-content { padding: 0 6%; }
  .hero { height: auto; padding: 140px 0 60px; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-grid  { grid-template-columns: 1fr; gap: 2rem; }
  .process-item  { border-left: none; padding-left: 0; border-top: 1px solid rgba(201,162,39,0.2); padding-top: 1.5rem; }
  .process-item:first-child { border-top: none; padding-top: 0; }
  .gallery-grid  { grid-template-columns: 1fr; }
  .g-wide, .g-tall { grid-column: span 1; grid-row: span 1; }
  .gallery-grid .g-item { height: 220px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .tcard { padding: 2rem 1.5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .testimonials-wrap { gap: 0.5rem; }
  .tslider-btn { display: none; }
  .section { padding: 80px 0; }
  .about-img-frame img { height: 320px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 1rem; padding: 1.2rem; }
  .stat-sep { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .g-item.g-tall, .g-item.g-wide { grid-row: auto; grid-column: auto; }
  .process-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .tcard-text { font-size: 0.88rem; }
  .about-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-img-frame { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1rem 1.5rem; }
  .stat-sep { display: none; }
  .img-placeholder { min-height: 200px; }
  .img-placeholder--gallery { min-height: 180px; }
}
