:root {
  --bg: #f8f7f3;
  --text: #151515;
  --muted: #666;
  --accent: #e85d2a;
  --accent2: #f2a65a;
  --white: #fff;
  --dark: #151515;
  --line: #dcd9d1;
  --max: 1240px;
  --radius: 2px;
  --shadow: 0 18px 50px rgba(21, 21, 21, 0.08);
}


/* =========================================================
   RESET
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
.brand {
  font-family: Manrope, sans-serif;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}


/* =========================================================
   CONTAINER / SECTIONS
   ========================================================= */

.container {
  width: min(calc(100% - 48px), var(--max));
  margin: auto;
}

.section {
  padding: 120px 0;
}

.eyebrow {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 24px;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: 0.3s;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(248, 247, 243, 0.94);
  backdrop-filter: blur(14px);
  border-color: var(--line);
}

.nav {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* =========================================================
   LOGO
   ========================================================= */

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  text-decoration: none;
}

.brand span {
  display: flex;
  align-items: center;
}

.brand img {
  width: 150px;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.88rem;
  color: #444;
  position: relative;
}

.nav-link:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--accent);
  transition: 0.25s;
}

.nav-link.active:after,
.nav-link:hover:after {
  right: 0;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 20px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.86rem;
  transition: 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark);
  color: #fff;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: #111;
  margin: 7px 4px;
  transition: 0.25s;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  min-height: 100vh;
  padding: 150px 0 70px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(3.4rem, 7vw, 7.1rem);
  line-height: 0.88;
  letter-spacing: -0.065em;
  margin: 0 0 34px;
}

.hero h1 span {
  color: var(--accent);
}

.hero-text {
  max-width: 590px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 38px 0 55px;
}

.text-link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  font-weight: 700;
  border-bottom: 1px solid #aaa;
  padding-bottom: 5px;
}

.hero-meta {
  display: flex;
  gap: 42px;
}

.hero-meta div {
  display: flex;
  flex-direction: column;
}

.hero-meta strong {
  font: 700 1.25rem Manrope;
}

.hero-meta span {
  font-size: 0.75rem;
  color: var(--muted);
}


/* =========================================================
   HERO IMAGE
   ========================================================= */

.hero-visual {
  position: relative;
  width: 100%;
  min-width: 0;
}

.image-placeholder {
  background: linear-gradient(145deg, #ded8cd, #c9c0b2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #716b62;
}

.hero-image {
  position: relative;
  width: 100%;
  height: min(68vh, 690px);
  min-height: 500px;
  overflow: hidden;
  padding: 0;
}

.hero-image span {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.hero-image small {
  display: none;
}


/* =========================================================
   FLOATING HERO CARD
   ========================================================= */

.floating-card {
  position: absolute;
  left: -40px;
  bottom: 35px;
  background: #fff;
  padding: 22px 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-width: 245px;
  z-index: 2;
}

.floating-card span,
.floating-card small {
  font-size: 0.7rem;
  color: var(--muted);
}

.floating-card strong {
  font-family: Manrope;
  margin: 5px 0;
}


/* =========================================================
   ABOUT
   ========================================================= */

.intro-strip {
  border-top: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 50px;
}

.section-index {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

.intro-grid h2,
.section-head h2,
.contact-top h2,
.why h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 30px;
}

.intro-grid h2 em,
.contact-top h2 em,
.why h2 em {
  font-weight: 500;
  color: var(--accent);
}

.intro-grid > div p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.05rem;
}


/* =========================================================
   SERVICES
   ========================================================= */

.services {
  background: #fff;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
  margin-bottom: 60px;
}

.section-head > p {
  max-width: 380px;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  padding: 36px;
  min-height: 330px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: 0.3s;
}

.service-card:hover {
  background: var(--bg);
  transform: translateY(-3px);
}

.service-no {
  font-size: 0.68rem;
  color: #999;
}

.service-icon {
  font-size: 2rem;
  margin: 45px 0 28px;
}

.service-card h3 {
  font-size: 1.25rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.service-card > a {
  position: absolute;
  right: 32px;
  bottom: 28px;
  font-size: 1.2rem;
}


/* =========================================================
   PROJECT FILTERS
   ========================================================= */

.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter {
  border: 1px solid var(--line);
  background: transparent;
  padding: 9px 15px;
  cursor: pointer;
  font-size: 0.8rem;
}

.filter.active {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}


/* =========================================================
   PROJECT GRID
   ========================================================= */

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px 28px;
  width: 100%;
}

.project-card {
  min-width: 0;
  width: 100%;
  overflow: hidden;
  transition: 0.3s;
}

.project-card.hidden {
  display: none;
}


/* =========================================================
   PROJECT IMAGE
   ========================================================= */

.project-image,
.project-card:nth-child(3n) .project-image {
  position: relative;
  width: 100%;
  height: 430px;
  margin-bottom: 20px;
  overflow: hidden;
  background: #ded8cd;
}

.project-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.035);
}

