:root {
  --ink: #0c0d18;
  --dusk-deep: #181a2e;
  --dusk-violet: #463b62;
  --dusk-rose: #a56a72;
  --amber: #d9a466;
  --amber-soft: #e9c48f;
  --warm-white: #f6f1e6;
  --stone: #a9a397;
  --line: rgba(246, 241, 230, 0.22);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--ink);
  color: var(--warm-white);
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 45px;
}


/* =====================================================
   1. HEADER / NAV
   ===================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 0;
  z-index: 200;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
  will-change: background;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header.scrolled {
  background: rgba(12, 13, 24, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  letter-spacing: 0.04em;
}

.logo a {
  display: flex;
  text-decoration: none;
  color: inherit;
}

.logo-img {
  height: 30px;
  width: auto;
  display: block;
}

nav.links {
  display: flex;
  gap: 40px;
}

nav.links a {
  color: var(--warm-white);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 6px;
  opacity: 0.9;
  transition: opacity 0.25s ease, color 0.25s ease;
}

nav.links a:hover {
  opacity: 1;
}

nav.links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--amber);
  transition: width 0.3s ease;
}

nav.links a:hover::after {
  width: 100%;
}

/* ---- Active nav link (current page) ---- */
nav.links a.active {
  color: #D4883B;
  opacity: 1;
}

nav.links a.active::after {
  width: 100%;
  background: #D4883B;
}

.burger {
  display: none;
  width: 26px;
  height: 18px;
  position: relative;
  cursor: pointer;
  z-index: 200;
  background: none;
  border: none;
}

.burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--warm-white);
  transition: transform 0.35s ease, opacity 0.25s ease, top 0.35s ease;
}

.burger span:nth-child(1) {
  top: 0;
}

.burger span:nth-child(2) {
  top: 8px;
}

.burger span:nth-child(3) {
  top: 16px;
}

.burger.open span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dusk-deep);
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
  padding: 48px;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(.77, 0, .18, 1);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu a {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--warm-white);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.25s ease;
}

.mobile-menu a:hover {
  color: var(--amber);
}

/* ---- Active nav link (mobile menu) ---- */
.mobile-menu a.active {
  color: #D4883B;
}

/* ---- Solid header variant (non-home pages: About, Work, Studio, etc.) ---- */
.header-solid {
  background: rgba(12, 13, 24, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

@media (max-width:640px) {
  .header-solid {
    background: #0c0d18;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

/* ---- Tablet (iPad) ---- */
@media (max-width:1024px) {
  header.scrolled .logo-img {
    height: 30px;
  }

  .logo-img {
    height: 30px;
  }

  .header-inner {
    flex-wrap: nowrap;
  }

  nav.links {
    gap: 18px;
  }

  nav.links a {
    font-size: 14px;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }
}

/* ---- Smaller tablet range (iPad Mini) ---- */
@media (max-width: 820px) {
  nav.links {
    gap: 14px;
  }

  nav.links a {
    font-size: 12px;
  }
}

/* ---- Mobile ---- */
@media (max-width:640px) {
  .container {
    padding: 0 24px;
  }

  nav.links {
    display: none;
  }

  header {
    background: #0c0d18;
    padding: 14px 0;
    border-bottom: none;
  }

  header.scrolled {
    background: #0c0d18;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  header.scrolled .logo-img {
    height: 30px;
  }

  .header-inner {
    align-items: center;
  }

  .burger {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 10px;
  }

  .burger span {
    position: absolute;
    height: 2.5px;
    width: 18px;
    border-radius: 2px;
    background: #f4ede0;
  }
}

/* =====================================================
   2. HERO (banner)
   ===================================================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: linear-gradient(to bottom, #121322 0%, #221f38 32%, #4d3d55 58%, #8c5f62 78%, #b9825f 92%, #c99367 100%);
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.85;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-bottom: 64px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.headline-block {
  max-width: 760px;
}

h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 5vw, 55px);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h1 .line {
  display: block;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

h1 .line span {
  display: block;
  transform: translateY(110%);
  animation: riseIn 0.95s cubic-bezier(.2, .9, .2, 1) forwards;
}

h1 .line:nth-child(1) span {
  animation-delay: 0.3s;
}

h1 .line:nth-child(2) span {
  animation-delay: 0.48s;
}

@keyframes riseIn {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  color: var(--warm-white);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0;
  animation: riseIn 0.9s ease forwards 0.75s;
}

.cta .bar {
  width: 34px;
  height: 1px;
  background: var(--amber);
  transition: width 0.35s ease;
}

.cta:hover .bar {
  width: 52px;
}

.tag-block {
  text-align: right;
  padding-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: riseIn 0.9s ease forwards 0.9s;
}

.tag-divider {
  width: 1px;
  height: 38px;
  background: var(--line);
}

.tag-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  color: #D4883B;
  line-height: 1;
}

.tag-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 6px;
  font-weight: 500;
}

/* ---- Tablet (iPad) ---- */
@media (max-width:1024px) {
  .hero {
    height: 35vh;
    min-height: 400px;
  }

  h1,
  h1 .line {
    font-size: 30px;
  }
}

/* ---- Mobile ---- */
@media (max-width:640px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
    padding-bottom: 44px;
  }

  .tag-block {
    text-align: left;
    padding-bottom: 0;
  }

  .hero {
    height: 400px;
    min-height: 400px;
  }

  h1,
  h1 .line {
    font-size: 25px;
  }
}


/* =====================================================
   3. WHO WE ARE
   ===================================================== */
.wwa {
  position: relative;
  background: var(--ink);
  --wwa-pin-offset: 110px;
  padding-top: 100px;
}

.wwa-cream-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 100vh;
  background: #f8f0e3;
  z-index: 0;
}

.wwa-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 40px 60px;
  align-items: start;
}

.wwa-photo-col {
  position: -webkit-sticky;
  position: sticky;
  top: var(--wwa-pin-offset);
  height: calc(100vh - var(--wwa-pin-offset));
  align-self: start;
  display: flex;
  align-items: center;
  overflow: visible;
}

.wwa-photo-inner {
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 6/6;
}

.wwa-photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wwa-content-col {
  display: flex;
  flex-direction: column;
}

.wwa-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgb(212, 136, 59);
  margin-bottom: 28px;
  white-space: nowrap;
}

.wwa-intro {
  min-height: calc(100vh - var(--wwa-pin-offset));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 40px;
}

.wwa-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 26px;
  max-width: 780px;
}

.wwa-hero-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  line-height: 1.75;
  color: var(--stone);
  max-width: 780px;
  margin-bottom: 26px;
}

.wwa-hero-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  transition: border-color 0.3s ease, color 0.3s ease;
  width: fit-content;
}

