*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #0a0a0a;
  --white: #fff;
  --off: #f6f6f6;
  --mid: #888;
  --border: #e0e0e0;
  --T: cubic-bezier(.76, 0, .24, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  cursor: none;
}


/* CURSOR */
.cr {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--black);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, opacity .3s;
}

.cr-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(0, 0, 0, .3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, opacity .3s;
  opacity: .5;
}

.cr.h {
  width: 20px;
  height: 20px;
}

.cr-ring.h {
  width: 60px;
  height: 60px;
  opacity: .15;
}

.cr.hidden,
.cr-ring.hidden {
  opacity: 0;
}

/* LOADER */
.loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity .9s, visibility .9s;
}

.loader.out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ld-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}

.ld-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--white);
  animation: ldp 1.6s ease-in-out infinite;
}

.ld-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.ld-text h2 {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 24px;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: var(--white);
}

.ld-text p {
  font-size: 9px;
  letter-spacing: 3px;
  color: #666;
  text-transform: uppercase;
  margin-top: 5px;
}

.ld-bar {
  width: 200px;
  height: 1px;
  background: #222;
  margin-top: 40px;
  overflow: hidden;
}

.ld-fill {
  height: 100%;
  background: var(--white);
  width: 0;
  animation: ldFill 2.4s var(--T) forwards;
}

@keyframes ldFill {
  to {
    width: 100%
  }
}

@keyframes ldp {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .4
  }
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 78px;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s, box-shadow .4s, height .4s;
}

nav.on-white {
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

nav.on-black {
  background: rgba(10, 10, 10, .96);
  backdrop-filter: blur(20px);
}

nav.compact {
  height: 62px;
}

.nav-logo img {
  width: 250px;
  transition: filter .3s, transform .4s;
}

nav.on-white .nav-logo img {
  filter: brightness(0) invert(0);
}

.nav-logo img {
  filter: brightness(0) invert(1);
}

.nav-logo:hover img {
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  list-style: none;
}

nav.on-white .nav-links a {
  color: #333;
}

nav.on-white .nav-links a::after {
  background: #333;
}

.nav-links a {
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  transition: color .3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width .4s var(--T);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--black) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  letter-spacing: 2px !important;
  transition: opacity .3s, transform .3s !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  opacity: .8;
  transform: translateY(-2px) !important;
}

.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.ham span {
  display: block;
  width: 26px;
  height: 1.5px;
  transition: transform .4s var(--T), opacity .3s;
}

nav.on-white .ham span {
  background: #333;
}

.ham span {
  background: var(--white);
}

.ham.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.ham.open span:nth-child(2) {
  opacity: 0;
}

.ham.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mob-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform .6s var(--T);
}

.mob-menu.open {
  transform: translateX(0);
}

.mob-menu a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  transition: opacity .3s;
}

.mob-menu a:hover {
  opacity: .5;
}

.btt {
  position: fixed;
  bottom: 34px;
  right: 34px;
  width: 46px;
  height: 46px;
  background: var(--black);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s, transform .3s;
  z-index: 500;
}

.btt.show {
  opacity: 1;
  pointer-events: all;
}

.btt:hover {
  transform: translateY(-4px);
}

/* ═══════════════════════════════════
   HERO CAROUSEL WITH REAL IMAGES
═══════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: var(--black);
}

.c-track {
  position: absolute;
  inset: 0;
}

.c-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s var(--T);
  pointer-events: none;
  display: flex;
  align-items: flex-end;
}

.c-slide.active {
  opacity: 1;
  pointer-events: all;
  z-index: 2;
}

/* Image background with Ken Burns */
.slide-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 9s linear;
}

.c-slide.active .slide-img {
  transform: scale(1);
}

.slide-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .45) 50%, rgba(0, 0, 0, .2) 100%);
}

/* Content */
.slide-content {
  position: relative;
  z-index: 4;
  width: 100%;
  padding: 0 64px 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-end;
}

.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 22px;
  transform: translateY(28px);
  opacity: 0;
  transition: transform .8s .15s var(--T), opacity .8s .15s;
}

.slide-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, .4);
}

.c-slide.active .slide-tag {
  transform: translateY(0);
  opacity: 1;
}

.slide-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(46px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -1px;
  transform: translateY(44px);
  opacity: 0;
  transition: transform .9s .3s var(--T), opacity .9s .3s;
}

.c-slide.active .slide-h1 {
  transform: translateY(0);
  opacity: 1;
}

.slide-h1 em {
  font-style: italic;
  color: rgba(255, 255, 255, .6);
}

