@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --oeb-bg: #0f1010;
  --oeb-bg-soft: #171919;
  --oeb-surface: #1b1d1c;
  --oeb-surface-2: #222523;
  --oeb-text: #eceae6;
  --oeb-text-muted: #b8b4ac;
  --oeb-accent: #bea57a;
  --oeb-accent-soft: rgba(190, 165, 122, 0.24);
  --oeb-border: rgba(255, 255, 255, 0.12);
  --oeb-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

* {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
body.oeb-premium {
  font-family: 'Manrope', sans-serif !important;
  background: radial-gradient(circle at 20% -30%, rgba(190, 165, 122, 0.18), transparent 45%),
    radial-gradient(circle at 80% 120%, rgba(190, 165, 122, 0.12), transparent 40%),
    var(--oeb-bg);
  color: var(--oeb-text);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.35;
  z-index: -1;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.02em;
}

a {
  color: inherit;
}

.navbar {
  background: rgba(10, 10, 10, 0.84) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  transition: background-color 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.navbar.scrolled,
.navbar.is-scrolled {
  background: rgba(8, 8, 8, 0.95) !important;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.38);
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.84);
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.65rem 0.95rem !important;
  position: relative;
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.45rem;
  height: 1px;
  background: var(--oeb-accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #fff;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  transform: scaleX(1);
}

header,
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

header::before,
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(100deg, rgba(6, 6, 6, 0.86), rgba(6, 6, 6, 0.5) 45%, rgba(6, 6, 6, 0.72));
}

header::after,
.hero::after {
  background: transparent !important;
}

header .container,
.hero .container,
header h1,
header p,
.hero h1,
.hero p {
  position: relative;
  z-index: 1;
}

header {
  min-height: 100svh;
  background-position: center center !important;
  background-size: cover !important;
}

