:root {
  --color-dark: #0c0c0c;
  --color-light: #f8f8f8;
  --color-mid: #e0e0e0;
  --color-white: #ffffff;
  --color-accent: #c8ad7f;
  --color-text: #494949;
  --color-border: rgba(12, 12, 12, 0.08);
  --color-border-light: rgba(255, 255, 255, 0.14);
  --shadow-soft: 0 18px 55px rgba(12, 12, 12, 0.08);
  --shadow-deep: 0 28px 80px rgba(12, 12, 12, 0.22);
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --transition: all 0.35s ease;
  --header-height: 104px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Lato", sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(200, 173, 127, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfb 50%, #f8f8f8 100%);
  overflow-x: clip;
}

a {
  color: #c8ad7f;
  text-decoration: none;
  transition: var(--transition);
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Abel", sans-serif;
  color: var(--color-dark);
  letter-spacing: 0.02em;
}

p {
  margin-bottom: 0;
  line-height: 1.8;
}

.container {
  max-width: 1320px;
}

.section-space {
  padding: 120px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 54px;
}

.section-heading.text-start {
  margin-left: 0;
}

.section-heading h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 3vw, 1.45rem);
  line-height: 1.12;
}

.section-heading p {
  margin-top: 20px;
  font-size: 1.02rem;
  color: rgba(73, 73, 73, 0.88);
}

.section-heading.text-white h2,
.section-heading.text-white p {
  color: var(--color-white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 0.94rem 1.7rem;
  font-weight: 700;
  font-size: 0.93rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-premium {
  color: var(--color-white);
  background: var(--color-dark);
  border: 1px solid var(--color-dark);
  box-shadow: 0 12px 30px rgba(12, 12, 12, 0.16);
}

.btn-premium:hover {
  color: var(--color-dark);
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.btn-outline-premium {
  color: var(--color-dark);
  border: 1px solid rgba(12, 12, 12, 0.14);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(8px);
}

.btn-outline-premium:hover,
.btn-outline-light-premium:hover {
  color: var(--color-dark);
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.btn-outline-light-premium {
  color: var(--color-dark);
  border: 1px solid rgba(12, 12, 12, 0.12);
  background: rgba(255, 255, 255, 0.8);
}

.dark-outline {
  color: var(--color-dark);
  border-color: rgba(12, 12, 12, 0.18);
  background: rgba(255, 255, 255, 0.55);
}

.dark-outline:hover {
  color: var(--color-white);
  background: var(--color-dark);
  border-color: var(--color-dark);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--color-dark);
}

.text-link:hover {
  color: var(--color-accent);
  gap: 14px;
}

.media-chip {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-white);
  background: rgba(12, 12, 12, 0.62);
  backdrop-filter: blur(10px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1040;
  padding: 18px 0;
  transition: transform 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  background: rgba(255, 255, 255, 0.88);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(12, 12, 12, 0.06);
  z-index: -1;
}

.site-header.header-scrolled {
  padding: 10px 0;
  box-shadow: 0 14px 45px rgba(12, 12, 12, 0.08);
}

.site-header.header-scrolled::after {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(12, 12, 12, 0.06);
}

.site-header.header-hidden {
  transform: translateY(-105%);
}

.navbar {
  padding: 0;
  overflow: visible;
}

.navbar > .container {
  display: flex;
  align-items: center;
  gap: 24px;
}

.navbar-brand img,
.offcanvas-brand img,
.footer-brand img {
  width: 230px;
}

.navbar-nav {
  gap: 8px;
}

#primaryNav {
  flex: 1 1 auto;
}

.navbar .dropdown {
  position: relative;
}

.dropdown-menu {
  min-width: 220px;
  margin-top: 0;
  padding: 14px 10px;
  border: 1px solid rgba(12, 12, 12, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
  z-index: 1200;
}

.dropdown-item {
  border-radius: 12px;
  padding: 0.72rem 0.95rem;
  font-weight: 700;
  color: var(--color-dark);
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: rgba(200, 173, 127, 0.18);
  color: var(--color-dark);
}

@media (min-width: 1200px) {
  .navbar .dropdown {
    padding-bottom: 18px;
    margin-bottom: -18px;
  }

  .navbar .dropdown-menu {
    display: block;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .navbar .dropdown:hover .dropdown-menu,
  .navbar .dropdown:focus-within .dropdown-menu,
  .navbar .dropdown .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .navbar .dropdown:hover .nav-dropdown-icon,
  .navbar .dropdown:focus-within .nav-dropdown-icon,
  .navbar .dropdown .dropdown-toggle[aria-expanded="true"] .nav-dropdown-icon {
    transform: rotate(180deg);
  }
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1rem !important;
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-dark);
  cursor: pointer;
}

.dropdown-toggle::after {
  display: none;
}

.nav-dropdown-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  transition: transform 0.22s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 1rem;
  bottom: 0.48rem;
  width: calc(100% - 2rem);
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-dark);
}

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

.header-actions {
  align-items: center;
  gap: 16px;
}

.header-social a,
.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--color-dark);
  border: 1px solid rgba(12, 12, 12, 0.12);
  background: rgba(255, 255, 255, 0.6);
}