.wwa-hero-link:hover {
  color: rgb(212, 136, 59);
  border-color: #D4883B;
}

.wwa-list-col {
  display: flex;
  flex-direction: column;
}

.wwa-item {
  padding: 70px 0 30px;
  border-top: 1px solid var(--line);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.wwa-item.in-view {
  opacity: 1;
  transform: translateY(0);
}

.no-js .wwa-item {
  opacity: 1;
  transform: none;
}

.wwa-item:last-child {
  border-bottom: 1px solid var(--line);
}

.wwa-item-img {
  width: 100%;
  aspect-ratio: 16/5;
  overflow: hidden;
  border-radius: 3px;
  margin-bottom: 24px;
}

.wwa-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wwa-item-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--warm-white);
  margin-bottom: 14px;
}

.wwa-item-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  line-height: 1.75;
  color: var(--stone);
  max-width: none;
  width: 100%;
}

/* ---- Tablet (iPad) ---- */
@media (max-width:1024px) {
  .wwa {
    padding-top: 0;
  }

  .wwa-cream-bg {
    display: none;
  }

  .wwa-container {
    display: block;
    max-width: none;
    padding: 64px 32px 40px;
  }

  .wwa-photo-col {
    position: static;
    height: auto;
    margin-bottom: 32px;
  }

  .wwa-photo-inner {
    aspect-ratio: 16/16;
  }

  .wwa-intro {
    min-height: auto;
    padding-bottom: 20px;
  }

  .wwa-hero-title {
    color: var(--warm-white);
    max-width: none;
    font-size: 35px;
  }

  .wwa-hero-text {
    max-width: none;
  }

  .wwa-hero-link {
    color: var(--warm-white);
    border-color: var(--line);
  }

  .wwa-item {
    padding: 40px 0;
  }

  .wwa-item-title {
    font-size: 1.5rem;
  }
}

/* ---- Mobile ---- */
@media (max-width:600px) {
  .wwa-label {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .wwa-container {
    padding: 48px 20px 24px;
  }

  .wwa-photo-col {
    margin-bottom: 24px;
  }

  .wwa-photo-inner {
    aspect-ratio: 4/3.2;
  }

  .wwa-hero-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }

  .wwa-hero-text {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .wwa-item {
    padding: 28px 0;
  }

  .wwa-item-title {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .wwa-item-text {
    font-size: 16px;
  }
}


/* =====================================================
   4. RECENT PROJECTS
   ===================================================== */
.projects {
  padding: 60px 0 0;
}

.projects-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 60px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--warm-white);
  text-transform: uppercase;
}

.projects-head {
  margin-bottom: 0;
  padding-bottom: 44px;
}

.proj-detail {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  padding-bottom: 80px;
  align-items: start;
}

.pd-left {
  display: flex;
  flex-direction: column;
}

.pd-logo {
  max-width: 200px;
  max-height: 100px;
  object-fit: contain;
  margin-bottom: 14px;
}

.pd-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  line-height: 1;
  color: var(--warm-white);
  margin-bottom: 30px;
}

.pd-title span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.42em;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  margin-left: 10px;
  vertical-align: middle;
}

.pd-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.pd-info div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
}

.pd-label {
  font-weight: 700;
  color: var(--warm-white);
  min-width: 150px;
}

.pd-value {
  color: var(--stone);
}

.pd-thumbs {
  display: flex;
  gap: 14px;
}

.pd-thumb {
  overflow: hidden;
  border-radius: 3px;
}

.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.pd-thumb:hover img {
  transform: scale(1.06);
}

.pd-thumb-lg {
  flex: 1.4;
  aspect-ratio: 4/3.3;
}

.pd-thumb-sm {
  flex: 1;
  aspect-ratio: 4/3.3;
}

.pd-right {
  display: flex;
  flex-direction: column;
}

.pd-main-img {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  margin-bottom: 32px;
}

.pd-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.pd-main-img:hover img {
  transform: scale(1.04);
}

.pd-tag {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-white);
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.pd-brand {
  position: absolute;
  bottom: 22px;
  right: 26px;
  text-align: right;
  font-family: 'Montserrat', sans-serif;
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246, 241, 230, 0.75);
  line-height: 1.5;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.pd-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--stone);
  max-width: 1000px;
  margin-bottom: 36px;
}

.pd-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pd-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.pd-dot {
  width: 26px;
  height: 2px;
  background: var(--line);
  transition: background 0.3s ease;
}

.pd-dot.active {
  background: var(--warm-white);
}

.pd-view {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--warm-white);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.pd-view:hover {
  color: #D4883B;
  border-color: #D4883B;
}

.stack-wrap {
  position: relative;
}

.stack-slide {
  position: sticky;
  top: 0;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.stack-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  text-decoration: none;
}

.stack-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.stack-inner:hover img {
  transform: scale(1.03);
}

.stack-slide:nth-child(1) {
  z-index: 1;
}

.stack-slide:nth-child(2) {
  z-index: 2;
}

.stack-slide:nth-child(3) {
  z-index: 3;
}

.stack-slide:nth-child(4) {
  z-index: 4;
}

.stack-slide:nth-child(5) {
  z-index: 5;
}

.stack-slide:nth-child(6) {
  z-index: 6;
}

.stack-tag {
  position: absolute;
  top: 28px;
  right: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.stack-loc {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--warm-white);
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.stack-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 241, 230, 0.75);
  margin-top: 6px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}

/* ---- Tablet (iPad) ---- */
@media (max-width:1024px) {
  .projects {
    padding: 50px 0 0;
  }

  .projects-title {
    font-size: 35px;
  }

  .proj-detail {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-bottom: 60px;
  }

  .pd-title {
    font-size: 2.2rem;
  }

  .stack-slide {
    height: 30vh;
  }

  .stack-loc {
    font-size: 13px;
  }
}