.project-card:hover .project-image {
  transform: none;
}


/* =========================================================
   PROJECT CONTENT
   ========================================================= */

.project-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  min-width: 0;
}

.project-top > div {
  min-width: 0;
}

.project-card h3 {
  font-size: 1.35rem;
  margin-bottom: 5px;
}

.project-card p,
.project-card small {
  color: var(--muted);
  font-size: 0.82rem;
}

.project-card h3,
.project-card p,
.project-card small {
  overflow-wrap: anywhere;
}

.project-card .project-arrow {
  font-size: 1.4rem;
  flex-shrink: 0;
}


/* =========================================================
   WHY US
   ========================================================= */

.why {
  background: var(--dark);
  color: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

.light {
  color: #bbb;
}

.why-copy p:last-child {
  color: #aaa;
  max-width: 500px;
}

.why-list > div {
  display: grid;
  grid-template-columns: 50px 1fr;
  column-gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid #393939;
}

.why-list span {
  grid-row: 1/3;
  color: var(--accent2);
  font-size: 0.75rem;
}

.why-list h3 {
  margin-bottom: 5px;
}

.why-list p {
  color: #999;
  font-size: 0.88rem;
  margin: 0;
}


/* =========================================================
   PROCESS
   ========================================================= */

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-grid > div {
  padding: 34px;
  min-height: 230px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid span {
  font-size: 0.72rem;
  color: var(--accent);
}

.process-grid h3 {
  margin-top: 60px;
  margin-bottom: 8px;
}

.process-grid p {
  color: var(--muted);
  font-size: 0.86rem;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact {
  background: #eeeae2;
}

.contact-top {
  margin-bottom: 65px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
}

.contact-details > p {
  color: var(--muted);
  max-width: 430px;
  margin-bottom: 50px;
}

.detail {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #ccc5b9;
  padding: 20px 0;
}

.detail small {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: #777;
  margin-bottom: 6px;
}

.detail strong,
.detail a {
  font-family: Manrope;
  font-weight: 650;
}


/* =========================================================
   SOCIALS
   ========================================================= */

.socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.socials a {
  width: 38px;
  height: 38px;
  border: 1px solid #bbb;
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  transition: 0.2s;
}

.socials a:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}


/* =========================================================
   FORM
   ========================================================= */

.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field label {
  font-size: 0.74rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.field label span {
  font-weight: 400;
  color: #888;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #aaa;
  background: transparent;
  padding: 11px 2px;
  outline: none;
  border-radius: 0;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
}

.submit-btn {
  margin-top: 12px;
}

.form-status {
  font-size: 0.8rem;
  margin-top: 12px;
}

.hidden-frame {
  display: none;
}


/* =========================================================
   MAP
   ========================================================= */
/* =========================================================
   GOOGLE MAP
   ========================================================= */

.map-wrap {
  width: 100%;
  margin-top: 80px;
  overflow: hidden;
}

.map-placeholder {
  position: relative;
  width: 100%;
  height: 420px;
  min-height: 320px;

  background: #d9d4ca;

  display: block;
  overflow: hidden;
}

/* Google Maps iframe */
.map-placeholder iframe {
  display: block;

  width: 100% !important;
  height: 100% !important;

  min-width: 100%;
  min-height: 100%;

  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;

  position: absolute;
  inset: 0;

  max-width: none !important;
}

/* Agar map direct iframe ke bina kisi wrapper ke andar hai */
.map-placeholder > div {
  width: 100%;
  height: 100%;
}

/* Map ke andar iframe ho to */
.map-placeholder > div iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  display: block;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 992px) {

  .map-wrap {
    margin-top: 60px;
  }

  .map-placeholder {
    height: 380px;
  }

  .map-placeholder iframe {
    width: 100% !important;
    height: 100% !important;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .map-wrap {
    margin-top: 50px;
  }

  .map-placeholder {
    width: 100%;
    height: 360px;
    min-height: 300px;
  }

  .map-placeholder iframe {
    width: 100% !important;
    height: 100% !important;
  }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

  .map-wrap {
    margin-top: 45px;
  }

  .map-placeholder {
    height: 320px;
    min-height: 280px;
  }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 360px) {

  .map-placeholder {
    height: 280px;
    min-height: 250px;
  }
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  background: #0e0e0e;
  color: #fff;
  padding: 80px 0 30px;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 65px;
}

.footer-main > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-main > div:first-child p {
  max-width: 330px;
  color: #888;
  margin-top: 20px;
}

.footer-main small {
  color: #777;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.footer-main a:not(.brand) {
  color: #bbb;
  font-size: 0.83rem;
}

.footer .socials a {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  color: #777;
  font-size: 0.75rem;
}


/* =========================================================
   FLOATING BUTTONS
   ========================================================= */

.whatsapp,
.back-top {
  position: fixed;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color:var(---accent);
  display: grid;
  place-items: center;
  z-index: 900;
  font-weight: 800;
}

.whatsapp {
  bottom: 24px;
  background: #151515;
  color: #fff;
  font-size: 0.7rem;
}

.back-top {
  bottom: 82px;
  border: 1px solid #ccc;
  background: var(--bg);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
}

.back-top.show {
  opacity: 1;
  pointer-events: auto;
}


/* =========================================================
   REVEAL ANIMATION
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}


/* =========================================================
   TABLET - 992px
   ========================================================= */

@media (max-width: 992px) {

  .container {
    width: min(calc(100% - 40px), var(--max));
  }


  /* Navigation */

  .nav-menu {
    position: fixed;
    inset: 88px 0 0;
    background: var(--bg);
    padding: 45px 24px;
    flex-direction: column;
    align-items: flex-start;
    transform: translateX(100%);
    transition: 0.3s;
    overflow-y: auto;
  }

  .nav-menu.open {
    transform: none;
  }

  .nav-link {
    font: 700 2rem Manrope;
  }

  .menu-toggle {
    display: block;
  }


  /* Hero */

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-visual {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
  }

  .hero-image {
    width: 100%;
    height: min(70vw, 600px);
    min-height: 420px;
  }


  /* Floating card */

  .floating-card {
    left: 20px;
    bottom: 25px;
  }


  /* Services */

  .service-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }


  /* Projects */

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 24px;
  }

  .project-image,
  .project-card:nth-child(3n) .project-image {
    height: 400px;
  }


  /* Why */

  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }


  /* Footer */

  .footer-main {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-main > div:last-child {
    grid-column: 1 / -1;
  }


  /* Sections */

  .section {
    padding: 90px 0;
  }
}


/* =========================================================
   MOBILE - 700px
   ========================================================= */

@media (max-width: 700px) {

  .container {
    width: min(calc(100% - 32px), var(--max));
  }


  /* Header */

  .nav {
    height: 72px;
  }

  .nav-menu {
    inset: 72px 0 0;
  }

  .nav-cta {
    width: 100%;
    margin-top: 15px;
  }


  /* Logo */

  .brand img {
    width: 115px;
  }


  /* Hero */

  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero-grid {
    gap: 45px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-meta {
    gap: 22px;
    justify-content: space-between;
  }

  .hero-image {
    height: 115vw;
    min-height: 360px;
    max-height: 520px;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }


  /* Floating card */

  .floating-card {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    min-width: 0;
    padding: 18px 20px;
  }


  /* Intro */

  .intro-grid {
    grid-template-columns: 1fr;
  }


  /* Section heading */

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }


  /* Services / Process */

  .service-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 280px;
  }


  /* Projects */

  .project-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .project-image,
  .project-card:nth-child(3n) .project-image {
    width: 100%;
    height: 78vw;
    min-height: 300px;
    max-height: 480px;
  }

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

  .project-top {
    gap: 15px;
  }

  .project-card h3 {
    font-size: 1.2rem;
  }

  .project-card p {
    font-size: 0.84rem;
  }


  /* Why */

  .why-grid {
    gap: 45px;
  }


  /* Form */

  .field-row {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    gap: 55px;
  }


  /* Footer */

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 45px;
  }

  .footer-main > div:first-child,
  .footer-main > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    gap: 20px;
    flex-direction: column;
  }


  /* Sections */

  .section {
    padding: 75px 0;
  }
}