.header-social a:hover,
.footer-social:hover {
  color: var(--color-white);
  background: var(--color-dark);
  border-color: var(--color-dark);
  transform: translateY(-2px);
}

.menu-toggle-lines {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle-lines span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-dark);
}

.offcanvas {
  width: min(92vw, 420px) !important;
  padding: 18px;
  border-left: 0;
  background:
    radial-gradient(circle at top left, rgba(200, 173, 127, 0.14), transparent 38%),
    var(--color-white);
}

.offcanvas-header {
  padding: 8px 0 24px;
}

.offcanvas-body {
  padding: 0;
}

.mobile-nav-links .nav-link {
  padding: 1rem 0 !important;
  border-bottom: 1px solid rgba(12, 12, 12, 0.08);
}

.mobile-subnav .nav-link {
  padding-top: 0.7rem !important;
  padding-bottom: 0.7rem !important;
  padding-left: 1rem !important;
  font-size: 0.82rem;
  color: rgba(12, 12, 12, 0.7);
}

.mobile-menu-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(200, 173, 127, 0.18), rgba(255, 255, 255, 0.92));
  color: var(--color-text);
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-dark);
  font-weight: 700;
}

.social-pill:hover {
  color: var(--color-accent);
}

.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 160px 0 150px;
  color: var(--color-dark);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.76) 44%, rgba(255, 255, 255, 0.48) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.2) 100%),
    radial-gradient(circle at top right, rgba(200, 173, 127, 0.2), transparent 30%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 860px;
  text-align: center;
  margin: 0 auto;
}

.hero-rotator {
  display: grid;
  max-width: 860px;
  margin: 0 auto;
}

.hero-slide {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-title {
  margin-top: 18px;
  font-size: clamp(3rem, 6vw, 3.7rem);
  line-height: 0.96;
  color: var(--color-dark);
}

.hero-text {
  max-width: 720px;
  margin-top: 22px;
  font-size: 1.08rem;
  color: rgba(12, 12, 12, 0.72);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 42px;
  justify-content: center;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 2;
  width: 34px;
  height: 56px;
  border: 1px solid rgba(12, 12, 12, 0.18);
  border-radius: 999px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10px;
}

.scroll-cue span {
  width: 6px;
  height: 14px;
  border-radius: 999px;
  background: var(--color-dark);
  animation: scrollCue 1.8s infinite;
}

@keyframes scrollCue {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(18px);
  }
}

.trust-strip {
  position: relative;
  margin-top: 30px;
  padding-bottom: 10px;
}