/* ---- Mobile ---- */
@media (max-width:600px) {
  .projects {
    padding: 20px 0 0;
  }

  .projects-head {
    padding-bottom: 30px;
  }

  .projects-title {
    font-size: 32px;
  }

  .proj-detail {
    gap: 32px;
    padding-bottom: 44px;
  }

  .pd-logo {
    max-width: 140px;
    max-height: 40px;
  }

  .pd-title {
    font-size: 1.7rem;
    margin-bottom: 22px;
  }

  .pd-title span {
    display: block;
    margin-left: 0;
    margin-top: 4px;
  }

  .pd-info {
    gap: 10px;
    margin-bottom: 28px;
  }

  .pd-info div {
    flex-direction: column;
    gap: 2px;
  }

  .pd-label {
    min-width: auto;
  }

  .pd-thumbs {
    flex-direction: column;
    gap: 10px;
  }

  .pd-thumb-lg,
  .pd-thumb-sm {
    flex: none;
    width: 100%;
    aspect-ratio: 16/10;
  }

  .pd-main-img {
    margin-bottom: 24px;
  }

  .pd-tag {
    font-size: 11px;
    top: 16px;
    right: 16px;
  }

  .pd-brand {
    font-size: 8px;
    bottom: 14px;
    right: 16px;
  }

  .pd-text {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .pd-footer {
    flex-direction: row;
  }

  .stack-slide {
    height: 20vh;
  }

  .stack-tag {
    top: 16px;
    right: 16px;
  }

  .stack-loc {
    font-size: 12px;
  }

  .stack-brand {
    font-size: 8px;
  }
}

@media (max-width:380px) {
  .projects-title {
    font-size: 26px;
  }

  .pd-title {
    font-size: 1.45rem;
  }

  .pd-thumb-lg,
  .pd-thumb-sm {
    aspect-ratio: 16/11;
  }
}


/* =====================================================
   5. TRUSTED / LOGOS
   ===================================================== */
.trusted {
  background: #f7ecdf;
  padding: 50px 0 40px;
  overflow: hidden;
}

.trusted-head {
  text-align: center;
  margin-bottom: 44px;
}

.trusted-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 26px;
}

.trusted-marquee-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.marquee-row {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 64px;
  animation: scrollLeft 34s linear infinite;
}

.marquee-row.reverse .marquee-track {
  animation: scrollRight 34s linear infinite;
}

.marquee-row:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
}

.logo-item img {
  max-height: 100%;
  max-width: 180px;
  width: auto;
  object-fit: contain;
  transition: filter 0.4s ease, transform 0.4s ease;
}

.logo-item:hover img {
  filter: grayscale(0) opacity(1);
  transform: scale(1.06);
}

/* ---- Tablet (iPad) ---- */
@media (max-width:1024px) {
  .trusted {
    padding: 50px 0 40px;
  }

  .trusted-title {
    font-size: 35px;
  }

  .trusted-marquee-wrap {
    gap: 26px;
  }

  .marquee-track {
    gap: 48px;
  }

  .logo-item {
    height: 110px;
  }

  .logo-item img {
    max-width: 130px;
  }
}

/* ---- Mobile ---- */
@media (max-width:600px) {
  .trusted {
    padding: 30px 0 10px;
  }

  .trusted-title {
    font-size: 23px;
    line-height: 1.4;
  }

  .trusted-head {
    margin-bottom: 32px;
  }

  .trusted-marquee-wrap {
    gap: 20px;
  }

  .marquee-track {
    gap: 34px;
    animation-duration: 22s;
  }

  .logo-item {
    height: 100px;
  }

  .logo-item img {
    max-width: 92px;
  }
}


/* =====================================================
   6. TEAM
   ===================================================== */
.home-team {
  background: var(--ink);
  padding: 100px 0 50px;
}

.home-team-gallery {
  display: flex;
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  height: 500px;
  padding: 0 48px;
  gap: 2px;
}

.home-team-panel {
  position: relative;
  flex: 1;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.6s cubic-bezier(.2, .9, .2, 1);
}

.home-team-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: transform 0.8s cubic-bezier(.2, .9, .2, 1), filter 0.5s ease;
  transform: scale(1.02);
}

.home-team-gallery:hover .home-team-panel {
  flex: 0.7;
}

.home-team-panel:hover {
  flex: 2.6 !important;
}

.home-team-panel:hover img {
  filter: grayscale(0.15) contrast(1.05);
  transform: scale(1.06);
}

.home-team-quote-wrap {
  text-align: center;
  margin-top: 56px;
}

.home-team-quote {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.5;
  color: var(--warm-white);
  max-width: 1000px;
  margin: 0 auto 34px;
}

.home-team-cta {
  display: inline-block;
  padding: 13px 26px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--warm-white);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.home-team-cta:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--ink);
}

/* ---- Tablet (iPad) ---- */
@media (max-width:1024px) {
  .home-team {
    padding: 80px 0 50px;
  }

  .home-team-gallery {
    height: 360px;
    padding: 0 24px;
  }
}

/* ---- Mobile: 2 panels, side by side ---- */
@media (max-width:600px) {
  .home-team {
    padding: 60px 0 56px;
  }

  .home-team-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    height: auto;
    padding: 0 20px;
    gap: 8px;
  }

  .home-team-panel {
    flex: none !important;
    aspect-ratio: 3/4;
    height: auto;
  }

  .home-team-gallery:hover .home-team-panel {
    flex: none !important;
  }

  .home-team-panel:hover {
    flex: none !important;
  }

  .br-desktop {
    display: none;
  }

  .home-team-quote {
    padding: 0 6px;
    font-size: 16px;
  }

  .home-team-quote-wrap {
    margin-top: 40px;
  }
}


/* =====================================================
   8. FOOTER
   ===================================================== */
.site-footer {
  background: rgba(6, 15, 16, 1);
  padding-top: 90px;
  border-top: 2px solid rgba(244, 239, 230, 0.1);
  text-align: center;
  width: 100%;
  overflow-x: hidden;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 56px;
  padding-left: 20px;
  padding-right: 20px;
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  display: block;
  max-width: 100%;
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  margin-bottom: 44px;
  width: 100%;
}

.finfo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 480px;
}

.finfo-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 600;
}

.finfo-value {
  font-size: 16px;
  line-height: 1.6;
  color: var(--warm-white);
  opacity: 0.85;
}

.finfo-value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.finfo-value a:hover {
  color: #D4883B;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1000px;
}

.footer-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--warm-white);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.footer-nav a:hover {
  opacity: 1;
  color: #D4883B;
}

.footer-bottom {
  border-top: 1px solid var(--line);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 48px;
  flex-wrap: wrap;
  gap: 16px;
}

.copyright {
  font-size: 12px;
  color: var(--stone);
}