.slide-body {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.9;
  margin-top: 20px;
  max-width: 380px;
  font-weight: 300;
  transform: translateY(28px);
  opacity: 0;
  transition: transform .8s .48s var(--T), opacity .8s .48s;
}

.c-slide.active .slide-body {
  transform: translateY(0);
  opacity: 1;
}

.slide-btns {
  display: flex;
  gap: 12px;
  margin-top: 38px;
  flex-wrap: wrap;
  transform: translateY(20px);
  opacity: 0;
  transition: transform .7s .62s var(--T), opacity .7s .62s;
}

.c-slide.active .slide-btns {
  transform: translateY(0);
  opacity: 1;
}

.btn-w {
  background: var(--white);
  color: var(--black);
  padding: 14px 32px;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--T), box-shadow .3s;
  font-family: 'Jost', sans-serif;
}

.btn-w::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .07);
  transform: translateX(-100%);
  transition: transform .4s var(--T);
}

.btn-w:hover::before {
  transform: translateX(0);
}

.btn-w:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(255, 255, 255, .18);
}

.btn-o {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 400;
  border: 1px solid rgba(255, 255, 255, .25);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: border-color .3s, transform .3s;
  font-family: 'Jost', sans-serif;
}

.btn-o:hover {
  border-color: rgba(255, 255, 255, .7);
  transform: translateY(-3px);
}

.slide-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  transform: translateX(32px);
  opacity: 0;
  transition: transform .9s .38s var(--T), opacity .9s .38s;
}

.c-slide.active .slide-stats {
  transform: translateX(0);
  opacity: 1;
}

.stat-box {
  background: rgba(0, 0, 0, .35);
  border: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(10px);
  padding: 22px 26px;
  transition: background .4s, border-color .4s, transform .3s;
}

.stat-box:hover {
  background: rgba(0, 0, 0, .55);
  border-color: rgba(255, 255, 255, .25);
  transform: translateX(4px);
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.stat-lbl {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-top: 6px;
}

/* ── CAROUSEL CONTROLS ── */
.c-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 60px;
  background: rgba(0, 0, 0, .35);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .85);
  cursor: pointer;
  transition: background .35s, border-color .35s, width .4s var(--T);
  overflow: hidden;
  padding: 0 18px;
}

.c-arrow svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform .3s;
}

.c-arrow:hover svg {
  transform: scale(1.15);
}

.c-arrow-lbl {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-width .4s var(--T), opacity .3s .1s, margin .4s;
}

.c-arrow:hover {
  background: rgba(0, 0, 0, .6);
  border-color: rgba(255, 255, 255, .45);
  width: 148px;
}

.c-arrow:hover .c-arrow-lbl {
  max-width: 90px;
  opacity: 1;
  margin-left: 12px;
}

.c-prev {
  left: 28px;
}

.c-next {
  right: 28px;
}

.c-prev:hover {
  flex-direction: row-reverse;
}

.c-prev:hover .c-arrow-lbl {
  margin-left: 0;
  margin-right: 12px;
}

/* Thumbnail strips */
.c-thumbs {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.c-thumb {
  position: relative;
  height: 3px;
  width: 44px;
  background: rgba(255, 255, 255, .2);
  cursor: pointer;
  transition: width .4s var(--T);
  overflow: visible;
  border-radius: 2px;
}

.c-thumb-fill {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .9);
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 2px;
}

.c-thumb.active {
  width: 80px;
}

.c-thumb-tip {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  white-space: nowrap;
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
  background: rgba(0, 0, 0, .55);
  padding: 3px 8px;
  border-radius: 2px;
  backdrop-filter: blur(6px);
}

.c-thumb:hover .c-thumb-tip,
.c-thumb.active .c-thumb-tip {
  opacity: 1;
}

/* Mobile bullets */
.c-bullets {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: none;
  gap: 8px;
}

.c-bullet {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  cursor: pointer;
  transition: background .3s, transform .3s;
}

.c-bullet.active {
  background: var(--white);
  transform: scale(1.3);
}

/* Slide counter */
.c-counter {
  position: absolute;
  top: 96px;
  right: 64px;
  z-index: 20;
  display: flex;
  align-items: baseline;
  gap: 6px;
  overflow: hidden;
}

.c-cur {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: rgba(255, 255, 255, .85);
  line-height: 1;
  display: block;
  transition: transform .5s var(--T), opacity .4s;
}

.c-sep {
  font-size: 13px;
  color: rgba(255, 255, 255, .25);
  letter-spacing: 2px;
}

.c-tot {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: rgba(255, 255, 255, .3);
}