.trust-strip .container {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.trust-item {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 12px;
  color: var(--color-dark);
}

.trust-item i {
  font-size: 1.25rem;
  color: var(--color-accent);
}

.trust-item span {
  font-weight: 700;
  line-height: 1.5;
}

.services-section {
  padding-top: 90px;
}

.service-card,
.process-card,
.stat-card,
.testimonial-card,
.contact-card,
.contact-form-wrap,
.final-cta-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.service-card {
  height: 100%;
  overflow: hidden;
  transition: var(--transition);
}

.service-card:hover,
.project-card:hover,
.video-card:hover,
.testimonial-card:hover,
.contact-card:hover,
.process-card:hover {
  transform: translateY(-6px);
}

.service-media {
  position: relative;
  overflow: hidden;
}

.service-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-media img,
.project-card:hover img,
.video-card:hover img {
  transform: scale(1.05);
}

.service-body {
  padding: 30px 28px;
}

.service-body h3 {
  font-size: 1.9rem;
}

.service-body p {
  margin: 12px 0 18px;
}

.about-media {
  position: relative;
  max-width: 560px;
}

.about-feature-video {
  max-width: 1080px;
  margin: 72px auto 0;
  overflow: hidden;
  border-radius: 32px;
  background: #000;
  border: 1px solid rgba(12, 12, 12, 0.08);
  box-shadow: 0 28px 90px rgba(12, 12, 12, 0.12);
}

.about-feature-video .ratio {
  --bs-aspect-ratio: 50%;
}

.about-feature-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.about-image-primary {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
}

.about-image-primary {
  width: 100%;
  height: 540px;
}

.about-image-clean {
  box-shadow: 0 24px 70px rgba(12, 12, 12, 0.14);
}

.about-image-primary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-media-note {
  margin-top: 18px;
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(12, 12, 12, 0.08);
  box-shadow: var(--shadow-soft);
}

.about-media-note .eyebrow {
  margin-bottom: 10px;
}

.about-media-note p {
  color: rgba(12, 12, 12, 0.74);
}

.about-value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0;
}

.about-value-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(12, 12, 12, 0.07);
  box-shadow: 0 12px 28px rgba(12, 12, 12, 0.05);
}

.about-value-card i {
  margin-top: 2px;
  color: var(--color-accent);
}

.about-value-card span {
  color: var(--color-dark);
  font-weight: 700;
  line-height: 1.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 34px;
}

.stat-card {
  padding: 22px 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 28px rgba(12, 12, 12, 0.05);
}

.stat-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Abel", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--color-dark);
}

.stat-card strong::after {
  content: "+";
}

.stat-card:last-child strong::after {
  content: "%";
}

.stat-card span {
  display: block;
  font-size: 0.95rem;
}

.process-section {
  background:
    radial-gradient(circle at center, rgba(200, 173, 127, 0.09), transparent 34%),
    #fcfcfc;
}

.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.process-flow::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 72px;
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 173, 127, 0.15), rgba(200, 173, 127, 0.55), rgba(200, 173, 127, 0.15));
}

.process-step {
  position: relative;
  min-height: 100%;
  padding: 24px 24px 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(12, 12, 12, 0.07);
  box-shadow: 0 18px 38px rgba(12, 12, 12, 0.06);
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(12, 12, 12, 0.09);
}

.process-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(12, 12, 12, 0.04);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  color: rgba(12, 12, 12, 0.42);
}

.process-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  color: var(--color-dark);
  background: rgba(200, 173, 127, 0.22);
}

.process-step h3 {
  font-size: 1.55rem;
  margin-bottom: 14px;
}

.process-step p {
  color: rgba(12, 12, 12, 0.72);
}

.process-arrow {
  position: absolute;
  top: 46px;
  right: -18px;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-dark);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(200, 173, 127, 0.34);
  box-shadow: 0 8px 22px rgba(12, 12, 12, 0.08);
}

.process-step-final {
  background:
    linear-gradient(180deg, rgba(200, 173, 127, 0.12), rgba(255, 255, 255, 0.96));
}

.projects-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}

.project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.project-filter-btn,
.project-zoom-btn,
.project-detail-btn {
  transition: var(--transition);
}