.socials {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.socials a {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: none;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.socials a:hover {
  color: #D4883B;
}

/* ---- Large Desktop ---- */
@media (min-width: 1025px) {
  .footer-nav {
    gap: 40px;
  }
}

/* ---- Tablet (iPad) : 768px - 1024px ---- */
@media (max-width: 1024px) {
  .site-footer {
    padding-top: 70px;
  }

  .footer-top {
    padding-bottom: 48px;
  }

  .footer-logo-img {
    height: 38px;
  }

  .finfo-value {
    font-size: 13.5px;
  }

  .footer-nav {
    gap: 24px 30px;
    max-width: 600px;
  }

  .footer-bottom-inner {
    padding: 24px 32px;
  }
}

/* ---- iPad Portrait / Small Tablet : 600px - 768px ---- */
@media (max-width: 768px) {
  .footer-top {
    padding-bottom: 42px;
  }

  .footer-info {
    gap: 22px;
    margin-bottom: 38px;
  }

  .footer-nav {
    gap: 18px 24px;
    max-width: 480px;
  }
}

/* ---- Mobile : below 600px ---- */
@media (max-width: 600px) {
  .site-footer {
    padding-top: 56px;
  }

  .footer-top {
    padding-bottom: 40px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-logo-img {
    height: 34px;
  }

  .footer-info {
    gap: 20px;
    margin-bottom: 32px;
  }

  .finfo-label {
    font-size: 10px;
  }

  .finfo-value {
    font-size: 13px;
  }

  .footer-nav {
    gap: 14px 20px;
  }

  .footer-nav a {
    font-size: 12.5px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px 20px;
  }

  .copyright {
    order: 2;
    font-size: 11px;
  }

  .socials {
    order: 1;
    gap: 16px 20px;
  }

  .socials a {
    font-size: 10.5px;
  }
}

/* ---- Very small mobile : below 380px ---- */
@media (max-width: 380px) {
  .footer-nav {
    gap: 12px 16px;
  }

  .socials {
    gap: 14px 16px;
  }
}


/* =====================================================
   ABOUT — STATIC BANNER
   ===================================================== */
.about-banner {
  position: relative;
  height: 40vh;
  min-height: 430px;
  margin-top: 70px;
  /* apne header ki exact height daalo (px me) */
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.about-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.about-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(6, 7, 14, 0.85) 0%, rgba(6, 7, 14, 0.35) 45%, rgba(6, 7, 14, 0.05) 75%);
}

.about-banner-content {
  position: relative;
  z-index: 10;
  padding-bottom: 72px;
}

.about-banner-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: #D4883B;
}

.about-banner-eyebrow .ab-bar {
  width: 26px;
  height: 1px;
  background: var(--amber);
}

.about-banner-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--warm-white);
  max-width: 780px;
}

.about-banner-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 620px;
  margin-top: 20px;
}

/* ---- Tablet (iPad) ---- */
@media (max-width:1024px) {
  .about-banner {
    height: 20vh;
    min-height: 350px;
    margin-top: 60px;
  }

  .about-banner-title {
    font-size: 30px;
  }

  .about-banner-desc {
    font-size: 14px;
    max-width: 100%;
  }
}

/* ---- Mobile ---- */
@media (max-width:640px) {
  .about-banner {
    height: auto;
    min-height: 200px;
    padding-top: 100px;
    margin-top: 58px;
  }

  .about-banner-content {
    padding-bottom: 40px;
  }

  .about-banner-eyebrow {
    font-size: 10px;
    margin-bottom: 14px;
  }

  .about-banner-title {
    font-size: 28px;
    line-height: 1.25;
  }

  .about-banner-desc {
    font-size: 13.5px;
    line-height: 1.6;
    margin-top: 16px;
  }
}

/* ---- Small Mobile ---- */
@media (max-width:380px) {
  .about-banner-title {
    font-size: 24px;
  }

  .about-banner-desc {
    font-size: 13px;
  }
}

/* ---- stroy wrap ---- */
.story-wrap {
  --bg: #F7EFE6;
  --heading: #1E1B18;
  --eyebrow: #D4883B;
  --body-text: #9A9186;
  --max-width: 1400px;

  background: var(--bg);
  width: 100%;
}

.story-wrap * {
  box-sizing: border-box;
}

.story {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 90px 20px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.story .eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--eyebrow);
  text-transform: uppercase;
  margin: 0 0 6px 0;
}

.story-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: var(--body-text);
  margin: 0;
  /* max-width: 1000px; */
}

.story-text-bold {
  font-weight: 700;
  color: var(--heading);
}

/* Tablet (iPad) */
@media (max-width: 1024px) {
  .story {
    padding: 70px 48px;
    gap: 20px;
  }

  .story-text {
    font-size: 17px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .story {
    padding: 50px 24px;
    gap: 18px;
  }

  .story .eyebrow {
    font-size: 12px;
    letter-spacing: 0.18em;
    margin-bottom: 4px;
  }

  .story-text {
    font-size: 15px;
    line-height: 1.65;
  }
}

/* Small Mobile */
@media (max-width: 360px) {
  .story-text {
    font-size: 14px;
    line-height: 1.6;
  }
}


/* team wrap */
.team-wrap {
  --bg: #000;
  --max-width: 1400px;
  background: #000;
  width: 100%;
}

.team-wrap * {
  box-sizing: border-box;
}

.team {
  /* max-width: var(--max-width); */
  /* margin: 0 auto; */
  padding: 80px 80px 40px;
  width: 100%;
}

/* Heading */
.team-head {
  margin-bottom: 44px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #D4883B;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}

.eb-bar {
  width: 22px;
  height: 1px;
  background: #D4883B;
}

.team-head h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 38px;
  color: var(--heading);
  margin: 0;
  letter-spacing: -0.01em;
}

/* Founder Cards */
.founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  width: 100%;
}

.founder-card {
  width: 100%;
}

.founder-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 22px;
  background: #1a1a1a;
}

.founder-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  display: block;
  border-radius: 5px;
}

.founder-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #D4883B;
  margin: 0 0 6px 0;
}

.founder-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 14px 0;
}

.founder-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  width: 100%;
}

/* Full Width Banner Image */
.team-banner {
  width: 100%;
  aspect-ratio: 16 / 4;
  overflow: hidden;
  margin-bottom: 64px;
}

.team-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content Blocks */
.team-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.eyebrow.small {
  font-size: 14px;
  margin-bottom: 14px;
}

.content-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  width: 100%;
}

/* ---- Tablet (iPad) ---- */
@media (max-width: 1024px) {
  .team {
    padding: 60px 32px 20px;
  }

  .team-head h1 {
    font-size: 32px;
  }

  .founders {
    gap: 28px;
    margin-bottom: 50px;
  }

  .team-banner {
    aspect-ratio: 16 /5;
    margin-bottom: 50px;
  }
}

/* ---- Mobile ---- */
@media (max-width: 640px) {
  .team {
    padding: 48px 20px 20px;
  }

  .team-head {
    margin-bottom: 34px;
  }

  .team-head h1 {
    font-size: 26px;
  }

  .eyebrow {
    font-size: 11px;
    margin-bottom: 12px;
  }

  .founders {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 44px;
  }

  .founder-img {
    aspect-ratio: 3 / 2;
    margin-bottom: 18px;
  }

  .founder-card h3 {
    font-size: 18px;
  }

  .founder-desc {
    font-size: 14px;
    line-height: 1.6;
  }

  .team-banner {
    aspect-ratio: 4 / 2;
    margin-bottom: 40px;
  }

  .team-content {
    gap: 30px;
  }

  .eyebrow.small {
    font-size: 14px;
    letter-spacing: 0.16em;
    margin-bottom: 10px;
    line-height: 20px;
  }

  .content-text {
    font-size: 16px;
    line-height: 1.7;
  }
}