/* Vertical progress */
.c-rail {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(255, 255, 255, .07);
  z-index: 20;
}

.c-rail-fill {
  width: 100%;
  background: rgba(255, 255, 255, .5);
  height: 0%;
}

/* Play/Pause */
.c-pp {
  position: absolute;
  bottom: 40px;
  right: 64px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, .35);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .15);
  padding: 10px 18px;
  cursor: pointer;
  transition: background .3s, border-color .3s;
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
}

.c-pp:hover {
  background: rgba(0, 0, 0, .6);
  border-color: rgba(255, 255, 255, .4);
  color: var(--white);
}

.c-pp svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Scroll hint */
.c-scroll {
  position: absolute;
  bottom: 40px;
  left: 64px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scb 2.2s ease-in-out infinite;
}

.c-scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .5), transparent);
}

.c-scroll-txt {
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
}

@keyframes scb {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(7px)
  }
}

/* ═══════════════════════════════════
   YOUTUBE VIDEO SECTION
═══════════════════════════════════ */
.video-section {
  background: var(--black);
  padding: 100px 64px;
}

.video-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
  gap: 30px;
  flex-wrap: wrap;
}

.video-header .sec-tag {
  color: rgba(255, 255, 255, .35);
}

.video-header .sec-tag::before {
  background: rgba(255, 255, 255, .25);
}

.video-header .sec-title {
  color: var(--white);
}

.video-header p {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  line-height: 1.8;
  max-width: 380px;
  font-weight: 300;
}

/* YouTube embed wrapper with custom controls overlay */
.yt-wrap {
  position: relative;
  border-radius: 0;
  overflow: hidden;
}

.yt-aspect {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--black);
}

.yt-aspect iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Custom controls bar below video */
.yt-bar {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-top: none;
}

.yt-bar-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: none;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .6);
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background .3s, color .3s;
  white-space: nowrap;
}

.yt-bar-btn:last-child {
  border-right: none;
}

.yt-bar-btn:hover {
  background: rgba(255, 255, 255, .07);
  color: var(--white);
}

.yt-bar-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}

.yt-bar-spacer {
  flex: 1;
}

.yt-bar-label {
  padding: 14px 22px;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .25);
  font-family: 'Jost', sans-serif;
}

/* Change-video note */
.yt-note {
  margin-top: 16px;
  font-size: 11px;
  color: rgba(255, 255, 255, .2);
  letter-spacing: 1px;
}

.yt-note span {
  color: rgba(255, 255, 255, .4);
}

/* ═══════════════════════════════════
   REST OF SITE
═══════════════════════════════════ */
.marquee {
  background: var(--black);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.mq-inner {
  display: inline-flex;
  animation: mq 22s linear infinite;
}

.mq-item {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-right: 56px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
}

.mq-dot {
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, .25);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes mq {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 18px;
}

.sec-tag::before {
  content: '';
  display: block;
  width: 26px;
  height: 1px;
  background: var(--mid);
}

.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4.5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.5px;
}

.sec-title em {
  font-style: italic;
  color: var(--mid);
  line-height: 130%;
}

/* About */
.about {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  padding: 110px 64px;
}

.about-vis {
  position: relative;
  height: 560px;
}

.ab-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 68%;
  height: 78%;
  overflow: hidden;
}

.ab-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ab-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 48%;
  background: var(--black);
  border: 8px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--white);
}

.ab-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 68px;
  font-weight: 300;
  line-height: 1;
}

.ab-l {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: .45;
}

.about-text p {
  font-size: 14px;
  line-height: 1.95;
  color: #555;
  font-weight: 300;
  margin-bottom: 18px;
}

.about-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 34px;
}

.af {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.af-ico {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .3s, border-color .3s;
}

.af-ico svg {
  width: 14px;
  height: 14px;
  fill: var(--black);
  transition: fill .3s;
}


.af-t h4 {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.af-t p {
  font-size: 11px;
  color: var(--mid);
  line-height: 1.6;
}

/* Services */
.services {
  background-image: url(../images/service-bg.jpg);
  color: var(--white);
  padding: 110px 64px;
}

.svc-hdr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 60px;
}

.svc-hdr .sec-tag {
  color: rgba(255, 255, 255, .35);
}

.svc-hdr .sec-tag::before {
  background: rgba(255, 255, 255, .25);
}

.svc-hdr p {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  line-height: 1.9;
  font-weight: 300;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .06);
}

.svc-card {
  padding: 44px 34px;
  background: var(--black);
  position: relative;
  overflow: hidden;
  transition: background .4s, transform .4s var(--T);
  cursor: pointer;
}