.project-filter-btn {
  padding: 0.8rem 1.2rem;
  border: 1px solid rgba(12, 12, 12, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-dark);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-filter-btn.active,
.project-filter-btn:hover {
  background: var(--color-dark);
  border-color: var(--color-dark);
  color: var(--color-white);
}

.project-filter-btn:focus-visible,
.project-zoom-btn:focus-visible,
.project-detail-btn:focus-visible {
  outline: 2px solid rgba(200, 173, 127, 0.8);
  outline-offset: 3px;
}

.projects-carousel {
  overflow: visible;
}

.projects-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.project-slide {
  height: 100%;
  will-change: opacity, transform;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.project-slide.is-filtering {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.project-slide.is-hidden {
  display: none;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(12, 12, 12, 0.08);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.12), rgba(12, 12, 12, 0.78));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.project-zoom-btn {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.14);
  color: var(--color-white);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(12, 12, 12, 0.12);
  flex-shrink: 0;
}

.project-zoom-btn:hover {
  color: var(--color-dark);
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.project-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 28px;
  color: var(--color-white);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.project-card:hover::after,
.project-card:focus-within::after {
  opacity: 1;
}

.project-card:hover .project-overlay,
.project-card:focus-within .project-overlay {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: none), (pointer: coarse) {
  .project-card::after {
    opacity: 1;
  }

  .project-overlay {
    opacity: 1;
    transform: translateY(0);
  }
}

.project-kicker {
  display: inline-block;
  margin-bottom: 2px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.project-overlay h3 {
  color: var(--color-white);
  font-size: 1.8rem;
  line-height: 1.12;
  margin-bottom: 0;
}

.project-overlay p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.project-overlay p::before {
  content: "\f3c5";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  color: var(--color-accent);
}

.project-actions {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}

.project-detail-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.92rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(10px);
}

.project-detail-btn:hover {
  color: var(--color-dark);
  background: var(--color-white);
  border-color: var(--color-white);
}

.section-cta {
  margin-top: 38px;
}

.videos-section {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(200, 173, 127, 0.14), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
}

.videos-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.35));
}

.videos-section .container {
  position: relative;
  z-index: 1;
}

.reels-grid {
  align-items: stretch;
}

.instagram-embed-card {
  height: 100%;
  padding: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(12, 12, 12, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.instagram-embed-card .instagram-media {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  border-radius: 22px !important;
  box-shadow: none !important;
}

.video-card {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(12, 12, 12, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  text-align: left;
  transition: var(--transition);
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.06), rgba(12, 12, 12, 0.62));
}

.video-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.video-card-inner {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px;
  color: var(--color-white);
}

.play-button {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.video-card:hover .play-button {
  background: var(--color-accent);
  color: var(--color-dark);
}

.video-meta {
  display: flex;
  flex-direction: column;
}

.video-meta strong {
  font-family: "Abel", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.04em;
}

.video-meta small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.testimonials-section {
  background:
    radial-gradient(circle at top center, rgba(200, 173, 127, 0.12), transparent 30%),
    #fbfbfb;
}

.carousel-indicators {
  position: static;
  margin: 0 0 30px;
}

.carousel-indicators [data-bs-target] {
  width: 48px;
  height: 4px;
  margin: 0 6px;
  border: 0;
  border-radius: 999px;
  background-color: rgba(12, 12, 12, 0.18);
}

.carousel-indicators .active {
  background-color: var(--color-accent);
}

.testimonial-card {
  height: 100%;
  padding: 34px 32px;
  transition: var(--transition);
}

.testimonial-card i {
  margin-bottom: 18px;
  font-size: 1.7rem;
  color: var(--color-accent);
}

.testimonial-card p {
  margin-bottom: 18px;
  color: var(--color-dark);
}

.testimonial-card strong {
  font-family: "Abel", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-dark);
}

.faq-accordion {
  max-width: none;
  margin: 0;
}

.accordion-item {
  margin-bottom: 18px;
  border: 1px solid rgba(12, 12, 12, 0.08);
  border-radius: 20px !important;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.accordion-button {
  padding: 24px 28px;
  font-family: "Abel", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.02em;
  color: var(--color-dark);
  background: transparent;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--color-dark);
  background: rgba(200, 173, 127, 0.12);
}

.accordion-button::after {
  background-size: 1.1rem;
}

.accordion-body {
  padding: 0 28px 26px;
}

.faq-contact-panel {
  padding: 34px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.9)),
    radial-gradient(circle at top right, rgba(200, 173, 127, 0.12), transparent 38%);
  border: 1px solid rgba(12, 12, 12, 0.08);
  box-shadow: var(--shadow-soft);
}

