/* ==========================================================================
   DEADMAN STUDIOS — Landing Page
   Custom styles on top of Bootstrap 5.3.3
   --------------------------------------------------------------------------
   1.  Design tokens
   2.  Base / typography
   3.  Layout helpers (container, section, eyebrow, buttons)
   4.  Navbar (fixed pill — opens at its own width, never full width)
   5.  Hero
   6.  Statement
   7.  Selected work
   8.  Brand banner
   9.  Secret sauce / BTS board
   10. Community
   11. Contact + Contact Form 7
   12. Footer
   13. Reveal animation
   14. Responsive
   ========================================================================== */
:root {
  --dm-font: "Josefin Sans", "Segoe UI", Helvetica, Arial, sans-serif;   /* body */
  --dm-display: "Clash Display", "Josefin Sans", Helvetica, Arial, sans-serif;  /* headings */
}

body {
  
  font-family: var(--dm-display);
  font-size: 16px;        /* Josefin ka x-height chhota hai — 15 se 16 */
  line-height: 1.75;
}
h1,h2,h3,h4,h5 {
font-family: var(--dm-font);
}
/* 1. DESIGN TOKENS ======================================================== */
:root {
  /* colours */
  --dm-dark: #2d2d2d;          /* main dark sections            */
  --dm-dark-2: #262626;        /* alternating dark section      */
  --dm-black: #0c0c0c;         /* BTS board                     */
  --dm-light: #f1f0ee;         /* statement + footer            */
  --dm-purple: #8b5cf6;        /* primary CTA                   */
  --dm-purple-dark: #7745f0;
  --dm-white: #ffffff;
  --dm-text-light: #D3D3D3;
  --dm-text-muted: #a9a9a9;
  --dm-text-dark: #1a1a1a;
  --dm-text-dark-muted: #5c5c5c;
  --dm-rule: #d8d6d2;
  --dm-font: "Josefin Sans", "Segoe UI", Helvetica, Arial, sans-serif;   /* body */
  --dm-display: "Clash Display", "Josefin Sans", Helvetica, Arial, sans-serif;  /* headings */

  /* layout */
  --dm-container: 1720px;
  --dm-gutter: 24px;
  --dm-radius: 4px;

  /* type */
  --dm-font: "Clash Display";
}

/* 2. BASE / TYPOGRAPHY ==================================================== */
* { -webkit-font-smoothing: antialiased; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--dm-font);
  background: var(--dm-dark);
  color: var(--dm-text-light);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; transition: color .25s ease, opacity .25s ease; }

::selection { background: var(--dm-purple); color: #fff; }

/* 3. LAYOUT HELPERS ======================================================= */
.container {
  width: 100%;
  max-width: var(--dm-container);
  margin-inline: auto;
  padding-inline: var(--dm-gutter);
}
.row>* {
   
    margin-top:0px;
}
.row {
  margin: 0px;
}
.section { padding: 100px 0; }
.section--dark { background: var(--dm-dark); }
.section--dark-2 { background: var(--dm-dark-2); }
.section--light { background: var(--dm-light); color: var(--dm-text-dark); }
body { overflow-x: clip; }   /* hidden nahi, warna sticky kaam nahi karti */
p {
  font-family: "Josefin Sans", "Segoe UI", Helvetica, Arial, sans-serif;
}
.stack { position: relative; }

@media (min-width: 992px) {
  .stack > .statement {
    position: sticky;
    top: 0;
    z-index: 0;
  }
  .stack > .work {
    position: relative;
    z-index: 1;
    box-shadow: 0 -30px 60px rgba(0, 0, 0, .35);   /* optional — edge depth */
  }
}
/* eyebrow: ↳ SELECTED WORK */
.dm-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #FFDDB8;
  margin-bottom: 26px;
}
/* .dm-eyebrow::before { content: ""; font-size: 12px; line-height: 1; opacity: .8; background-image: url("../images/Arrow-b.svg"); width: 27px;background-repeat: no-repeat; height:27px;
    height: 27px; } */