.hero {
  min-height: 64svh;
  background-position: center center !important;
  background-size: cover !important;
  height: 64svh !important;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  color: var(--oeb-accent);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.hero-title {
  font-size: clamp(2.15rem, 5.4vw, 5.2rem);
  line-height: 0.95;
  color: #f7f4ef;
  max-width: 11ch;
  margin-bottom: 1.2rem;
}

.hero-copy {
  max-width: 52ch;
  color: var(--oeb-text-muted);
  font-size: clamp(0.95rem, 1.25vw, 1.18rem);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-size: 0.74rem;
  padding: 0.92rem 1.8rem;
  border-width: 1px;
}

.btn-light {
  background: #f0ece5;
  border-color: #f0ece5;
  color: #111;
}

.btn-light:hover {
  background: #fff;
  border-color: #fff;
  color: #000;
}

.btn-dark {
  background: var(--oeb-accent);
  border-color: var(--oeb-accent);
  color: #15120f;
}

.btn-dark:hover {
  background: #d0ba94;
  border-color: #d0ba94;
  color: #15120f;
}

.btn-outline-light {
  border-color: rgba(240, 236, 229, 0.55);
  color: #f0ece5;
}

.btn-outline-light:hover {
  background: #f0ece5;
  color: #101010;
  border-color: #f0ece5;
}

.btn-success {
  background: #155e41;
  border-color: #155e41;
}

.btn-success:hover {
  background: #1d7350;
  border-color: #1d7350;
}

section.py-5.bg-dark,
.contact-section,
.contact-cards-section,
.contact-form-section {
  background: linear-gradient(180deg, rgba(20, 21, 21, 0.96), rgba(15, 16, 16, 0.98)) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

#features h2,
.section-title h2,
.contact-section h2,
.form-header h2,
.project-description h3 {
  color: #f7f4ef;
  letter-spacing: 0.01em;
}

#features p,
.section-title p,
.contact-section p,
.form-header p,
.project-description p,
.card-text {
  color: var(--oeb-text-muted) !important;
}

#features .feature,
.card-icon,
.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, var(--oeb-accent), #8f7752) !important;
  color: #101010 !important;
  box-shadow: 0 10px 30px rgba(190, 165, 122, 0.25);
}

.service-card,
.contact-card,
.project-description,
.contact-section .card,
.contact-form-card,
.gallery-swiper .swiper-slide,
.project-thumb,
.portfolio .col-lg-4,
.portfolio .col-md-4 {
  background: linear-gradient(160deg, rgba(30, 32, 31, 0.95), rgba(22, 24, 24, 0.95)) !important;
  border: 1px solid var(--oeb-border) !important;
  border-radius: 22px !important;
  box-shadow: var(--oeb-shadow) !important;
  overflow: hidden;
}

.project-thumb,
.portfolio .col-lg-4,
.portfolio .col-md-4 {
  border-radius: 16px !important;
}

.project-thumb,
.project-thumb img,
.portfolio img {
  transition: transform 0.45s ease, filter 0.45s ease;
}

.project-thumb img,
.portfolio img {
  filter: saturate(0.82) contrast(1.05) brightness(0.92);
}

.project-thumb:hover img,
.portfolio img:hover {
  transform: scale(1.05);
  filter: saturate(1) contrast(1.08) brightness(1);
}

.portfolio .col-lg-4,
.portfolio .col-md-4 {
  padding: 0.4rem;
}

.portfolio .col-lg-4 p,
.portfolio .col-md-4 p,
.portfolio .text-center {
  color: #ece8e0 !important;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.project-description {
  padding: clamp(1.5rem, 2vw, 2.4rem) !important;
}

.project-description strong,
.highlight i,
.hero-eyebrow,
.section-title .text-muted {
  color: var(--oeb-accent) !important;
}

.highlight {
  padding: 0.85rem 1rem;
  border-left: 2px solid var(--oeb-accent-soft);
  background: rgba(190, 165, 122, 0.07);
  border-radius: 10px;
}

.gallery-swiper {
  padding-bottom: 58px !important;
}

.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev,
.fullscreen-modal .swiper-button-next,
.fullscreen-modal .swiper-button-prev {
  background: rgba(9, 9, 9, 0.7) !important;
  border: 1px solid rgba(240, 236, 229, 0.28);
  backdrop-filter: blur(8px);
}

.gallery-swiper .swiper-button-next:hover,
.gallery-swiper .swiper-button-prev:hover,
.fullscreen-modal .swiper-button-next:hover,
.fullscreen-modal .swiper-button-prev:hover {
  background: rgba(9, 9, 9, 0.96) !important;
}

.close-fullscreen,
.close-swiper {
  background: rgba(14, 14, 14, 0.65) !important;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-section .card,
.contact-form-card {
  border-radius: 24px !important;
}

.contact-section .card-body,
.contact-form-card {
  background: linear-gradient(180deg, #f2eee7, #e7e0d4) !important;
  color: #1b1915 !important;
}

.contact-section .card-body h5,
.form-label,
.contact-form-card h5 {
  color: #1b1915 !important;
}

.form-control {
  border-radius: 12px;
  border: 1px solid rgba(26, 23, 19, 0.22);
  background: rgba(255, 255, 255, 0.72);
  color: #1b1a17;
}

.form-control:focus {
  border-color: rgba(190, 165, 122, 0.9);
  box-shadow: 0 0 0 0.2rem rgba(190, 165, 122, 0.2);
}

.form-control::placeholder {
  color: rgba(40, 37, 32, 0.58);
}

.contact-card a,
.contact-card p {
  color: #ede7db;
}

.contact-card a:hover {
  color: #fff;
}

.contact-icon {
  margin-bottom: 1rem;
}

footer {
  background: #0a0a0a !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer .small,
footer strong {
  color: rgba(236, 234, 230, 0.88) !important;
  letter-spacing: 0.04em;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-ready.reveal-in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .hero {
    min-height: 50svh;
    height: 50svh !important;
  }

  .navbar .nav-link {
    padding: 0.7rem 0 !important;
    letter-spacing: 0.06em;
  }

  .hero-title {
    max-width: 100%;
  }

  .gallery-swiper {
    height: 320px !important;
  }

  .project-description,
  .service-card,
  .contact-card,
  .contact-form-card,
  .contact-section .card {
    border-radius: 16px !important;
  }
}

@media (max-width: 767.98px) {
  header {
    min-height: 94svh;
  }

  .hero-copy {
    line-height: 1.65;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .gallery-swiper {
    height: 280px !important;
  }

  .close-fullscreen,
  .close-swiper {
    width: 48px;
    height: 48px;
  }
}