/* =========================================================
   SMALL MOBILE - 480px
   ========================================================= */

@media (max-width: 480px) {

  .container {
    width: calc(100% - 28px);
  }


  /* Logo */

  .brand img {
    width: 100px;
  }


  /* Hero */

  .hero {
    padding-top: 110px;
  }

  .hero-image {
    height: 105vw;
    min-height: 320px;
    max-height: 430px;
  }


  /* Project images */

  .project-image,
  .project-card:nth-child(3n) .project-image {
    height: 92vw;
    min-height: 280px;
    max-height: 400px;
  }


  /* Floating card */

  .floating-card {
    padding: 15px 17px;
  }

  .floating-card span,
  .floating-card small {
    font-size: 0.65rem;
  }

  .floating-card strong {
    font-size: 0.95rem;
  }


  /* Hero stats */

  .hero-meta {
    flex-wrap: wrap;
  }


  /* Services */

  .service-card {
    padding: 28px;
  }


  /* Footer */

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-main > div {
    grid-column: auto !important;
  }
}


/* =========================================================
   VERY SMALL MOBILE - 360px
   ========================================================= */

@media (max-width: 360px) {

  .container {
    width: calc(100% - 24px);
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-image {
    min-height: 290px;
  }

  .project-image,
  .project-card:nth-child(3n) .project-image {
    min-height: 250px;
  }

  .hero-meta {
    gap: 16px;
  }

  .whatsapp,
  .back-top {
    right: 14px;
  }
}


/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  .project-image img,
  .project-card,
  .btn,
  .reveal {
    transition: none !important;
  }
}