.svc-card:hover {
  background: #111;
  transform: translateY(-5px);
}

.svc-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px;
  font-weight: 300;
  color: rgba(255, 255, 255, .04);
  position: absolute;
  top: 14px;
  right: 22px;
  line-height: 1;
  transition: color .4s;
}

.svc-card:hover .svc-n {
  color: rgba(255, 255, 255, .1);
}

.svc-ico {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: border-color .3s, background .3s;
}

.svc-ico svg {
  width: 20px;
  height: 20px;
  fill: rgba(255, 255, 255, .6);
}

.svc-card:hover .svc-ico {
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .05);
}

.svc-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--white);
}

.svc-card p {
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
  line-height: 1.85;
  font-weight: 300;
}

.svc-arr {
  margin-top: 24px;
  width: 30px;
  height: 1px;
  background: rgba(255, 255, 255, .15);
  position: relative;
  transition: width .4s var(--T), background .3s;
}

.svc-arr::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  border-right: 1px solid rgba(255, 255, 255, .15);
  transform: rotate(45deg);
  transition: border-color .3s;
}

.svc-card:hover .svc-arr {
  width: 50px;
  background: rgba(255, 255, 255, .6);
}

.svc-card:hover .svc-arr::after {
  border-color: rgba(255, 255, 255, .6);
}

/* Stats */
.stats-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 55px 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.ss-it {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid var(--border);
}

.ss-it:last-child {
  border-right: none;
}

.ss-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
}

.ss-sup {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  vertical-align: super;
}

.ss-lbl {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 8px;
}

/* Projects */
.projects {
  background: var(--off);
  padding: 110px 64px;
}

.proj-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}

.proj-filters {
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
}

.f-btn {
  padding: 9px 18px;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background .3s, border-color .3s, color .3s;
  font-family: 'Jost', sans-serif;
  color: var(--mid);
}

.f-btn.active,
.f-btn:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.proj-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3px;
}

.proj-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.proj-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--T);
  display: block;
  min-height: 300px;
}

.proj-card:hover img {
  transform: scale(1.06);
}

.proj-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .1) 55%, transparent 100%);
  opacity: 0;
  transition: opacity .4s;
}

.proj-card:hover .proj-ov {
  opacity: 1;
}

.proj-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .15);
  padding: 6px 14px;
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
}

.proj-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  transform: translateY(18px);
  opacity: 0;
  transition: transform .4s var(--T), opacity .4s;
}

.proj-card:hover .proj-info {
  transform: translateY(0);
  opacity: 1;
}

.proj-cat {
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 7px;
}

.proj-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--white);
}

/* Make first card tall */
.proj-card:first-child img {
  min-height: 600px;
}

/* Team */
.team {
  background-image: url(../images/service-bg-shape-1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 110px 64px;
}

.team-hdr {
  text-align: center;
  margin-bottom: 66px;
}

.team-grid {
  display: block;
}

/* PROCESS — white */
.process {
  background: var(--white);
}

.proc-hdr {
  text-align: center;
  margin-bottom: 0;
}

.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 70px;
  position: relative;
}

.proc-grid::before {
  content: '';
  position: absolute;
  top: 43px;
  left: calc(12.5% + 18px);
  right: calc(12.5% + 18px);
  height: 1px;
  background: var(--border);
}

.proc-step {
  padding: 0 28px;
  text-align: center;
}

.step-circle {
  width: 86px;
  height: 86px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 26px;
  background: var(--white);
  transition: background .4s, border-color .4s, transform .4s;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--mid);
  position: relative;
  z-index: 1;
}

.proc-step:hover .step-circle {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
  transform: scale(1.1);
}

.proc-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 12px;
}

.proc-step p {
  font-size: 12px;
  color: var(--mid);
  line-height: 1.85;
  font-weight: 300;
}

/* Testimonials */
.testi {
  background: var(--black);
  color: var(--white);
  padding: 110px 64px;
}

.testi-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}

.testi-left .sec-tag {
  color: rgba(255, 255, 255, .35);
}

.testi-left .sec-tag::before {
  background: rgba(255, 255, 255, .25);
}

.r-big {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}

.r-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 74px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.r-max {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: rgba(255, 255, 255, .25);
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}

.star {
  color: var(--white);
  font-size: 14px;
}

.r-note {
  font-size: 12px;
  color: rgba(255, 255, 255, .35);
  line-height: 1.8;
  font-weight: 300;
}

.t-slider {
  overflow: hidden;
}

.t-track {
  display: flex;
  transition: transform .7s var(--T);
}