.faq-contact-panel .eyebrow {
  margin-bottom: 14px;
}

.faq-contact-panel h3 {
  font-size: clamp(2rem, 3vw, 2rem);
  line-height: 1.08;
}

.faq-contact-panel > p {
  margin-top: 18px;
  color: rgba(12, 12, 12, 0.72);
}

.faq-contact-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 22px;
}

.faq-contact-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(248, 248, 248, 0.92);
  border: 1px solid rgba(12, 12, 12, 0.07);
}

.faq-contact-card-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.faq-contact-copy {
  flex: 1 1 auto;
}

.faq-contact-photo {
  width: 112px;
  height: 112px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 18px;
}

.faq-contact-card h4 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.faq-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--color-dark);
  font-weight: 700;
}

.faq-contact-link i {
  width: 16px;
  color: var(--color-accent);
  text-align: center;
}

.faq-contact-card a:hover {
  color: var(--color-accent);
}

.faq-contact-meta {
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
}

.faq-contact-meta p {
  color: rgba(12, 12, 12, 0.72);
}

.faq-contact-meta strong {
  color: var(--color-dark);
}

.final-cta-section {
  padding-top: 0;
}

.final-cta-card {
  padding: 70px clamp(26px, 5vw, 72px);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.9)),
    url("https://images.squarespace-cdn.com/content/v1/651f787f237f7c601f309c00/35c73ddb-0d5b-4131-9d31-ee7d5f8e4fb9/7T5A7102.jpg?format=1500w") center/cover no-repeat;
}

.final-cta-card h2 {
  margin: 18px 0 14px;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.final-cta-card p {
  max-width: 640px;
  margin: 0 auto;
}

.final-cta-card .hero-actions {
  justify-content: center;
}

.contact-stack {
  display: grid;
  gap: 16px;
}

.service-area-panel {
  padding: 34px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.9)),
    radial-gradient(circle at top right, rgba(200, 173, 127, 0.12), transparent 38%);
  border: 1px solid rgba(12, 12, 12, 0.08);
  box-shadow: var(--shadow-soft);
}

.service-area-panel .section-heading h2 {
  max-width: 420px;
}

.service-area-map {
  margin-top: 28px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(12, 12, 12, 0.08);
  box-shadow: 0 18px 40px rgba(12, 12, 12, 0.08);
}

.service-area-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.88) contrast(1.02);
}

.service-area-caption {
  margin-top: 18px;
  font-weight: 700;
  color: rgba(12, 12, 12, 0.72);
}

.contact-card {
  padding: 24px;
  transition: var(--transition);
}

.contact-card h3 {
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.contact-card a,
.footer-links a {
  display: block;
  margin-bottom: 8px;
}

.contact-card a:hover,
.footer-links a:hover {
  color: var(--color-accent);
}

.contact-form-wrap {
  padding: 34px;
}

.contact-form .form-label {
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-dark);
}

.form-control,
.form-select {
  min-height: 58px;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(12, 12, 12, 0.1);
  background: #fbfbfb;
  box-shadow: none !important;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(200, 173, 127, 0.8);
}

textarea.form-control {
  min-height: 180px;
  resize: vertical;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
}

.form-footer p {
  max-width: 420px;
  font-size: 0.95rem;
}

.site-footer {
  padding: 85px 0 34px;
  color: rgba(12, 12, 12, 0.78);
  background:
    radial-gradient(circle at top left, rgba(200, 173, 127, 0.12), transparent 30%),
    #f5f3ef;
}

.site-footer h3,
.site-footer .footer-brand p,
.site-footer .footer-links p,
.site-footer a {
  color: inherit;
}

.site-footer h3 {
  margin-bottom: 18px;
  font-size: 1.35rem;
  color: var(--color-dark);
}

.footer-brand p {
  max-width: 320px;
  margin-top: 20px;
}

.footer-abn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-weight: 700;
  color: var(--color-dark);
}

.footer-abn i {
  color: var(--color-accent);
}

.footer-links {
  height: 100%;
}