/* section headings */
.dm-title {
  font-size: 96px;
  font-weight: 600;
  line-height: 100px;
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin: 0 120px;
  text-align: center;
}

.dm-lead {
  
  margin: 26px 360px 0;
  font-size: 24px;
  line-height: 32px;
  color: #D3D3D3;
  text-align: center;
}
/* .statement { position: static; }

@media (min-width: 992px) {
  .statement { position: sticky; top: 0; z-index: 0; }
} */
/* buttons */
.dm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 74px;
  min-width: 280px;
  padding: 13px 26px;
  border: 0;
  border-radius: var(--dm-radius);
  background: var(--dm-purple);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.dm-btn:hover { background: var(--dm-purple-dark); color: #fff; transform: translateY(-2px); }
.dm-btn:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.dm-btn__arrow { font-size: 13px; line-height: 1; padding-left: 10px;}

/* 4. NAVBAR =============================================================== */
.dm-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 386px;              /* navbar width as per design            */
  max-width: 386px;
  z-index: 1030;
}

.dm-nav__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  padding: 16px 20px;
  background: rgba(17, 17, 17, 0.30);
backdrop-filter: blur(6px);
  border-radius: 0px;
  transition: background .3s ease;
}
.dm-nav.is-scrolled .dm-nav__bar {background: rgba(17, 17, 17, 0.30);
backdrop-filter: blur(6px); }

.dm-nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: #fff;
}
.dm-nav__logo-top {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
}
.dm-nav__logo-top .dot { color: var(--dm-purple); font-size: 11px; }
.dm-nav__logo-sub {
  font-size: 7px;
  font-weight: 400;
  letter-spacing: .42em;
  color: var(--dm-text-muted);
  margin-top: 3px;
}