/* ---- Small Mobile ---- */
@media (max-width: 360px) {
  .team-head h1 {
    font-size: 23px;
  }

  .founder-card h3 {
    font-size: 17px;
  }
}


/* ---------- offer wrap ---------- */
.offer-wrap {
  --bg: #f7ecdf;
  --heading: #1E1B18;
  --eyebrow: #D4883B;
  --body-text: #9A9186;
  --card-bg: #16130F;
  --card-title: #FFFFFF;
  --card-text: #B8B0A6;
  --max-width: 1450px;

  background: var(--bg);
  width: 100%;
}

.offer-wrap * {
  box-sizing: border-box;
}

.offer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 50px 0px;
  width: 100%;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #D4883B;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}

.eb-bar {
  width: 22px;
  height: 1px;
  background: #D4883B;
}

.offer-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 34px;
  color: var(--heading);
  margin: 0 0 44px 0;
  letter-spacing: -0.01em;
}

/* GRID — 12 columns for unequal widths */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
  width: 100%;
}

.offer-narrow {
  grid-column: span 5;
}

.offer-wide {
  grid-column: span 7;
}

.offer-card {
  background: var(--card-bg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  height: 100%;
}

.offer-img {
  width: 100%;
  height: 350px;
  /* dono cards ke liye fixed same height */
  overflow: hidden;
  flex-shrink: 0;
}

.offer-img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.offer-card:hover .offer-img img {
  transform: scale(1.05);
}

.offer-info {
  padding: 22px 24px 26px;
  flex-shrink: 0;
  min-height: 118px;
  /* dono text boxes equal height ke liye, apni longest text ke hisaab se adjust karo */
  min-width: 0;
}

.offer-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--card-title);
  margin: 0 0 10px 0;
}

.offer-info p {
  font-family: 'Montserrat', sans-serif;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--card-text);
  margin: 0;
  word-wrap: break-word;
}

/* ---- Tablet (iPad) ---- */
@media (max-width: 1024px) {
  .offer {
    padding: 60px 32px 80px;
  }

  .offer-title {
    font-size: 30px;
    margin-bottom: 36px;
  }

  .offer-grid {
    gap: 22px;
  }

  .offer-info {
    padding: 20px 20px 22px;
    min-height: 128px;
  }
}

/* ---- Mobile ---- */
@media (max-width: 640px) {
  .offer {
    padding: 48px 20px 0px;
  }

  .eyebrow {
    font-size: 11px;
    margin-bottom: 12px;
  }

  .offer-title {
    font-size: 26px;
    margin-bottom: 28px;
  }

  .offer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .offer-narrow,
  .offer-wide {
    grid-column: 1 / -1;
  }

  .offer-img {
    aspect-ratio: 16 / 10;
  }

  .offer-info {
    padding: 18px 18px 20px;
    min-height: auto;
  }

  .offer-info h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .offer-info p {
    font-size: 13px;
    line-height: 1.55;
  }
}

/* ---- Small Mobile ---- */
@media (max-width: 360px) {
  .offer-title {
    font-size: 23px;
  }
}


/* =====================================================
   AWARDS & RECOGNITION
   ===================================================== */
.awards-wrap {
  background: rgba(255, 255, 255, 1);
  width: 100%;
}

.awards-wrap * {
  box-sizing: border-box;
}

.awards {
  max-width: 1450px;
  margin: 0 auto;
  padding: 90px 50px 100px;
  width: 100%;
}

.awards-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 44px);
  color: var(--ink);
  margin: 0 0 20px 0;
  letter-spacing: -0.01em;
}

.awards-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--stone);
  max-width: 640px;
  margin: 0 0 56px 0;
}

/* ---- Flexbox so last row centers, no grid lines ---- */
.awards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.award-item {
  background: #fff;
  width: 25%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.award-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- Tablet (iPad) ---- */
@media (max-width: 1024px) {
  .awards {
    padding: 70px 32px 80px;
  }

  .award-item {
    width: 33.3333%;
  }

  .awards-sub {
    max-width: 100%;
    margin-bottom: 44px;
  }
}

/* ---- Mobile ---- */
@media (max-width: 640px) {
  .awards {
    padding: 56px 20px 60px;
  }

  .awards-title {
    font-size: 26px;
    margin-bottom: 14px;
  }

  .awards-sub {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 36px;
  }

  .award-item {
    width: 50%;
  }
}

/* ---- Small Mobile ---- */
@media (max-width: 380px) {
  .awards-title {
    font-size: 23px;
  }
}


/* ============================================================
   ★★★★★  CONTACT PAGE — CSS START  ★★★★★
   ============================================================ */

/* ---- Contact Body: form + info ---- */
.contact-body {
  background: var(--ink);
  padding: 70px 0 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1fr;
  gap: 48px;
  align-items: stretch;
}

.contact-form-col {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-form-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--warm-white);
  margin-bottom: 8px;
}

.contact-form-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: var(--stone);
  margin-bottom: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

.cf-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(246, 241, 230, 0.05);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 13px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: var(--warm-white);
  outline: none;
  transition: border-color 0.25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--stone);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--amber);
}

.contact-form textarea {
  resize: vertical;
  min-height: 110px;
  flex: 1;
}

.contact-form button {
  margin-top: 6px;
  background: var(--amber);
  border: none;
  border-radius: 3px;
  padding: 15px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
}

.contact-form button:hover {
  background: #D4883B;
  transform: translateY(-1px);
}

/* ---- Right column: studio info card ---- */
.contact-info-col {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-info-card {
  background: var(--dusk-deep);
  border-radius: 4px;
  padding: 28px 26px;
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-info-logo {
  margin-bottom: 50px;
}

.contact-info-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.contact-info-block {
  margin-bottom: 18px;
}

.contact-info-block:last-child {
  margin-bottom: 0;
}

.contact-info-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(212, 136, 59, 1);
  margin-bottom: 6px;
}

.contact-info-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(244, 239, 230, 0.5);
}

.contact-info-value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-info-value a:hover {
  color: rgba(212, 136, 59, 1);
}

.contact-info-socials {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  padding-top: 16px;
}

.contact-info-socials a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--warm-white);
  font-size: 14px;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.contact-info-socials a:hover {
  background: rgba(212, 136, 59, 1);
  border-color: rgba(212, 136, 59, 1);
  color: var(--ink);
  text-decoration: none;
}