.footer-links a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-links a i {
  width: 16px;
  margin-top: 4px;
  text-align: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.footer-links a span {
  min-width: 0;
  word-break: break-word;
}

.footer-social {
  width: auto;
  height: auto;
  margin-top: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  gap: 10px;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(12, 12, 12, 0.08);
  text-align: center;
}

.scroll-top-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1035;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: var(--color-dark);
  color: var(--color-white);
  box-shadow: 0 16px 38px rgba(12, 12, 12, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background-color 0.3s ease;
}

.scroll-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--color-accent);
  color: var(--color-dark);
}

.floating-whatsapp-btn {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 1035;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.28);
  animation: whatsappPulse 2.2s ease-in-out infinite;
}

.floating-whatsapp-btn::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(37, 211, 102, 0.34);
  animation: whatsappRing 2.2s ease-out infinite;
}

.floating-whatsapp-btn i {
  font-size: 1.6rem;
}

.floating-whatsapp-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.floating-social-group {
  position: fixed;
  left: 0;
  top: 50%;
  z-index: 1035;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transform: translateY(-50%);
}

.floating-social-btn {
  display: inline-flex;
  align-items: center;
  border-radius: 0 999px 999px 0;
  background: rgba(12, 12, 12, 0.92);
  color: var(--color-white);
  box-shadow: 0 16px 36px rgba(12, 12, 12, 0.14);
  overflow: hidden;
  min-width: 54px;
  transition: box-shadow 0.3s ease;
}

.floating-social-label {
  max-width: 0;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: max-width 0.32s ease, padding 0.32s ease;
}

.floating-social-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-dark);
  background: var(--color-accent);
  animation: socialIconPulse 2.8s ease-in-out infinite;
}

.floating-social-btn:nth-child(2) .floating-social-icon {
  animation-delay: 0.18s;
}

.floating-social-btn:nth-child(3) .floating-social-icon {
  animation-delay: 0.36s;
}

.floating-social-btn:nth-child(4) .floating-social-icon {
  animation-delay: 0.54s;
}

.floating-social-btn:hover {
  color: var(--color-white);
  box-shadow: 0 18px 40px rgba(12, 12, 12, 0.2);
}

.floating-social-btn:hover .floating-social-label {
  max-width: 140px;
  padding: 0 18px 0 20px;
}

@keyframes socialIconPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.07);
  }
}

@keyframes whatsappPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@keyframes whatsappRing {
  0% {
    opacity: 0.7;
    transform: scale(0.92);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.3);
  }
}

.glightbox-clean .gslide-description,
.project-detail-modal .modal-content {
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #050505;
}

.glightbox-clean .gslide-media {
  box-shadow: none;
}

.glightbox-clean .gslide-image img {
  max-height: 82vh;
  object-fit: contain;
}

.project-detail-modal .modal-header {
  padding: 20px 22px 0;
  border: 0;
}

.project-detail-modal .modal-title {
  color: var(--color-white);
  font-size: 1.7rem;
}

.project-detail-modal .modal-body {
  padding: 22px;
}

.project-detail-kicker {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.project-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.project-detail-image-wrap img {
  width: 100%;
  border-radius: 22px;
}

.project-detail-copy {
  color: rgba(255, 255, 255, 0.82);
}

.project-detail-location {
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.project-detail-copy .btn {
  margin-top: 24px;
}

.scroll-reveal {
  opacity: 0;
}

.scroll-reveal.revealed {
  opacity: 1;
}

.reveal-ready {
  animation-duration: 0.95s;
}

body.offcanvas-open {
  overflow: hidden;
}

/* Inner Pages */
.page-banner {
  position: relative;
  margin-top: calc(var(--header-height) - 6px);
  min-height: clamp(320px, 44vh, 480px);
  display: flex;
  align-items: flex-end;
  padding: 86px 0 56px;
  overflow: hidden;
}

.page-banner-media {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.74) 44%, rgba(255, 255, 255, 0.55) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.34));
}

.page-banner-content {
  position: relative;
  z-index: 1;
}

.premium-breadcrumb {
  margin: 0;
  gap: 6px;
}

.premium-breadcrumb .breadcrumb-item {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(12, 12, 12, 0.66);
}

.premium-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(12, 12, 12, 0.42);
}