```css
/* =========================================================
   RESPONSIVE FIX PATCH
   IMPORTANT:
   Paste this code at the VERY END of your existing CSS.
   It does NOT change your desktop design/colors.
   ========================================================= */


/* =========================================================
   GLOBAL RESPONSIVE SAFETY
   ========================================================= */

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
svg,
video,
iframe {
  max-width: 100%;
}


/* =========================================================
   DESKTOP NAVBAR
   Existing desktop design remains unchanged
   ========================================================= */

@media (min-width: 993px) {

  .nav {
    width: 100%;
  }

  .nav-menu {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
  }

  .nav-link {
    white-space: nowrap;
  }

  .menu-toggle {
    display: none !important;
  }

}


/* =========================================================
   TABLET + MOBILE NAVBAR
   ========================================================= */

@media (max-width: 992px) {

  .nav {
    position: relative;
    width: 100%;
    height: 88px;
  }

  .brand {
    max-width: calc(100% - 60px);
    min-width: 0;
  }

  .brand span {
    min-width: 0;
  }

  .brand img {
    display: block;
    max-width: 100%;
    height: auto;
  }

  /* Hamburger */
  .menu-toggle {
    display: block;
    flex: 0 0 42px;
    position: relative;
    z-index: 1101;
    padding: 0;
  }

  .menu-toggle span {
    width: 30px;
    display: block;
  }

  /*
    IMPORTANT:
    JS should add/remove .open on .nav-menu.
    When closed, menu stays completely outside screen.
  */

  .nav-menu {
    position: fixed;

    top: 88px;
    right: 0;
    bottom: 0;
    left: 0;

    width: 100%;
    height: calc(100vh - 88px);

    margin: 0;

    background: var(--bg);

    padding: 45px 24px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 24px;

    overflow-x: hidden;
    overflow-y: auto;

    transform: translateX(100%);

    visibility: hidden;
    opacity: 0;
    pointer-events: none;

    transition:
      transform 0.3s ease,
      opacity 0.25s ease,
      visibility 0.3s ease;

    z-index: 1100;
  }

  .nav-menu.open {
    transform: translateX(0);

    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    display: block;
    width: 100%;

    font: 700 2rem Manrope;

    white-space: normal;
  }

  .nav-cta {
    width: 100%;
    margin-top: 15px;
  }

  .nav-cta .btn {
    width: 100%;
  }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (min-width: 701px) and (max-width: 992px) {

  .container {
    width: calc(100% - 40px);
    max-width: var(--max);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    width: 100%;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image {
    width: 100%;
  }

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .container {
    width: calc(100% - 32px);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  /* -----------------------------------------
     NAVBAR
     ----------------------------------------- */

  .nav {
    height: 72px;
  }

  .nav-menu {
    top: 72px;
    height: calc(100vh - 72px);

    padding-left: 16px;
    padding-right: 16px;
  }

  .brand {
    max-width: calc(100% - 55px);
  }

  .brand img {
    width: 115px;
    height: auto;
  }


  /* -----------------------------------------
     HERO
     ----------------------------------------- */

  .hero {
    width: 100%;
    min-width: 0;
  }

  .hero-grid {
    width: 100%;
    min-width: 0;
  }

  .hero h1 {
    max-width: 100%;
    overflow-wrap: break-word;
  }

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

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

  .hero-actions .btn {
    max-width: 100%;
  }

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

  .hero-visual {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

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

  .hero-image img {
    width: 100%;
    max-width: none;
  }


  /* -----------------------------------------
     FLOATING CARD
     ----------------------------------------- */

  .floating-card {
    left: 12px;
    right: 12px;

    width: auto;
    min-width: 0;
    max-width: calc(100% - 24px);

    overflow: hidden;
  }


  /* -----------------------------------------
     SECTION HEAD
     ----------------------------------------- */

  .section-head {
    width: 100%;
    min-width: 0;
  }

  .section-head h2,
  .intro-grid h2,
  .why h2,
  .contact-top h2 {
    max-width: 100%;
    overflow-wrap: break-word;
  }


  /* -----------------------------------------
     SERVICES
     ----------------------------------------- */

  .service-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .service-card {
    min-width: 0;
    width: 100%;
  }


  /* -----------------------------------------
     PROJECT FILTER
     ----------------------------------------- */

  .filters {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;

    flex-wrap: nowrap;

    padding-bottom: 5px;

    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .filters::-webkit-scrollbar {
    display: none;
  }

  .filter {
    flex: 0 0 auto;
    white-space: nowrap;
  }


  /* -----------------------------------------
     PROJECT GRID
     ----------------------------------------- */

  .project-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .project-card {
    width: 100%;
    min-width: 0;
  }

  .project-image,
  .project-card:nth-child(3n) .project-image {
    width: 100%;
    max-width: 100%;
  }

  .project-image img {
    width: 100%;
    max-width: none;
  }

  .project-top {
    width: 100%;
    min-width: 0;
  }

  .project-top > div {
    min-width: 0;
    max-width: 100%;
  }

  .project-card h3,
  .project-card p,
  .project-card small {
    overflow-wrap: anywhere;
    word-break: normal;
  }


  /* -----------------------------------------
     WHY
     ----------------------------------------- */

  .why-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .why-copy,
  .why-list {
    min-width: 0;
    width: 100%;
  }

  .why-list > div {
    min-width: 0;
  }


  /* -----------------------------------------
     PROCESS
     ----------------------------------------- */

  .process-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .process-grid > div {
    min-width: 0;
  }


  /* -----------------------------------------
     CONTACT
     ----------------------------------------- */

  .contact-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .contact-details,
  .contact-form {
    min-width: 0;
    width: 100%;
  }

  .field-row {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .field {
    width: 100%;
    min-width: 0;
  }

  .field input,
  .field select,
  .field textarea {
    max-width: 100%;
  }

  .submit-btn {
    max-width: 100%;
  }


  /* -----------------------------------------
     GOOGLE MAP
     ----------------------------------------- */

  .map-wrap {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .map-placeholder {
    width: 100%;
    max-width: 100%;
  }

  .map-placeholder iframe {
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
  }


  /* -----------------------------------------
     FOOTER
     ----------------------------------------- */

  .footer {
    width: 100%;
    overflow: hidden;
  }

  .footer-main {
    width: 100%;
    min-width: 0;
  }

  .footer-main > div {
    min-width: 0;
    max-width: 100%;
  }

  .footer-main a {
    overflow-wrap: anywhere;
  }

  .footer-bottom {
    width: 100%;
    min-width: 0;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

  .container {
    width: calc(100% - 28px);
  }

  .nav {
    height: 68px;
  }

  .nav-menu {
    top: 68px;
    height: calc(100vh - 68px);

    padding-left: 14px;
    padding-right: 14px;
  }

  .brand img {
    width: 100px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .menu-toggle span {
    width: 28px;
  }


  /* Hero */

  .hero {
    padding-left: 0;
    padding-right: 0;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 15vw, 4.3rem);
    max-width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero-meta {
    width: 100%;
    gap: 18px;
  }


  /* Floating card */

  .floating-card {
    left: 8px;
    right: 8px;
    bottom: 8px;

    max-width: calc(100% - 16px);

    padding: 15px 17px;
  }


  /* Project */

  .project-image,
  .project-card:nth-child(3n) .project-image {
    width: 100%;
    max-width: 100%;
  }


  /* Social icons */

  .socials {
    max-width: 100%;
  }


  /* Footer */

  .footer-main {
    grid-template-columns: 1fr;
  }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 360px) {

  .container {
    width: calc(100% - 24px);
  }

  .nav {
    height: 64px;
  }

  .nav-menu {
    top: 64px;
    height: calc(100vh - 64px);
  }

  .brand img {
    width: 92px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-meta {
    gap: 14px;
  }

  .hero-meta strong {
    font-size: 1.1rem;
  }

  .hero-meta span {
    font-size: 0.68rem;
  }

  .floating-card {
    left: 6px;
    right: 6px;
    max-width: calc(100% - 12px);
  }

  .whatsapp,
  .back-top {
    right: 10px;
  }

}


/* =========================================================
   MOBILE LANDSCAPE
   ========================================================= */

@media (max-width: 700px) and (orientation: landscape) {

  .nav-menu {
    overflow-y: auto;
  }

  .hero-image {
    min-height: 300px;
  }

}


/* =========================================================
   TOUCH DEVICES
   Don't alter your desktop hover design.
   ========================================================= */

@media (hover: none) and (pointer: coarse) {

  .btn:hover {
    transform: none;
  }

  .service-card:hover {
    transform: none;
  }

  .project-card:hover .project-image {
    transform: none;
  }

  .project-card:hover .project-image img {
    transform: none;
  }

}