/* Tablet (iPad) */
@media (max-width: 1024px) {
  .contact-body {
    padding: 56px 0 70px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 40px;
    align-items: start;
  }

  .contact-form-col,
  .contact-info-col {
    height: auto;
  }

  .contact-info-card {
    flex: none;
    height: auto;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .contact-body {
    padding: 44px 0 56px;
  }

  .contact-grid {
    gap: 32px;
  }

  .contact-form-title {
    font-size: 20px;
  }

  .contact-info-card {
    padding: 22px 20px;
  }

  .contact-info-logo img {
    height: 28px;
  }

  .contact-info-label {
    font-size: 14px;
  }

  .contact-info-socials {
    gap: 12px;
    padding-top: 12px;
  }

  .contact-info-socials a {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }
}

/* ============================================================
   ★★★★★  CONTACT PAGE — CSS END  ★★★★★
   ============================================================ */


/* =====================================================
   STUDIO COLLECTIVE
   ===================================================== */
.studio-collective {
  background: #0c0d18;
  padding: 50px 0 100px;
}

.sc-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: #D4883B;
}

.sc-eyebrow .sc-bar {
  width: 26px;
  height: 1px;
  background: #D4883B;
}

.sc-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 32px);
  color: var(--warm-white);
  margin-bottom: 48px;
}

.sc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.sc-member {
  display: flex;
  flex-direction: column;
}

/* unified card — photo + text joined, rounded together */
.sc-card {
  border-radius: 4px;
  overflow: hidden;
  background: #14110d;
}

.sc-photo {
  width: 100%;
  /* aspect-ratio: 1 / 1; */
}

.sc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  display: block;
  transition: transform 0.5s ease;
}

.sc-member:hover .sc-photo img {
  transform: scale(1.04);
}

.sc-info {
  padding: 14px 16px 16px;
}

.sc-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--warm-white);
  margin-bottom: 4px;
}

/* ---- Tablet (iPad) ---- */
@media (max-width: 1024px) {
  .studio-collective {
    padding: 70px 0 80px;
  }

  .sc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .sc-title {
    margin-bottom: 36px;
  }
}

/* ---- Mobile ---- */
@media (max-width: 640px) {
  .studio-collective {
    padding: 56px 0 60px;
  }

  .sc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
  }

  .sc-info {
    padding: 12px 12px 14px;
  }

  .sc-name {
    font-size: 14px;
  }

  .sc-title {
    font-size: 22px;
    margin-bottom: 28px;
  }
}

/* ---- Small Mobile ---- */
@media (max-width: 380px) {
  .sc-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px 10px;
  }

  .sc-name {
    font-size: 12px;
  }
}


/* =====================================================
   EXPERTISE PAGE CSS
   ===================================================== */

/* =====================================================
   OUR DISCIPLINES
   ===================================================== */
.disciplines {
  background: #0a0a0a;
  padding: 90px 0 90px;
}

.dc-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: #D4883B;
}

.dc-eyebrow .dc-bar {
  width: 26px;
  height: 1px;
  background: #D4883B;
}

.dc-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 32px);
  color: var(--warm-white);
  margin-bottom: 48px;
}

.dc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 32px;
}

.dc-card {
  background: #14110d;
  border-radius: 6px;
  padding: 24px 24px 30px;
}

.dc-img {
  width: 100%;
  aspect-ratio: 16 /5;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 24px;
}

.dc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.dc-card:hover .dc-img img {
  transform: scale(1.04);
}

.dc-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 40px;
  line-height: 1;
  color: #D4883B;
  margin-bottom: 12px;
}

.dc-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--warm-white);
  margin-bottom: 14px;
}

.dc-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

/* ---- Tablet (iPad) ---- */
@media (max-width: 1024px) {
  .disciplines {
    padding: 70px 0 70px;
  }

  .dc-grid {
    gap: 22px;
  }

  .dc-card {
    padding: 20px 20px 26px;
  }

  .dc-img {
    margin-bottom: 20px;
  }

  .dc-num {
    font-size: 34px;
  }

  .dc-name {
    font-size: 17px;
  }

  .dc-title {
    margin-bottom: 36px;
  }
}

/* ---- Mobile ---- */
@media (max-width: 640px) {
  .disciplines {
    padding: 56px 0 50px;
  }

  .dc-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .dc-card {
    padding: 18px 18px 22px;
  }

  .dc-img {
    aspect-ratio: 16 / 8;
    margin-bottom: 18px;
  }

  .dc-num {
    font-size: 30px;
    margin-bottom: 8px;
  }

  .dc-name {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .dc-desc {
    font-size: 13px;
    line-height: 1.65;
  }

  .dc-title {
    font-size: 22px;
    margin-bottom: 28px;
  }
}

/* ---- Small Mobile ---- */
@media (max-width: 380px) {
  .dc-card {
    padding: 16px 16px 20px;
  }

  .dc-name {
    font-size: 15px;
  }
}


/* =====================================================
   SECTORS SECTION CSS
   ===================================================== */
.sectors {
  background: rgba(0, 0, 0, 1);
  padding: 80px 0 70px;
}

.sod-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(212, 136, 59, 1);
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 18px;
  font-family: 'Montserrat', sans-serif;
}

.sod-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: rgba(212, 136, 59, 1);
  display: inline-block;
}

.sod-heading {
  color: #fff;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 44px;
  letter-spacing: -0.5px;
  font-family: 'Montserrat', sans-serif;
}

.sod-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.sod-card {
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* unequal column widths, alternating per row */
.sod-narrow {
  grid-column: span 5;
}

.sod-wide {
  grid-column: span 7;
}

.sod-media {
  position: relative;
  width: 100%;
  height: clamp(240px, 27vw, 386px);
  overflow: hidden;
  background: #222;
  flex-shrink: 0;
  /* image apni height fix rakhe, shrink na ho */
}

.sod-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 5px;
}

/* text area background */
.sod-body {
  background: rgba(244, 239, 230, 0.1);
  padding: 26px 28px 32px;
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 148px;
  /* adjust based on longest description */
}

.sod-body h2 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
}

.sod-body p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(244, 239, 230, 0.5);
  max-width: 100%;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
}

/* full-width residences card with single image */
.sod-full {
  grid-column: 1 / -1;
}

.sod-full .sod-media {
  height: clamp(260px, 30vw, 420px);
}

@media (max-width: 900px) {
  .sod-grid {
    grid-template-columns: 1fr;
  }

  .sod-card,
  .sod-narrow,
  .sod-wide {
    grid-column: 1 / -1;
  }

  .sod-media {
    height: auto;
    aspect-ratio: 16/10;
  }

  .sectors {
    padding: 48px 0 30px;
  }

  .sod-full .sod-media {
    height: auto;
    aspect-ratio: 16/10;
  }
}