.t-slide {
  min-width: 100%;
  padding: 44px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  position: relative;
}

.t-slide::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 130px;
  color: rgba(255, 255, 255, .05);
  position: absolute;
  top: -8px;
  left: 24px;
  line-height: 1;
}

.t-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.t-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: var(--white);
}

.t-name {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--white);
}

.t-role {
  font-size: 10px;
  color: rgba(255, 255, 255, .4);
  letter-spacing: 1.5px;
}

.t-ctrls {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.t-btn {
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .5);
  cursor: pointer;
  font-size: 16px;
  transition: background .3s, border-color .3s, color .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.t-btn:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .4);
  color: var(--white);
}


/* Footer */
footer {
  background: #777;
  padding: 75px 64px 36px;
}

.ft-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.ft-logo img {
  width: 250px;
  margin-bottom: 20px;

}

.ft-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, .3);
  line-height: 1.9;
  font-weight: 300;
  max-width: 250px;
}

.ft-socs {
  display: flex;
  gap: 7px;
  margin-top: 22px;
}

.ft-socs i {
  font-size: 20px;
}

.ft-soc {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .35);
  text-decoration: none;
  font-size: 11px;
  transition: border-color .3s, color .3s;
}

.ft-soc:hover {
  border-color: rgba(255, 255, 255, .5);
  color: var(--white);
}

.ft-col h4 {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 20px;
}

.ft-col ul {
  list-style: none;
}

.ft-col ul li {
  margin-bottom: 10px;
}

.ft-col ul li a {
  color: rgba(255, 255, 255, .3);
  text-decoration: none;
  font-size: 12px;
  font-weight: 300;
  transition: color .3s;
}

.ft-col ul li a:hover {
  color: var(--white);
}

.ft-ci {
  display: flex;
  gap: 10px;
  margin-bottom: 13px;
}

.ft-cico {
  color: rgba(255, 255, 255, .35);
  font-size: 13px;
  margin-top: 1px;
  flex-shrink: 0;
}

.ft-ctxt {
  font-size: 12px;
  color: rgba(255, 255, 255, .3);
  font-weight: 300;
  line-height: 1.6;
}

.ft-ctxt a {
  font-size: 12px;
  color: rgba(255, 255, 255, .3);
  font-weight: 300;
  line-height: 1.6;
  text-decoration: underline;
}

.ft-ctxt a :hover {
  text-decoration: none;
}


.ft-btm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
  flex-wrap: wrap;
  gap: 12px;
}

.ft-btm p {
  font-size: 11px;
  color: rgba(255, 255, 255, .2);
  letter-spacing: 1px;
}

.ft-btm-links {
  display: flex;
  gap: 20px;
}

.ft-btm-links p {
  font-size: 10px;
  color: rgba(255, 255, 255, .2);
  text-decoration: none;
  letter-spacing: 1px;
  transition: color .3s;
}

/* Reveal */
.rv {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--T), transform .9s var(--T);
}

.rvl {
  opacity: 0;
  transform: translateX(-34px);
  transition: opacity .9s var(--T), transform .9s var(--T);
}

.rvr {
  opacity: 0;
  transform: translateX(34px);
  transition: opacity .9s var(--T), transform .9s var(--T);
}

.rv.vis,
.rvl.vis,
.rvr.vis {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: .1s;
}

.d2 {
  transition-delay: .2s;
}

.d3 {
  transition-delay: .3s;
}

.d4 {
  transition-delay: .4s;
}

/* Responsive */
@media(max-width:1200px) {
  nav {
    padding: 0 40px;
  }

  .slide-content {
    padding: 0 40px 80px;
  }

  .c-prev {
    left: 16px;
  }

  .c-next {
    right: 16px;
  }

  .c-counter {
    right: 40px;
  }

  .c-pp {
    right: 40px;
  }

  .c-scroll {
    left: 40px;
  }

  .about,
  .services,
  .testi,
  .nl,
  .projects{
    padding: 90px 40px;
  }

  .video-section {
    padding: 80px 40px;
  }

  footer {
    padding: 60px 40px 30px;
  }

  .stats-strip {
    padding: 48px 40px;
  }
}