.premium-breadcrumb .breadcrumb-item a {
  color: rgba(12, 12, 12, 0.72);
}

.premium-breadcrumb .breadcrumb-item.active {
  color: var(--color-dark);
}

.page-banner h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 0.98;
}

.page-banner p {
  max-width: 640px;
  margin-top: 16px;
  color: rgba(12, 12, 12, 0.72);
}

.info-card,
.mini-info-card {
  height: 100%;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(12, 12, 12, 0.08);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.info-card:hover,
.mini-info-card:hover {
  transform: translateY(-5px);
}

.info-card i,
.mini-info-card i {
  font-size: 1.2rem;
  color: var(--color-accent);
}

.info-card h3,
.mini-info-card h3 {
  margin: 14px 0 10px;
  font-size: 1.5rem;
}

.info-card p,
.mini-info-card p {
  color: rgba(12, 12, 12, 0.72);
}

.team-stack {
  display: grid;
  gap: 16px;
}

.team-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 20px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(12, 12, 12, 0.08);
  box-shadow: var(--shadow-soft);
}

.team-card img {
  width: 132px;
  height: 132px;
  object-fit: cover;
  border-radius: 16px;
}

.team-card h3 {
  font-size: 1.75rem;
}

.team-card p {
  margin-bottom: 10px;
  color: rgba(12, 12, 12, 0.62);
}

.team-card a {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  color: var(--color-dark);
}

.team-card a i {
  width: 18px;
  margin-right: 6px;
  color: var(--color-accent);
}

.quick-process {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
}

.quick-process-item {
  min-width: 170px;
  padding: 18px 20px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(12, 12, 12, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.quick-process-item span {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  color: rgba(12, 12, 12, 0.46);
}

.quick-process-item h3 {
  font-size: 1.4rem;
}

.quick-process-arrow {
  color: var(--color-accent);
  font-size: 1.2rem;
}

.gallery-thumb {
  display: block;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(12, 12, 12, 0.08);
  box-shadow: var(--shadow-soft);
}

.gallery-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-thumb:hover img {
  transform: scale(1.05);
}

.project-view-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.86rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.project-view-link:hover {
  color: var(--color-dark);
  background: var(--color-white);
  border-color: var(--color-white);
}

.project-single-hero {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(12, 12, 12, 0.08);
  box-shadow: var(--shadow-soft);
}

.project-single-hero img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}

.project-single-meta {
  margin-top: 26px;
}

.project-single-meta h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.project-single-meta p {
  margin-top: 12px;
  color: rgba(12, 12, 12, 0.66);
  font-weight: 700;
}

.project-single-meta p i {
  color: var(--color-accent);
  margin-right: 6px;
}

.testimonial-feature {
  padding: 44px clamp(22px, 5vw, 56px);
  border-radius: var(--radius-lg);
  text-align: center;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(12, 12, 12, 0.08);
  box-shadow: var(--shadow-soft);
}

.testimonial-feature i {
  font-size: 1.7rem;
  color: var(--color-accent);
}

.testimonial-feature p {
  max-width: 880px;
  margin: 16px auto 12px;
  font-size: clamp(1.18rem, 2vw, 1.5rem);
  line-height: 1.52;
  color: var(--color-dark);
}

.testimonial-feature strong {
  font-family: "Abel", sans-serif;
  font-size: 1.4rem;
}

.contact-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-card h3 i {
  color: var(--color-accent);
}

.form-status {
  display: none;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 700;
}

.form-status.is-success,
.form-status.is-error {
  display: block;
}

.form-status.is-success {
  background: rgba(14, 152, 59, 0.12);
  color: #116a2f;
  border: 1px solid rgba(14, 152, 59, 0.22);
}

.form-status.is-error {
  background: rgba(188, 27, 27, 0.1);
  color: #a51f1f;
  border: 1px solid rgba(188, 27, 27, 0.2);
}

.field-error {
  display: block;
  margin-top: 8px;
  font-size: 0.82rem;
  color: #b32222;
  font-weight: 700;
}

.form-control.is-invalid,
.form-select.is-invalid {
  border-color: rgba(188, 27, 27, 0.58);
}