@media (max-width: 480px) {
  .sod-heading {
    margin-bottom: 32px;
  }

  .sod-body {
    padding: 20px 20px 26px;
  }

  .sod-body h2 {
    font-size: 19px;
  }
}


/* =====================================================
   PARTNER WITH OUR STUDIO / CTA
   ===================================================== */
.partner-cta {
  background: #0a0a0a;
  padding: 100px 0 110px;
  text-align: center;
}

.pc-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(212, 136, 59, 1);
}

.pc-eyebrow .pc-bar {
  width: 26px;
  height: 1px;
  background: rgba(212, 136, 59, 1);
}

.pc-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 44px);
  color: var(--warm-white);
  margin-bottom: 24px;
}

.pc-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  max-width: 640px;
  margin: 0 auto 40px;
}

.pc-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.pc-btn-solid {
  background: rgba(212, 136, 59, 1);
  color: #14110d;
  border: 1px solid rgba(212, 136, 59, 1);
}

.pc-btn-solid:hover {
  background: rgba(212, 136, 59, 0.85);
}

.pc-btn-outline {
  background: transparent;
  color: rgba(212, 136, 59, 1);
  border: 1px solid rgba(212, 136, 59, 1);
}

.pc-btn-outline:hover {
  background: rgba(212, 136, 59, 0.1);
}

/* ---- Tablet (iPad) ---- */
@media (max-width: 1024px) {
  .partner-cta {
    padding: 80px 0 90px;
  }

  .pc-desc {
    max-width: 90%;
  }
}

/* ---- Mobile ---- */
@media (max-width: 640px) {
  .partner-cta {
    padding: 64px 0 70px;
  }

  .pc-title {
    font-size: 26px;
    margin-bottom: 18px;
  }

  .pc-desc {
    font-size: 14px;
    line-height: 1.65;
    max-width: 100%;
    margin-bottom: 32px;
  }

  .pc-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding: 0 16px;
  }

  .pc-btn {
    width: 100%;
    padding: 15px 24px;
  }
}

/* ---- Small Mobile ---- */
@media (max-width: 380px) {
  .pc-title {
    font-size: 22px;
  }

  .pc-desc {
    font-size: 13.5px;
  }
}

/* =====================================================
   WORK CSS START
   ===================================================== */

/* =====================================================
   SPACES SECTION
   ===================================================== */
.spaces-section {
  background: #d4d4d4;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
}

.spaces-wrap {
  max-width: 1450px;
  margin: 0 auto;
  padding: 96px 48px 120px;
}

/* =====================================================
   HEADING
   ===================================================== */
.spaces-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 1.14;
  letter-spacing: -0.5px;
  margin: 40px 0 72px;
  color: #1a1a1a;
  max-width: 900px;
}

/* =====================================================
   GRID
   ===================================================== */
.spaces-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 56px 32px;
}

/* =====================================================
   CARD
   ===================================================== */
.spaces-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

/* =====================================================
   FRAME
   ===================================================== */
.spaces-frame {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  isolation: isolate;
  background: #eee;
  transition:
    transform 500ms cubic-bezier(.16, .8, .24, 1),
    box-shadow 500ms ease;
}

/* CARD HOVER */
.spaces-card:hover .spaces-frame,
.spaces-frame.spaces-active {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .16);
}

/* =====================================================
   MAIN IMAGE
   ===================================================== */
.spaces-cover-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 900ms cubic-bezier(.16, .8, .24, 1);
}

/* IMAGE ZOOM */
.spaces-card:hover .spaces-cover-photo,
.spaces-frame.spaces-active .spaces-cover-photo {
  transform: scale(1.06);
}

/* =====================================================
   IMAGE DARK OVERLAY
   ===================================================== */
.spaces-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 45%,
      rgba(0, 0, 0, .08) 65%,
      rgba(0, 0, 0, .40) 100%);
  opacity: 1;
  transition: opacity 450ms ease;
}

/* Remove overlay on hover */
.spaces-card:hover .spaces-frame::before,
.spaces-frame.spaces-active::before {
  opacity: 0;
}

/* =====================================================
   HOVER REVEAL
   ===================================================== */
.spaces-reveal {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 42px;
  padding: 40px;
  background: rgba(255, 255, 255, .92);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition:
    opacity 480ms cubic-bezier(.16, .8, .24, 1),
    transform 480ms cubic-bezier(.16, .8, .24, 1),
    visibility 0s linear 480ms;
  pointer-events: none;
}

/* SHOW REVEAL */
.spaces-card:hover .spaces-reveal,
.spaces-frame.spaces-active .spaces-reveal {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition:
    opacity 480ms cubic-bezier(.16, .8, .24, 1),
    transform 480ms cubic-bezier(.16, .8, .24, 1),
    visibility 0s;
}

/* =====================================================
   HOVER MAIN LOGO
   ===================================================== */
.spaces-hover-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Hover logo image */
.spaces-hover-logo img {
  display: block;
  width: auto;
  max-width: 230px;
  max-height: 100px;
  object-fit: contain;
}

/* =====================================================
   SUB BRAND LOGOS
   ===================================================== */
.spaces-sub-brands {
  width: 100%;
  max-width: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  /* gap: 24px 30px; */
}

/* Each logo holder */
.spaces-sub-brands span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 105px;
  height: 55px;
  flex-shrink: 0;
}

/* Sub logo images */
.spaces-sub-brands img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100px;
  max-height: 100px;
  object-fit: contain;
  transition:
    transform 300ms ease,
    opacity 300ms ease;
}

/* Logo hover */
.spaces-sub-brands span:hover img {
  transform: scale(1.08);
}

/* =====================================================
   CAPTION
   ===================================================== */
.spaces-caption {
  margin-top: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #555;
  text-align: center;
  transition: color 250ms ease;
}

/* =====================================================
   FOCUS
   ===================================================== */
.spaces-card:focus {
  outline: none;
}

.spaces-card:focus-visible .spaces-frame {
  outline: 2px solid #13202c;
  outline-offset: 5px;
}

/* =====================================================
   TABLET / IPAD
   ===================================================== */
@media (max-width: 1024px) {
  .spaces-wrap {
    padding: 72px 40px 96px;
  }

  .spaces-heading {
    font-size: 40px;
    margin-bottom: 56px;
  }

  .spaces-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 28px;
  }

  .spaces-frame {
    height: 400px;
  }

  .spaces-hover-logo img {
    max-width: 190px;
    max-height: 80px;
  }

  .spaces-reveal {
    padding: 32px;
    gap: 32px;
  }

  .spaces-sub-brands {
    max-width: 360px;
    gap: 20px;
  }

  .spaces-sub-brands span {
    width: 90px;
    height: 48px;
  }

  .spaces-sub-brands img {
    max-width: 85px;
    max-height: 45px;
  }
}