@media(max-width:1024px) {
  .slide-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .slide-stats {
    grid-template-columns: repeat(4, 1fr);
    transform: translateY(20px);
  }

  .c-slide.active .slide-stats {
    transform: translateY(0);
  }

  .c-counter {
    top: 84px;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-vis {
    height: 380px;
  }

  .svc-hdr {
    grid-template-columns: 1fr;
  }

  .testi-inner {
    display: block;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .ss-it:nth-child(2) {
    border-right: none;
  }

  .ss-it:nth-child(3) {
    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
  }

  .ss-it:nth-child(4) {
    border-top: 1px solid var(--border);
    border-right: none;
  }

  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ft-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .proj-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proj-card {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }

  .proj-card:first-child img {
    min-height: 300px;
  }

  .video-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media(max-width:768px) {
  .ham {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  nav {
    padding: 0 22px;
  }

  .slide-content {
    padding: 0 22px 80px;
  }

  .slide-h1 {
    font-size: clamp(34px, 10vw, 54px);
  }

  .c-arrow {
    width: 20px;
    height: 20px;
    padding: 0 14px;
  }

  .c-arrow:hover {
    width: 20px;
  }

  .c-arrow-lbl {
    display: none;
  }

  .c-counter,
  .c-pp,
  .c-scroll {
    display: none;
  }

  .c-thumbs {
    display: none;
  }

  .c-bullets {
    display: flex;
  }

  .slide-stats {
    grid-template-columns: 1fr 1fr;
  }

  .about,
  .services,
  .testi,
  .nl,
  .projects,
  .video-section {
    padding: 80px 22px;
  }

  .svc-grid {
    grid-template-columns: 1fr;
  }

  .team-grid img {
    width: 100%;
  }

  .ft-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ft-btm {
    flex-direction: column;
  }

  .nl-form {
    flex-direction: column;
  }

  .nl-in {
    border-right: 1px solid rgba(255, 255, 255, .12);
    border-bottom: none;
  }

  footer {
    padding: 50px 22px 26px;
  }

  .proj-grid {
    grid-template-columns: 1fr;
  }

  .yt-bar {
    flex-wrap: wrap;
  }

  .yt-bar-btn {
    flex: 1;
    justify-content: center;
    min-width: 80px;
  }
}

@media(max-width:480px) {
  .slide-btns {
    flex-direction: column;
  }

  .btn-w,
  .btn-o {
    justify-content: center;
  }

  .slide-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media(hover:none) {

  .cr,
  .cr-ring {
    display: none;
  }

  body {
    cursor: auto;
  }
}
/* About Us Page */
.about-hero{
    position: relative;
    min-height: 500px;
    height: clamp(400px, 80vh, 900px);

    background-image: url(../images/about-banner.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    overflow: hidden;
}

.about-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.65);
}

.about-hero-content{
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 850px;
    padding: 0 20px;
    margin: 0 auto;
}

@media (min-width:1200px){

    .about-hero{
        height: 80vh;
    }

    .about-hero-content{
        max-width: 850px;
    }

}
@media (max-width:1199px){

    .about-hero{
        height: 70vh;
        min-height: 550px;
    }

    .about-hero-content{
        max-width: 750px;
    }

}

.page-tag{
    color:rgba(255,255,255,.6);
    letter-spacing:4px;
    text-transform:uppercase;
    font-size:10px;
}

.about-hero h1{
    font-family:'Cormorant Garamond',serif;
    color:#fff;
    font-size:clamp(50px,8vw,100px);
    font-weight:300;
    margin:20px 0;
}

.about-hero h1 em{
    color:#b8b8b8;
}

.about-hero p{
    color:rgba(255,255,255,.7);
    max-width:600px;
    margin:auto;
    line-height:1.9;
}

.about-story{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
    padding:120px 64px;
}

.story-image img{
    width:100%;
    height:650px;
    object-fit:cover;
}

.about-btn-wrap{
    margin-top:35px;
}

.about-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#0a0a0a;
    color:#fff;
    text-decoration:none;
    padding:16px 34px;
    font-size:11px;
    letter-spacing:2.5px;
    text-transform:uppercase;
    position:relative;
    overflow:hidden;
    transition:all .4s ease;
}

.about-btn::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(255,255,255,.08);
    transform:translateX(-100%);
    transition:.4s;
}

.about-btn:hover::before{
    transform:translateX(0);
}

.about-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.about-btn i{
    transition:.3s;
}

.about-btn:hover i{
    transform:translateX(5px);
}
.why-us{
    background:#f8f8f8;
    padding:120px 64px;
}

.sec-center{
    text-align:center;
    margin-bottom:60px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.why-card{
    background:#fff;
    padding:40px;
    text-align:center;
    transition:.4s;
}

.why-card:hover{
    transform:translateY(-8px);
}

.why-card i{
    font-size:28px;
    margin-bottom:20px;
}

.about-cta{
    background:#0a0a0a;
    padding:120px 20px;
    text-align:center;
}

.about-cta h2{
    color:#fff;
    font-family:'Cormorant Garamond',serif;
    font-size:58px;
    font-weight:300;
}

.about-cta p{
    color:rgba(255,255,255,.6);
    margin:20px 0 35px;
}

@media(max-width:991px){

.about-story{
    grid-template-columns:1fr;
}

.proc-grid{
  display: block;
}

.why-grid{
    grid-template-columns:repeat(2,1fr);
}

.story-image img{
    height:500px;
}

}

@media(max-width:768px){
  .about-hero{
    width: 100%;
  }

.why-grid{
    grid-template-columns:1fr;
}

.story-stats{
    flex-direction:column;
    gap:25px;
}


.about-story,
.why-us{
    padding:80px 24px;
}

.about-cta h2{
    font-size:42px;
}

}
/* About Us Page */

/* Project Pages */
/* ==========================
PROJECT BANNER
========================== */

.project-banner{
    position:relative;
    width:100%;
    height:90vh;
    min-height:700px;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.banner-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.banner-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        rgba(0,0,0,.75),
        rgba(0,0,0,.55)
    );
}

.banner-content{
    position:relative;
    z-index:2;
    max-width:850px;
    padding:0 25px;
}

.banner-tag{
    display:inline-block;
    color:rgba(255,255,255,.65);
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:11px;
}

.banner-content h1{
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(65px,9vw,130px);
    font-weight:300;
    color:#fff;
    margin:20px 0;
}

.banner-content h1 em{
    color:#b7b7b7;
    font-style:italic;
}

.banner-content p{
    max-width:650px;
    margin:auto;
    color:rgba(255,255,255,.8);
    line-height:1.9;
}

.banner-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    margin-top:35px;
    background:#fff;
    color:#000;
    text-decoration:none;
    padding:16px 34px;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:11px;
    transition:.4s;
}

.banner-btn:hover{
    transform:translateY(-4px);
}

@media(max-width:768px){

.project-banner{
    min-height:600px;
}

.banner-content h1{
    font-size:60px;
}

.banner-content p{
    font-size:14px;
}

}

/* =========================
PROJECT HERO
========================= */

.project-hero{
    position:relative;
    height:85vh;
    min-height:700px;
    background:url("images/projects-banner.jpg") center center/cover;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
}

.project-hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(0,0,0,.75),
        rgba(0,0,0,.65)
    );
}