/* hamburger */
.dm-nav__toggle {
  width: 34px;
  height: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  border: 0;
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
}
.dm-nav__toggle span {
  display: block;
  width: 17px;
  height: 1.5px;
  background: #fff;
  transition: transform .3s ease, opacity .3s ease;
}
.dm-nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.dm-nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.dm-nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* dropdown panel — same width as the bar, NOT full width */
.dm-nav__menu {
  margin-top: 0px;
 background: rgba(17, 17, 17, 0.30);
backdrop-filter: blur(6px);
  border-radius: 0px;
  overflow: hidden;
}
.dm-nav__list { list-style: none; margin: 0; padding: 10px 16px 14px; }
.dm-nav__list li + li { border-top: 1px solid rgba(255, 255, 255, .07); }
.dm-nav__list a {
  display: block;
  padding: 11px 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dm-text-light);
}
.dm-nav__list a:hover { color: #F4A879; }

/* 5. HERO ================================================================= */
.hero {
  position: relative;
  min-height: 830px;
  height: 100vh;
  max-height: 1100px;
  overflow: hidden;
  background: #e79b2a;
}

.row-list {
	display:flex;
	flex-direction:row;
	gap:133px;
}
/* HERO BANNER — blurred backdrop + sharp inset stage */
.hero {
  position: relative;
  overflow: hidden;
  padding: 140px 0 90px;
 
  --dm-hero-inset: 10%;   /* stage ka side margin */
  --dm-hero-blur: 34px;   /* back layer blur */
}

.hero__backdrop {
  position: absolute;
  inset: -70px;           /* oversize taake blur ke edges soft na dikhein */
  z-index: 0;
}
.hero__backdrop .hero__video {
  filter: blur(var(--dm-hero-blur)) saturate(.9) brightness(.42);
  transform: scale(1.08);
}









.dm-nav__toggle::before,
.dm-nav__toggle::after {
  content: "";
  position: absolute;
  width: 17px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  opacity: 0;
  transition: opacity .2s ease, transform .3s ease;
}
.dm-nav__toggle[aria-expanded="true"] > img { opacity: 0; }
.dm-nav__toggle[aria-expanded="true"]::before { opacity: 1; transform: rotate(45deg); }
.dm-nav__toggle[aria-expanded="true"]::after  { opacity: 1; transform: rotate(-45deg); }

.dm-nav__toggle {
  position: relative;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.dm-nav__toggle > img {
  grid-area: 1 / 1;              /* dono ek hi jagah stack */
  width: 30px;
  height: 30px;
  transition: opacity .25s ease, transform .3s cubic-bezier(.2, .7, .2, 1);
}

.dm-nav__toggle .icon-cross  { opacity: 0; transform: rotate(-90deg) scale(.7); }
.dm-nav__toggle .icon-burger { opacity: 1; transform: none; }

.dm-nav__toggle[aria-expanded="true"] .icon-burger { opacity: 0; transform: rotate(90deg) scale(.7); }
.dm-nav__toggle[aria-expanded="true"] .icon-cross  { opacity: 1; transform: none; }

.hero__stage {
  position: relative;
  z-index: 2;
  width: calc(100% - (var(--dm-hero-inset) * 2));
  max-width: 1600px;
  margin-inline: auto;
  aspect-ratio: 18 / 9;
  overflow: hidden;
  background: #0b0e10;
  box-shadow: 0 40px 90px rgba(0, 0, 0, .45);
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__frame { position: absolute; inset: 16px; z-index: 3; pointer-events: none; }
.hero__frame span {
  position: absolute;
  width: 26px; height: 26px;
  border: 1px solid rgba(255, 255, 255, .7);
}
.hero__frame span:nth-child(1) { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.hero__frame span:nth-child(2) { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.hero__frame span:nth-child(3) { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.hero__frame span:nth-child(4) { bottom: 0; right: 0; border-left: 0; border-top: 0; }

@media (max-width: 991.98px) {
  .hero { padding: 108px 0 70px; --dm-hero-inset: 6%; --dm-hero-blur: 26px; }
  .hero__frame { inset: 12px; }
  .hero__frame span { width: 20px; height: 20px; }
}

@media (max-width: 767.98px) {
  .hero { padding: 92px 0 56px; --dm-hero-inset: 4.5%; }
  .hero__stage { aspect-ratio: 4 / 3; }
	.row-list {
	display:flex;
	flex-direction:row;
	gap:23px;
}
}

@media (prefers-reduced-motion: reduce) {
  .hero__video { animation: none; }
}

















.hero__backdrop {
    position: absolute;
    inset: -70px;
    z-index: 0;
}
/* .hero__stage {
    position: relative;
    z-index: 2;
    width: calc(100% - (var(--dm-hero-inset) * 2));
    max-width: 1600px;
    margin-inline: auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0b0e10;
    box-shadow: 0 40px 90px rgba(0, 0, 0, .45);
} */
.hero__frame {
    position: absolute;
    inset: 16px;
    z-index: 3;
    pointer-events: none;
}
.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero__media,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__media img { object-fit: cover; }

/* corner brackets over the hero footage */
.hero__frame {
  position: absolute;
  inset: 46px 62px;
  pointer-events: none;
}
.hero__frame span {
  position: absolute;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .65);
}
.hero__frame span:nth-child(1) { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.hero__frame span:nth-child(2) { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.hero__frame span:nth-child(3) { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.hero__frame span:nth-child(4) { bottom: 0; right: 0; border-left: 0; border-top: 0; }

/* 6. STATEMENT ============================================================ */
.statement { padding: 50px 0 0; }
.statement__head { text-align: center; }
.statement__line-1 {
  font-size: 96px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -.015em;
  color: var(--dm-text-dark);
  margin: 0;
}
.statement__line-2 {
  font-size: 128px;
  font-weight: 700;
  line-height: 128px;
  letter-spacing: -.02em;
  color: var(--dm-text-dark);
  margin: -10px 0 0;
  font-family: var(--dm-font);
}

.statement__box {
	max-width: 900px;
  	padding: 35px;
	margin: 0 auto 0;
	border-left: 1px solid var(--dm-rule);
  	border-right: 1px solid var(--dm-rule);
  text-align: center;
}
.dm-border{
		margin-top:40px;
	  	border-top: 1px solid var(--dm-rule);	
}
.pm-zero{
	padding:0;
	margin:0;
}

.statement__mark img {
  width: 27%;
/*   padding-top: 45px; */
}
.statement__box p {
  margin: 0;
  font-size: 24px;
  line-height: 32px;
  color: #353945;
}
.statement__mark {
  margin: 34px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  color: var(--dm-text-dark);
}
.statement__mark .top { font-size: 15px; font-weight: 700; letter-spacing: .06em; }
.statement__mark .top .dot { color: var(--dm-purple); font-size: 12px; }
.statement__mark .sub {
  font-size: 8px;
  letter-spacing: .44em;
  color: var(--dm-text-dark-muted);
  margin-top: 4px;
}

/* 7. SELECTED WORK ======================================================== */
.work { padding: 96px 0 90px; }
.work__grid { margin-top: 54px; display: flex; flex-direction: column; gap: 40px; }

.work-card {
  position: relative;
  display: block;
  aspect-ratio: 1280 / 620;      /* same image ratio for every card */
  border-radius: var(--dm-radius);
  overflow: hidden;
  isolation: isolate;
}
.work-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2, .7, .2, 1);
}
.work-card:hover img { transform: scale(1.04); }
.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .68) 0%, rgba(0, 0, 0, .35) 42%, rgba(0, 0, 0, 0) 72%);
}
.work-card__body {
  position: absolute;
  z-index: 2;
  left: 40px;
  bottom: 34px;
  max-width: 620px;
  color: #fff;
}
.work-card__title {
  font-size: 80px;
  font-weight: 700;
  line-height: 80px;
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin: 0;
}
.work-card__text {
  margin: 14px 0 0;
  font-size: 20px;
  line-height: 24px;
	font-weight: 300;
  color: rgba(255, 255, 255, .78);
}
.work-card__link {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fff;
}
.work-card:hover .work-card__link { color: #F4A879; }

.work__cta { text-align: center; margin-top: 48px; }

/* 8. BRAND BANNER ========================================================= */
.banner {
  /* pin kitni der chale — bada = slow, chhota = tez */
  --ls-travel: 150vh;
  /* dono words ki combined height (stage height ka multiple) */
  --ls-fill: 1;

  position: relative;
  overflow: visible;          /* sticky ko zinda rakhta hai */
}

/* runway: itna scroll hone tak section screen pe pinned rahega */
.banner::after {
  content: "";
  display: block;
  height: var(--ls-travel);
  pointer-events: none;
}

/* THE PIN — ye block screen pe fix ho jata hai, sirf andar ka text move karta hai */
.banner__stage {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;             /* mobile URL bar se height badalti nahi */
  overflow: hidden;           /* flattened sliver saaf clip hota hai */
}

.banner__media,
.banner__media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.banner__media img { object-fit: cover; }

/* Two stacked lines, each stretched to its own scroll-driven height. Their
   heights are set by assets/js/main.js and always sum to the stage height, so
   one word grows as the other shrinks. */
.banner__lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  pointer-events: none;
}
.banner__line {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  min-height: 0;
  overflow: hidden;
}

/* The word fills its line in BOTH directions — full width always (so it never
   clips on any screen) and the full, changing height (the stretch). An uploaded
   SVG stretches via object-fit; the inline text SVG via preserveAspectRatio. */
.banner__word {
  display: block;
  width: 100%;
  height: 100%;
  will-change: height;
}
.banner__word--img { object-fit: fill; }

.banner__word--text text {
  font-family: var(--dm-display), "Clash Display", sans-serif;
  font-weight: 500;
  letter-spacing: -.01em;
  text-transform: uppercase;
}
.banner__line--1 .banner__word--text text { fill: #FFDDB8; }
.banner__line--2 .banner__word--text text { fill: #F4A879; }

.banner__caption {
  position: absolute;
  z-index: 3;
  left: 45%;
  top: 40%;
  transform: rotate(-4deg);
  width: 210px;
  text-align: center;
  font-size: 44px;
  font-weight: 500;
  line-height: 46px;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .35);
}

/* 9. SECRET SAUCE / BTS BOARD ============================================= */
.sauce { padding: 96px 0 100px; }

.bts {
  margin-top: 54px;
  border-radius: var(--dm-radius);
  padding: 26px 26px 30px;
}
.bts__head { text-align: center; padding: 12px 0 24px; }
.bts__head h3 {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin: 0;
  color: #fff;
}
.bts__head p {
  margin: 8px 0 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--dm-text-muted);
}

.bts__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 9px;
}
.bts__tile {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 2px;
  overflow: hidden;
  background: #161616;
}
.bts__tile img { width: 100%; height: 100%; object-fit: cover; opacity: .92; }
.bts__tile--label { display: flex; flex-direction: column; justify-content: center; padding: 10px; }
.bts__tile--label .no { font-size: 9px; letter-spacing: .18em; color: var(--dm-text-muted); }
.bts__tile--label .name { font-size: 10px; font-weight: 600; letter-spacing: .06em; color: #fff; }
.bts__tile--note {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px;
  background: #f4f2ef;
}
.bts__tile--note span {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.05;
  color: #141414;
}

/* 10. COMMUNITY =========================================================== */
.community {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.community__media,
.community__media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.community__media img { object-fit: cover; }
.community__media::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(90deg, rgba(60, 18, 32, .72) 0%, rgba(60, 18, 32, .25) 52%, rgba(60, 18, 32, 0) 78%); */
}
.community__inner { position: relative; z-index: 2; width: 100%; }
.community__box { border: 1px solid rgba(211, 211, 211, 0.50);
background: rgba(17, 17, 17, 0.30); display: flex;
max-width: 704px;
padding: 38px;
flex-direction: column;
}
.community__title {
 color: #D3D3D3;
font-family: "Clash Display";
font-size: 52px;
font-style: normal;
font-weight: 600;
line-height: 60px; 
letter-spacing: 4px;
text-transform: uppercase;
}
.community__text {
  margin: 18px 0 26px;
  font-size: 24px;
  line-height: 30px;
  color: rgba(255, 255, 255, .82);
}
.community__form .dm-input { margin-bottom: 14px; }
.community__form .dm-btn { width: 100%; min-width: 0; }

/* shared input skin (also used by Contact Form 7 fields) */
.dm-input {
  width: 100%;
  height: 71px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--dm-radius);
  background: rgba(0, 0, 0, .32);
  color: #fff;
  font-family: var(--dm-font);
  font-size: 20px;
  transition: border-color .25s ease, background .25s ease;
}
textarea.dm-input { height: auto; height: 71px; padding: 13px 16px; resize: vertical; }
.dm-input::placeholder { color: rgba(255, 255, 255, .45); }
.dm-input:focus {
  outline: none;
  border-color: var(--dm-purple);
  background: rgba(0, 0, 0, .45);
}

/* 11. CONTACT ============================================================= */
.contact { padding: 96px 0 100px; }
.contact__title {
  font-size: 96px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0;
}
.contact__text {
  margin: 14px 0 0;
  font-size: 24px;
  line-height: 1.85;
  color: var(--dm-text-muted);
}
.contact__row { margin-top: 46px; align-items: stretch; }
.contact__media {
  height: 100%;
  min-height: 300px;
  border-radius: var(--dm-radius);
  overflow: hidden;
}
.contact__media img { width: 100%; height: 100%; object-fit: cover; }
.contact__form .dm-btn { width: 100%; max-width: 100%; }

/* --- Contact Form 7 output ------------------------------------------------
   CF7 wraps every field in .wpcf7-form-control-wrap and outputs a <p> per
   row. These rules make the plugin markup match the static design 1:1.     */
.wpcf7 { margin: 0; }
.wpcf7 form.wpcf7-form p { margin: 0; }
.wpcf7 form.wpcf7-form p + p { margin-top: 32px; }
.wpcf7-form-control-wrap { display: block; }
.wpcf7 .wpcf7-submit { width: 100%; margin-top: 20px;}
.wpcf7 .wpcf7-spinner { display: block; margin: 10px auto 0; }
.wpcf7 .wpcf7-not-valid-tip {
  margin: -8px 0 12px;
  font-size: 11px;
  color: #ff8080;
}
.wpcf7 .wpcf7-response-output {
  margin: 16px 0 0 !important;
  padding: 12px 16px !important;
  border: 1px solid rgba(255, 255, 255, .2) !important;
  border-radius: var(--dm-radius);
  font-size: 12px;
}
.wpcf7 .wpcf7-form-control:where(.wpcf7-not-valid) { border-color: #ff8080; }

/* 12. FOOTER ============================================================== */
.footer { background: var(--dm-light); color: var(--dm-text-dark); padding: 100px 0 40px; }
.footer__logo { display: flex; flex-direction: column; line-height: 1; }
.footer__logo .top { font-size: 30px; font-weight: 700; letter-spacing: .02em; }
.footer__logo .top .dot { color: var(--dm-purple); font-size: 24px; }
.footer__logo .sub {
  font-size: 11px;
  letter-spacing: .48em;
  color: var(--dm-text-dark-muted);
  margin-top: 6px;
}
.content-sub {
  display: flex;
    justify-content: flex-end;
}
.log-sub img {
  width: 70%;
}
.footer__list { list-style: none; margin: 0; padding: 0; width: max-content;}
.footer__list li + li { margin-top: 9px; }
.footer__list a { font-size: 18px; color: #262626; font-weight: 500;}
.footer__list a:hover { color: var(--dm-text-dark); }
.footer__meta { text-align: left; }
.footer__meta a { display: block; font-size: 18px; font-weight: 600; color: var(--dm-text-dark); }
.footer__meta a + a { margin-top: 6px; }
.footer__meta p {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--dm-text-dark-muted);
}

/* 13. REVEAL ANIMATION ==================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2, .7, .2, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }


/* new custom  */

.work-card__body-right {
    z-index: 100000;
    position: absolute;
    right: 21px;
    bottom: 10px;
}

.work-card__body-right ul {
    display: flex;
    gap: 20px;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Josefin Sans';
}
.work-card__body-right ul li::marker {
    display: none;
}
.work-card__body-right ul {
    list-style: none;
    padding-left: 0;
}

.work-card__body-right ul li::marker {
    content: "";
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .work-card img { transition: none; }
}

/* 14. RESPONSIVE ========================================================== */
@media (max-width: 1366px) {
  .content-sub {
    gap: 40px;
}
.contact__title {
    font-size: 70px;
}
.dm-title {
    font-size: 70px;
    line-height: 70px;
}
.dm-lead {
    margin: 26px 60px 0;
}
.banner {
    position: relative;
    --ls-travel: 150vh;
}
.work-card__title {
    font-size: 60px;
    line-height: 56px;
}
.statement__line-2 {
    font-size: 105px;
    font-weight: 700;
    line-height: 99px;
}
}
@media (max-width: 1199.98px) {
  .bts__grid { grid-template-columns: repeat(5, 1fr); }
  .work-card__body { left: 30px; bottom: 28px; }
  .statement__line-1 {
    font-size: 60px;
}
    .statement__line-2 {
        font-size: 80px;
        line-height: 100px;
    }
}

@media (max-width: 991.98px) {
	.bts.reveal.is-visible iframe {
    height: 368px;
}
  .section { padding: 76px 0; }
  .hero { min-height: 620px; height: 78vh; }
  .hero__frame { inset: 30px 30px; }
  .statement { padding: 76px 0 0; }
  .statement__box { margin-top: 52px; padding: 36px 30px; }
  .work { padding: 76px 0 70px; }
  .community { min-height: 520px; }
  .banner { --ls-travel: 170vh; }
/* type ka canvas thoda andar */
  .sauce { padding: 76px 0 80px; }
  .contact { padding: 76px 0 80px; }
  .contact__media { min-height: 260px; margin-top: 28px; }
  .footer__meta { text-align: left; margin-top: 26px; }
  .bts__grid { grid-template-columns: repeat(4, 1fr); }
      .content-sub {
        gap: 0px;
		  flex-direction:column;
    }
    .community__box {
    max-width: 650px;
    padding: 25px;
}
.community__title {
    font-size: 40px;
    font-style: normal;
    line-height: 40px;
}
}

@media (max-width: 767.98px) {
	.bts.reveal.is-visible iframe {
    height: 268px;
}
  .work-card { aspect-ratio: 4 / 3; }
  .work-card::after {
    background: linear-gradient(0deg, rgba(0, 0, 0, .78) 8%, rgba(0, 0, 0, .25) 62%, rgba(0, 0, 0, 0) 100%);
  }
  .work-card__body { left: 22px; right: 22px; bottom: 22px; max-width: none; }
  .work-card__text { max-width: none; }
  .bts { padding: 18px; }
  .bts__grid { grid-template-columns: repeat(3, 1fr); gap: 7px; }
  .community__box { max-width: none; }
  .community__form { max-width: none; }
  .footer__list { margin-top: 22px; }
}

@media (max-width: 575.98px) {
	.community__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 30px 0px;
}
	.bts.reveal.is-visible iframe {
    height: 268px;
}
  

    .community__title {
        font-size: 30px;
        line-height: 34px;
    }
    .contact__title {
        font-size: 36px;
        line-height: 44px;
        letter-spacing: 2px;
    }
    .dm-input {
    width: 100%;
    height: 52px;
}
.contact__row .col-lg-6 {
  padding: 0px;
}
    .contact__text {
    font-size: 16px;
    line-height: 22px;
}
.community__text {
    margin: 15px 0px;
    font-size: 16px;
    line-height: 22px;
}
.dm-btn {
    font-size: 16px;}
.dm-input {
    font-size: 16px;}
.dm-lead {
        margin: 12px 0px 0;
        font-size: 16px;
        line-height: 24px;
    }
    .dm-title {
        font-size: 34px;
        line-height: 40px;
        margin: 0px;
    }
        .sauce {
        padding: 30px 0 30px;
    }
        .bts {
        padding: 0px;
        margin-top: 25px;
    }
    .banner {
        --ls-travel: 140vh;   /* chhoti screen pe lamba pin thakau lagta hai */
    }
.work-card {
        aspect-ratio: auto;
        min-height: 450px;
    }
    .work-card__text {
    font-size: 16px;
    line-height: 22px;
}
    .work-card__title {
        font-size: 24px;
        line-height: 28px;
        letter-spacing: 0;
    }
    .work-card__link {
    font-size: 12px;
}
.dm-eyebrow {
    font-size: 16px;
}
.statement__line-1 {
        font-size: 36px;
    }
    .statement__line-2 {
        font-size: 44px;
        line-height: 48px;
        margin-top: 20px;
    }
    .statement__box p {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    color: #353945;
}
    .banner__caption {
        width: 170px;
        font-size: 22px;
        left: 29%;
        top: 40%;
    }
    .hero {
        min-height: 666px;
        height: 11vh;
        padding: 140px 0 32px;
    }
    .hero__stage {
    aspect-ratio: 10 / 12;
}
.banner__stage {
    height: 100vh;
    height: 100svh;   /* full screen on phones, like the reference */
    overflow: hidden;
}
    .contact {
        padding: 76px 0 35px;
    }
  :root { --dm-gutter: 18px; }
  .dm-btn { min-width: 0; width: 100%; }
  .bts__grid { grid-template-columns: repeat(2, 1fr); }
 
}

/* ==========================================================================
   BRAND BANNER — scroll feel per breakpoint
   --------------------------------------------------------------------------
   The stretch effect now fits every width by construction (the words are SVG,
   stretched to full width), so nothing about the WORDS changes on small
   screens — only how much scroll the pinned effect takes. Shorter runway =
   the animation completes faster, then releases so the next section appears.
   ========================================================================== */
@media (max-width: 991.98px) {
  .banner { --ls-travel: 120vh; --ls-fill: 1; }
}
@media (max-width: 575.98px) {
  .banner { --ls-travel: 110vh; }
}