/* =====================================================
   MOBILE
   ===================================================== */
@media (max-width: 620px) {
  .spaces-wrap {
    padding: 56px 22px 80px;
  }

  .spaces-heading {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 40px;
  }

  .spaces-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .spaces-frame {
    height: 300px;
  }

  .spaces-reveal {
    padding: 26px 20px;
    gap: 26px;
  }

  .spaces-hover-logo img {
    max-width: 170px;
    max-height: 75px;
  }

  .spaces-sub-brands {
    max-width: 320px;
    gap: 14px 12px;
  }

  .spaces-sub-brands span {
    width: 82px;
    height: 44px;
  }

  .spaces-sub-brands img {
    max-width: 78px;
    max-height: 40px;
  }

  .spaces-caption {
    margin-top: 12px;
    font-size: 12px;
    letter-spacing: 1.3px;
  }
}


/* =====================================================
   TAJ GORBANDH — CASE STUDY
   ===================================================== */
.case-study {
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
}

.case-study figure {
  display: block;
  width: 100%;
  line-height: 0;
}

.case-study img {
  display: block;
  width: 100%;
  height: auto;
  /* never crops — full image always shows */
}

/* small breathing room between slides on larger screens only */
.case-study figure+figure {
  margin-top: 2px;
}

/* ---- Tablet (iPad) ---- */
@media (max-width: 1024px) {
  .case-study {
    max-width: 100%;
  }
}

/* ---- Mobile ---- */
@media (max-width: 640px) {
  .case-study figure+figure {
    margin-top: 1px;
  }
}

/* =====================================================
   SELECTED WORKS — CLIENT SHOWCASE BANNER
   (separate from .hero — uses same tokens as rest of site)
   ===================================================== */
.sw-banner {
  position: relative;
  height: 70vh;
  min-height: 550px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}

.sw-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.sw-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(12, 13, 24, 0.15) 0%, rgba(12, 13, 24, 0.35) 55%, rgba(12, 13, 24, 0.75) 100%);
}

.sw-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-bottom: 64px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.sw-text {
  max-width: 520px;
  flex: 1 1 380px;
}

.sw-text .eyebrow {
  color: rgba(212, 136, 59, 1);
}

.sw-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--warm-white);
  margin-bottom: 20px;
}

.sw-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--stone);
  max-width: 34ch;
  margin-bottom: 30px;
}

.sw-stats {
  display: flex;
  gap: 32px;
}

.sw-stat {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.sw-stat .num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: rgba(212, 136, 59, 1);
  line-height: 1;
}

.sw-stat .label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 500;
}

/* ---- Tablet (iPad) ---- */
@media (max-width: 1024px) {
  .sw-banner {
    height: auto;
    min-height: unset;
    padding-top: 70px;
    background: var(--ink);
  }

  .sw-bg {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .sw-overlay {
    position: absolute;
    inset: 0;
  }

  .sw-content {
    position: relative;
    align-items: flex-end;
    padding: 24px 24px 40px;
  }

  .sw-title {
    font-size: 40px;
  }
}

/* ---- Mobile ---- */
@media (max-width: 640px) {
  .sw-banner {
    height: auto;
    min-height: unset;
    padding-top: 50px;
    background: var(--ink);
  }

  .sw-bg {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .sw-overlay {
    position: absolute;
    inset: 0;
  }

  .sw-content {
    position: relative;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    padding: 20px 20px 30px;
  }

  .sw-text {
    max-width: 100%;
  }

  .sw-desc {
    max-width: 100%;
  }

  .sw-title {
    font-size: 28px;
  }
}


/* =====================================================
   BRAND TABS — TAJ / VIVANTA / GATEWAY PORTFOLIO
   ===================================================== */
.bt-section {
  background: #ffffff;
  padding: 56px 0 100px;
}

.bt-wrap {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ---- Tab logos row ---- */
.bt-tabs {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 44px;
  border-bottom: 1px solid #e9e5db;
  padding-bottom: 22px;
}

.bt-tab {
  background: none;
  border: none;
  /* padding: 6px 4px 14px; */
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  opacity: 0.4;
  filter: grayscale(60%);
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.25s ease;
}

.bt-tab img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
}

.bt-tab:hover {
  opacity: 0.75;
  filter: grayscale(20%);
}

.bt-tab.active {
  opacity: 1;
  filter: grayscale(0%);
}

.bt-tab.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -23px;
  height: 2px;
  background: rgba(212, 136, 59, 1);
}

.bt-tab:focus-visible {
  outline: 2px solid rgba(212, 136, 59, 1);
  outline-offset: 4px;
}

/* ---- Panels ---- */
.bt-panel {
  display: none;
}

.bt-panel.active {
  display: block;
  animation: btFade 0.4s ease;
}

@keyframes btFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 28px;
}

.bt-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.bt-card-img {
  width: 100%;
  /* aspect-ratio: 4 / 3; */
  overflow: hidden;
  border-radius: 2px;
  background: #eee;
  margin-bottom: 14px;
}

.bt-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.bt-card:hover .bt-card-img img {
  transform: scale(1.05);
}

.bt-card-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(208, 164, 0, 1);
  margin-bottom: 6px;
}

.bt-card-meta {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: #9a9a9a;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.bt-card-meta .dot {
  color: #c9c4b8;
}

/* ---- Tablet (iPad) ---- */
@media (max-width: 1024px) {
  .bt-section {
    padding: 48px 0 80px;
  }

  .bt-wrap {
    padding: 0 32px;
  }

  .bt-tabs {
    gap: 30px;
    margin-bottom: 36px;
  }

  .bt-tab img {
    height: 80px;
  }

  .bt-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
}

/* ---- Mobile ---- */
@media (max-width: 640px) {
  .bt-section {
    padding: 36px 0 60px;
  }

  .bt-wrap {
    padding: 0 20px;
  }

  .bt-tabs {
    gap: 22px;
    margin-bottom: 28px;
    padding-bottom: 16px;
  }

  .bt-tab img {
    height: 40px;
  }

  .bt-tab.active::after {
    bottom: -17px;
  }

  .bt-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .bt-card-name {
    font-size: 14px;
  }
}


/* =====================================================
   BACK TO WORK BUTTON
   ===================================================== */
.back-to-work {
  position: fixed;
  top: 24px;
  left: 32px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease;
}

.back-to-work:hover {
  background: #ffffff;
  color: #000;
}

.back-to-work svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .back-to-work {
    /* margin: 20px 0 0 16px; */
    font-size: 12px;
    padding: 8px 16px;
  }
}