.project-hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
    padding:0 25px;
}

.project-tag{
    display:inline-block;
    color:rgba(255,255,255,.6);
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:11px;
}

.project-hero h1{
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(60px,8vw,110px);
    color:#fff;
    font-weight:300;
    line-height:1;
    margin:25px 0;
}

.project-hero h1 em{
    color:#bdbdbd;
    font-style:italic;
}

.project-hero p{
    max-width:650px;
    margin:auto;
    color:rgba(255,255,255,.75);
    line-height:1.9;
}

/* =========================
COMMON BUTTON
========================= */

.project-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    margin-top:35px;
    padding:16px 34px;
    background:#fff;
    color:#000;
    text-decoration:none;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:11px;
    transition:.4s;
}

.project-btn:hover{
    transform:translateY(-4px);
}

.dark-btn{
    background:#000;
    color:#fff;
}

/* =========================
INTRO
========================= */

.portfolio-intro{
    max-width:900px;
    margin:auto;
    text-align:center;
    padding:120px 25px 60px;
}

.sec-tag{
    text-transform:uppercase;
    letter-spacing:3px;
    color:#999;
    font-size:11px;
}

.sec-title{
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(42px,6vw,80px);
    font-weight:300;
    margin:20px 0;
    line-height:1.1;
}

.sec-title em{
    color:#8a8a8a;
}

.portfolio-intro p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:2;
}

/* =========================
FILTER
========================= */

.project-filter{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    padding:20px 20px 80px;
}

.filter-btn{
    background:#fff;
    border:1px solid #ddd;
    padding:13px 28px;
    cursor:pointer;
    transition:.3s;
    font-size:13px;
}

.filter-btn:hover,
.filter-btn.active{
    background:#000;
    color:#fff;
    border-color:#000;
}

/* =========================
GALLERY
========================= */

.project-gallery{
    padding:0 60px 120px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.project-card{
    position:relative;
    overflow:hidden;
    cursor:pointer;
}

.project-card.large{
    grid-row:span 2;
}

.project-card img{
    width:100%;
    height:100%;
    min-height:380px;
    object-fit:cover;
    transition:1s;
}

.project-card:hover img{
    transform:scale(1.08);
}

.project-overlay{
    position:absolute;
    inset:0;
    display:flex;
    justify-content:flex-end;
    flex-direction:column;
    padding:30px;
    background:linear-gradient(
        transparent,
        rgba(0,0,0,.92)
    );
}

.project-overlay span{
    color:#cfcfcf;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:11px;
}

.project-overlay h3{
    color:#fff;
    font-family:'Cormorant Garamond',serif;
    font-size:34px;
    font-weight:300;
    margin-top:8px;
}

/* =========================
FEATURED PROJECT
========================= */

.featured-project{
    padding:120px 60px;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:80px;
    align-items:center;
    background:#f7f7f7;
}

.featured-image img{
    width:100%;
    height:700px;
    object-fit:cover;
}

.featured-content span{
    text-transform:uppercase;
    letter-spacing:3px;
    color:#888;
    font-size:11px;
}

.featured-content h2{
    font-family:'Cormorant Garamond',serif;
    font-size:65px;
    font-weight:300;
    line-height:1.1;
    margin:20px 0;
}

.featured-content p{
    color:#666;
    line-height:2;
}

/* =========================
EXPERTISE STRIP
========================= */

.expertise-strip{
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.expertise-box{
    background:#0a0a0a;
    color:#fff;
    padding:70px 25px;
    text-align:center;
    border-right:1px solid rgba(255,255,255,.08);
}

.expertise-box:last-child{
    border-right:none;
}

.expertise-box h3{
    font-family:'Cormorant Garamond',serif;
    font-size:34px;
    font-weight:300;
}

/* =========================
CTA
========================= */

.project-cta{
    background:#111;
    text-align:center;
    padding:140px 25px;
}

.project-cta span{
    color:#999;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:11px;
}

.project-cta h2{
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(50px,7vw,90px);
    color:#fff;
    font-weight:300;
    margin:20px 0;
    line-height:1.1;
}

.project-cta em{
    color:#8a8a8a;
}

.project-cta p{
    max-width:650px;
    margin:0 auto;
    color:rgba(255,255,255,.7);
    line-height:2;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

.project-gallery{
    grid-template-columns:1fr 1fr;
    padding:0 25px 80px;
}

.featured-project{
    grid-template-columns:1fr;
    padding:80px 25px;
}

.featured-image img{
    height:500px;
}

.expertise-strip{
    grid-template-columns:1fr 1fr;
}

}

@media(max-width:768px){

.project-hero{
    min-height:600px;
}

.project-gallery{
    grid-template-columns:1fr;
}

.project-card.large{
    grid-row:auto;
}

.expertise-strip{
    grid-template-columns:1fr;
}

.expertise-box{
    border-right:none;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.featured-content h2{
    font-size:42px;
}

.project-cta{
    padding:100px 20px;
}

}
/* Project Pages */
/* Contact Page */
.contact-banner{
    position:relative;
    height:75vh;
    min-height:500px;
    background-image: url(../images/contact-banner.jpg);
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.contact-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.contact-content{
    position:relative;
    z-index:2;
    color:#fff;
    max-width:800px;
    padding:0 20px;
}

.contact-content span{
    letter-spacing:4px;
    font-size:11px;
}

.contact-content h1{
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(50px,8vw,100px);
    font-weight:300;
    margin:20px 0;
}

.contact-content em{
    color:#aaa;
}

.contact-wrapper{
    padding:100px 60px;
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:60px;
}

.contact-info h2{
    font-family:'Cormorant Garamond',serif;
    font-size:50px;
    font-weight:300;
    margin-bottom:40px;
}

.info-box{
    display:flex;
    gap:20px;
    margin-bottom:30px;
}

.info-box i{
    width:55px;
    height:55px;
    background:#111;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.contact-form-box form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea{
    width:100%;
    padding:18px;
    border:1px solid #ddd;
    outline:none;
}

.contact-form-box button{
    padding:18px;
    border:none;
    background:#111;
    color:#fff;
    cursor:pointer;
    text-transform:uppercase;
    letter-spacing:2px;
}

@media(max-width:991px){

.contact-wrapper{
    grid-template-columns:1fr;
    padding:80px 25px;
}

.contact-info h2{
    font-size:40px;
}

}
/*--------------------------------------------------------------
	radio button End
--------------------------------------------------------------*/
.switch9 {
 width:150px;
 height: 34px;
 float:left;
 font-family: 'Open Sans', sans-serif;
 font-size: 17px;
 color:#000;
 margin-left:3%;
}
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  float:left;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.g_cap{
	display: none;
}


/*--------------------------------------------------------------
	radio button End
--------------------------------------------------------------*/

/* Contact Page */