/* ============================================
   TILE TIME — STYLE.CSS
   Premium porcelain brand
   ============================================ */

/* CSS Variables */
:root {
  --primary-500: #4d00ff;
  --neutral-100: #fff;
  --neutral-500: #111;
  --spacing-padding: 6vw;
  --spacing-container: 4vw;
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* scroll-behavior handled by Lenis */
}

body {
  font-family: 'Momo Trust Sans', sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  overflow-x: hidden;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

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

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-md { font-size: 1rem; }
.text-lg { font-size: 1.25rem; }
.text-xl { font-size: 1.5rem; }

/* ============================================
   LAYOUT UTILITIES
   ============================================ */

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.section {
  padding: 120px 0;
  position: relative;
}

[data-start="hidden"] {
  visibility: hidden;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.navbar-logo img {
  height: 30px;
  width: auto;
}

.navbar-logo .logo-black { display: block; }
.navbar-logo .logo-white { display: none; }

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.navbar-item-text {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1a1a1a;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.navbar-item-text:hover {
  opacity: 1;
}

.navbar-hamburger {
  display: none;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.navbar-hamburger img {
  width: 100%;
  height: 100%;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 40px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.mobile-menu-close img {
  width: 100%;
}

.mobile-menu a {
  font-size: 2rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1a1a1a;
}

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

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 40px 40px;
  position: relative;
  overflow: hidden;
}

.wrapper-hero {
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  height: 115vh;
  width: 100%;
  max-width: 1400px;
  position: relative;
  overflow: visible;
}

/* Heading area — absolute, spread vertically */
.double-content-hero {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  height: 90%;
  position: absolute;
  inset: 0%;
}

/* Line 1: "We are " + "Derecha" — right-aligned */
.heading-hero {
  display: flex;
  gap: 1.5vw;
}

.heading-hero.one {
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}

.wrapper-logo-hero {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.5vw;
  overflow: hidden;
}

/* Line 2: "Designing" + "the future" — left-aligned */
.heading-hero.two {
  flex-direction: column;
  align-items: flex-start;
}

.inner-heading-hero {
  overflow: hidden;
}

.inner-heading-hero.bottom {
  flex: none;
  width: 100%;
  display: flex;
}

/* Heading typography */
.text-heading-hero {
  font-size: clamp(3rem, 8vw, 8vw);
  font-weight: 200;
  line-height: 1.05;
  letter-spacing: -0.65vw;
  color: #1a1a1a;
  margin: 0;
}

.text-heading-hero.one {
  font-style: italic;
}

.text-heading-hero.two {
  text-align: right;
}

.text-heading-hero.three {
  text-align: right;
}

.text-heading-hero.four {
  text-align: right;
  width: 110%;
  display: flex;
  align-items: center;
}

.text-heading-hero em,
.text-heading-hero i {
  font-style: italic;
  font-weight: 200;
}

/* Overlay + Carousel container */
.wrapper-filter-svg-overlay {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: absolute;
  inset: 0;
  transform: perspective(270px);
}

/* White wipe blocks */
.wrapper-upper-block {
  display: flex;
  width: 32vw;
  height: 32vw;
  position: absolute;
  z-index: 99;
  transform: rotate(90deg);
  overflow: hidden;
  background-color: transparent;
}

.block-hero {
  background-color: #fff;
  width: 50%;
  height: 100%;
}

.block-hero.one {
  border-right: 1px solid rgba(0,0,0,0.05);
}

.block-hero.two {
  border-left: 1px solid rgba(0,0,0,0.05);
}

/* Rotating Image Carousel */
.rotate {
  backface-visibility: hidden;
  perspective: 800px;
  border-radius: 100vw;
  justify-content: center;
  align-items: center;
  width: 27vw;
  height: 27vw;
  display: flex;
  position: relative;
}

.wrapper-anchor-side {
  width: 100%;
  height: 7vw;
  position: absolute;
}

.wrapper-anchor-side.top {
  justify-content: center;
  align-items: center;
  display: flex;
  inset: 0% 0% auto;
}

.wrapper-anchor-side.bot {
  justify-content: center;
  align-items: center;
  display: flex;
  inset: auto 0% 0%;
}

.wrapper-anchor-side.left {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 7vw;
  height: 100%;
  display: flex;
  inset: 0% auto 0% 0%;
}

.wrapper-anchor-side.right {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 7vw;
  height: 100%;
  display: flex;
  right: 0;
  top: 0;
  bottom: 0;
}

.wrapper-light-box {
  border-radius: 1vw;
  width: 8.4vw;
  height: 8.4vw;
  position: relative;
  overflow: hidden;
}

.wrapper-light-box.side-0 {
  z-index: 4;
  position: absolute;
  inset: 0% auto auto 0%;
  transform: translate(2vw, 2vw);
}

.wrapper-light-box.side-1 {
  position: absolute;
  inset: 0% 0% auto auto;
  transform: translate(-2vw, 2vw);
}

.wrapper-light-box.side-2 {
  z-index: 3;
  position: absolute;
  inset: auto auto 0% 0%;
  transform: translate(2vw, -2vw);
}

.wrapper-light-box.side-3 {
  z-index: 2;
  position: absolute;
  inset: auto 0% 0% auto;
  transform: translate(-2vw, -2vw);
}

.image-light-box {
  object-fit: cover;
  border-radius: 1vw;
  width: 100%;
  height: 100%;
}

/* Creative agency label */
.wrapper-tag-hero {
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}

.text-tagline-hero {
  font-size: 1.4vw;
  line-height: 2vw;
  font-weight: 500;
  color: #1a1a1a;
}

/* Bottom row: description + CTA */
.wrapp-in-button {
  z-index: 99;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  height: 10%;
  position: relative;
}

.wrapper-description-hero {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  width: 24vw;
}

.description-hero {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.7;
}

/* CTA Button (dark bg style) */
.inner-button {
  padding: 0.8vw 1vw;
  background-color: #4d00ff;
  color: #fff;
  border-radius: 1vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.3vw;
  text-decoration: none;
  transition: all 0.45s;
  cursor: pointer;
  position: relative;
}

.inner-button:hover {
  box-shadow: 0 0 19px 2px rgba(0, 0, 0, 0.26);
}

.text-button-v2 {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.wrapper-icon-hero {
  background-color: #fff;
  border-radius: 0.6vw;
  width: 3vw;
  height: 3vw;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.icon-hero {
  font-family: 'Material Icons';
  font-size: 18px;
  color: #1a1a1a;
}

/* Keep btn-primary for footer */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1a1a1a;
  transition: all 0.4s ease;
  background: transparent;
}

.btn-primary .material-icons {
  font-size: 18px;
}

.btn-primary:hover {
  background: #1a1a1a;
  color: #ffffff;
  opacity: 1;
}

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

.about-section {
  padding: 0;
}

.wrapper-about {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2vw;
  padding: var(--spacing-padding) var(--spacing-container);
  position: relative;
}

.about-label {
  font-size: 1.4vw;
  font-weight: 500;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 1.2vw;
}

.circle-dot {
  width: 1vw;
  height: 1vw;
  min-width: 8px;
  min-height: 8px;
  background-color: var(--primary-500);
  border-radius: 999px;
  display: inline-block;
}

.text-heading-about {
  font-size: clamp(4rem, 18vw, 24vw);
  font-weight: 200;
  line-height: 0.85;
  letter-spacing: -1.5vw;
  white-space: pre;
  color: #1a1a1a;
}

.about-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2vw;
}

.descriptions-about {
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.8;
  width: 30%;
}

.about-images {
  display: flex;
  align-items: flex-end;
  gap: 2vw;
}

.about-image {
  border-radius: 1vw;
  overflow: hidden;
  position: relative;
  transform: perspective(300px);
}

.about-image:nth-child(1) {
  width: 20vw;
  height: 25vw;
}

.about-image:nth-child(2) {
  width: 12vw;
  height: 14vw;
}

.about-image:nth-child(3) {
  width: 10vw;
  height: 10vw;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.black-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  pointer-events: none;
}

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

.service-section {
  padding: 0;
}

.service-wrapper {
  padding: var(--spacing-padding) var(--spacing-container);
}

.service-heading {
  font-size: clamp(2.5rem, 4vw, 4vw);
  font-weight: 200;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.service-subtitle {
  font-size: clamp(0.9rem, 1.1vw, 1.1vw);
  font-weight: 300;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
  max-width: 40vw;
  margin-bottom: 4vw;
}

.service-label {
  font-size: 1.4vw;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 3vw;
  display: flex;
  align-items: center;
  gap: 1.2vw;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-item {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 3vw 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.service-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.service-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.service-number {
  font-size: clamp(0.8rem, 1.3vw, 1.3vw);
  font-weight: 400;
  color: rgba(0, 0, 0, 0.4);
  width: 3vw;
}

.service-title {
  font-size: clamp(1.5rem, 2vw, 2vw);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

.service-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.service-tags {
  display: flex;
  gap: 10px;
}

.service-tag {
  padding: 0.7vw 1.4vw;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.6vw;
  font-size: clamp(0.7rem, 1.25vw, 1.25vw);
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-arrow {
  width: 24px;
  height: 24px;
  opacity: 0.4;
  transform: rotate(90deg);
  transition: transform 0.4s ease;
}

.service-item.active .service-arrow {
  transform: rotate(-90deg);
}

.service-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item.active .service-body {
  max-height: 300px;
}

.service-body-inner {
  padding: 30px 0 10px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.service-description {
  font-size: clamp(0.9rem, 1.1vw, 1.1vw);
  font-weight: 300;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.6;
  max-width: 450px;
}

.service-image {
  border-radius: 12px;
  overflow: hidden;
  max-width: 350px;
}

.service-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* ============================================
   PROJECTS SECTION
   ============================================ */

.project-section {
  padding: 0;
}

.project-wrapper {
  padding: var(--spacing-padding) var(--spacing-container);
}

.project-heading {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 200;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.project-label {
  font-size: 1.4vw;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 3vw;
  display: flex;
  align-items: center;
  gap: 1.2vw;
}

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

.project-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.project-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

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

.project-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.project-tag {
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
}

.project-name {
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: #ffffff;
}

.project-desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  line-height: 1.6;
}

.project-link {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.project-link::after {
  content: '\2192';
  transition: transform 0.3s ease;
}

.project-card:hover .project-link::after {
  transform: translateX(5px);
}

.project-overlay a:hover {
  opacity: 1;
}

/* ============================================
   TEAM SECTION
   ============================================ */

.team-section {
  padding: 0;
}

.team-wrapper {
  padding: var(--spacing-padding) var(--spacing-container);
}

.team-label {
  font-size: 1.4vw;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 1.2vw;
}

.team-intro {
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 4vw;
}

.team-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70vh;
  position: relative;
  perspective: 1000px;
}

.team-card {
  position: absolute;
  width: 17vw;
  height: 22vw;
  border-radius: 1vw;
  overflow: visible;
  cursor: pointer;
  transition: transform 0.6s ease;
}

.team-card:nth-child(1) { z-index: 1; transform-origin: 0 100%; transform: rotate(-8deg) translate(-25vw) perspective(300px); }
.team-card:nth-child(2) { z-index: 2; transform-origin: 0 100%; transform: rotate(-4deg) translate(-13vw) perspective(300px); }
.team-card:nth-child(3) { z-index: 3; transform: translateY(-0.5vw) perspective(300px); }
.team-card:nth-child(4) { z-index: 4; transform-origin: 100% 100%; transform: rotate(4deg) translate(13vw) perspective(300px); }
.team-card:nth-child(5) { z-index: 5; transform-origin: 100% 100%; transform: rotate(8deg) translate(25vw) perspective(300px); }

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1vw;
  display: block;
  position: absolute;
  inset: 0;
}

.team-card:hover img {
  transform: scale(1.03);
}

.team-info {
  position: relative;
  margin-top: -9vw;
  padding: 0.7vw 1.5vw;
  background: none;
  border: 1px solid #bababa;
  border-radius: 0.6vw;
  text-align: center;
  width: 100%;
  z-index: 2;
  top: 100%;
}

.team-name {
  font-size: 1.5vw;
  font-weight: 500;
  margin-bottom: 2px;
  color: #1a1a1a;
  line-height: 2vw;
}

.team-role {
  font-size: 1.2vw;
  font-weight: 300;
  color: #1a1a1a;
  line-height: 1.8vw;
}

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

.footer {
  background-color: var(--neutral-500);
  color: #fff;
  padding: var(--spacing-padding) var(--spacing-container) 3vw;
  border-top: none;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}

.footer-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: 100%;
}

.footer-cta {
  text-align: center;
  margin-bottom: 6vw;
}

.footer-cta-text {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 200;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: #fff;
}

.footer-cta-desc {
  font-size: clamp(0.9rem, 1.1vw, 1.1vw);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 30px;
}

.footer-cta .btn-primary {
  margin-top: 10px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.footer-cta .btn-primary:hover {
  background: #fff;
  color: var(--neutral-500);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-top: 4vw;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-col-title {
  font-size: clamp(0.7rem, 1vw, 1vw);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: clamp(0.85rem, 1.1vw, 1.1vw);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
  color: #fff;
  opacity: 1;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #fff;
  opacity: 1;
}

.footer-social a:hover img {
  filter: invert(1);
}

.footer-social img {
  width: 16px;
  height: 16px;
  filter: invert(0);
}

.footer-bottom {
  margin-top: 4vw;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom-text {
  font-size: clamp(0.7rem, 1vw, 1vw);
  color: rgba(255, 255, 255, 0.35);
  font-weight: 300;
}

.footer-logo img {
  height: 24px;
}

/* ============================================
   WIDE SCREENS (1920px+)
   ============================================ */

@media (min-width: 1600px) {
  .container {
    max-width: 1500px;
    padding: 0 60px;
  }

  .hero {
    padding: 100px 60px 40px;
  }

  .navbar {
    padding: 24px 60px;
  }

  .project-image {
    height: 520px;
  }
}

/* ============================================
   SVG FILTER (hidden)
   ============================================ */

.svg-filters {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */

@media (max-width: 991px) {
  .navbar-menu {
    display: none;
  }

  .navbar-hamburger {
    display: block;
  }

  .container {
    padding: 0 30px;
  }

  .hero {
    padding: 100px 30px 40px;
  }

  .wrapper-hero {
    height: 42rem;
  }

  .double-content-hero {
    height: 88%;
    position: relative;
    height: 40rem;
  }

  .heading-hero.one,
  .heading-hero.two {
    justify-content: center;
    align-items: center;
  }

  .text-heading-hero {
    font-size: clamp(2.5rem, 7vw, 5rem);
  }

  .rotate {
    width: 10rem;
    height: 10rem;
  }

  .wrapper-light-box {
    width: 3.5rem;
    height: 3.5rem;
  }

  .wrapper-anchor-side {
    height: 3.5rem;
  }

  .wrapper-anchor-side.left,
  .wrapper-anchor-side.right {
    width: 3.5rem;
  }

  .wrapp-in-button {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    height: auto;
  }

  .wrapper-description-hero {
    width: auto;
    text-align: center;
  }

  .wrapper-tag-hero {
    justify-content: center;
  }

  .text-tagline-hero {
    font-size: 2.2vw;
    line-height: 2.4vw;
  }

  .wrapper-filter-svg-overlay {
    height: 38rem;
  }

  .wrapper-upper-block {
    width: 14rem;
    height: 14rem;
  }

  .inner-button {
    gap: 1rem;
    border-radius: 0.5rem;
    padding: 0.7rem 1rem;
  }

  .wrapper-icon-hero {
    border-radius: 0.4rem;
    width: 2.3rem;
    height: 2.3rem;
  }

  .heading-hero.one,
  .heading-hero.two {
    gap: 0.5rem;
  }

  .description-hero {
    text-align: center;
  }

  .about-section {
    padding: 0;
  }

  .wrapper-about {
    min-height: auto;
    padding: 80px 30px;
  }

  .text-heading-about {
    white-space: normal !important;
    font-size: clamp(2rem, 10vw, 6rem);
    letter-spacing: -0.5vw;
  }

  .descriptions-about {
    width: 55%;
    font-size: 1rem;
  }

  .about-content {
    flex-direction: column;
    gap: 3rem;
  }

  .about-images {
    justify-content: center;
  }

  .about-image:nth-child(1) {
    width: 28vw;
    height: 34vw;
  }

  .about-image:nth-child(2) {
    width: 18vw;
    height: 20vw;
  }

  .about-image:nth-child(3) {
    width: 14vw;
    height: 14vw;
  }

  .about-image {
    border-radius: 0.6rem;
  }

  .service-heading {
    font-size: clamp(2rem, 5vw, 3.5rem);
  }

  .service-subtitle {
    font-size: 1rem;
  }

  .service-body-inner {
    grid-template-columns: 1fr;
    padding-left: 30px;
  }

  .service-item.active .service-body {
    max-height: 400px;
  }

  .project-heading {
    font-size: clamp(2rem, 5vw, 3.5rem);
  }

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

  .project-image {
    height: 350px;
  }

  .team-grid {
    height: 19rem;
  }

  .team-card {
    width: 20vw;
    height: 26vw;
  }

  .team-card img {
    border-radius: 0.5rem;
  }

  .team-info {
    border-radius: 0.4rem;
  }

  .footer {
    min-height: auto;
    padding: 60px 30px 30px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-cta-desc {
    font-size: 1rem;
  }

  .footer-col-title {
    font-size: 0.75rem;
  }

  .footer-links a {
    font-size: 0.9rem;
  }

  .footer-bottom-text {
    font-size: 0.75rem;
  }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */

@media (max-width: 767px) {
  .section {
    padding: 80px 0;
  }

  .navbar {
    padding: 16px 20px;
  }

  .hero {
    padding: 80px 20px 30px;
  }

  .wrapper-hero {
    height: 55rem;
    padding-top: 2rem;
  }

  .double-content-hero {
    height: 40rem;
  }

  .text-heading-hero {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }

  .text-heading-about {
    white-space: normal !important;
  }

  .rotate {
    width: 13.6rem;
    height: 13.6rem;
  }

  .wrapper-light-box {
    width: 4.5rem;
    height: 4.5rem;
  }

  .wrapper-anchor-side {
    height: 4.5rem;
  }

  .wrapper-anchor-side.left,
  .wrapper-anchor-side.right {
    width: 4.5rem;
  }

  .wrapper-upper-block {
    width: 18.5rem;
    height: 18.5rem;
  }

  .text-tagline-hero {
    font-size: 1rem;
    line-height: 1.3rem;
  }

  .wrapper-filter-svg-overlay {
    height: 40rem;
  }

  .description-hero {
    text-align: center;
  }

  .heading-hero.one,
  .heading-hero.two {
    gap: 0.5rem;
  }

  .inner-button {
    padding: 0.7rem 1rem;
    border-radius: 0.5rem;
    gap: 1rem;
  }

  .wrapper-icon-hero {
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 0.4rem;
  }

  .wrapper-description-hero {
    width: auto;
  }

  .wrapp-in-button {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .about-section,
  .service-section,
  .project-section,
  .team-section {
    padding: 0;
  }

  .wrapper-about {
    min-height: auto;
    padding: 60px 20px;
  }

  .descriptions-about {
    width: 100%;
    text-align: center;
  }

  .text-heading-about {
    text-align: center;
    font-size: clamp(3rem, 15vw, 8rem);
    letter-spacing: -0.3vw;
  }

  .about-images {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .about-image:nth-child(1) {
    width: 45%;
    height: 50vw;
  }

  .about-image:nth-child(2) {
    width: 40%;
    height: 40vw;
  }

  .about-image:nth-child(3) {
    width: 35%;
    height: 35vw;
  }

  .service-wrapper,
  .project-wrapper,
  .team-wrapper {
    padding: 60px 20px;
  }

  .service-heading {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    margin-bottom: 16px;
  }

  .service-subtitle {
    font-size: 0.9375rem;
    margin-bottom: 40px;
  }

  .service-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .service-right {
    width: 100%;
    justify-content: space-between;
  }

  .service-tags {
    flex-wrap: wrap;
  }

  .service-item.active .service-body {
    max-height: 500px;
  }

  .service-body-inner {
    padding-left: 0;
  }

  .project-heading {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

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

  .project-image {
    height: 300px;
  }

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

  .team-intro {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .team-grid {
    height: auto;
    flex-wrap: wrap;
    gap: 1.5rem;
    perspective: none;
  }

  .team-card {
    position: relative;
    width: 44%;
    height: auto;
    transform: none !important;
  }

  .team-card img {
    position: relative;
    height: 280px;
    border-radius: 0.5rem;
  }

  .team-info {
    margin-top: -5.5rem;
    padding: 0.4rem 0.8rem;
    border-radius: 0.4rem;
  }

  .team-name {
    font-size: 1rem;
    line-height: 1.4;
  }

  .team-role {
    font-size: 0.8rem;
    line-height: 1.2;
  }

  .footer {
    min-height: auto;
    padding: 60px 20px 30px;
  }

  .footer-cta-text {
    font-size: clamp(1.75rem, 8vw, 3rem);
  }

  .footer-cta-desc {
    font-size: 0.9375rem;
    margin-bottom: 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-col-title {
    font-size: 0.75rem;
  }

  .footer-links a {
    font-size: 0.9rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-bottom-text {
    font-size: 0.75rem;
  }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE
   ============================================ */

@media (max-width: 479px) {
  .text-heading-hero {
    font-size: 2rem;
  }

  .text-heading-about {
    font-size: 1.75rem;
  }

  .wrapper-hero {
    height: 45rem;
  }

  .rotate {
    width: 10rem;
    height: 10rem;
  }

  .wrapper-light-box {
    width: 3rem;
    height: 3rem;
  }

  .team-intro {
    font-size: 0.9375rem;
    margin-bottom: 30px;
  }

  .team-card {
    width: 100%;
  }

  .team-card img {
    height: 350px;
  }

  .footer-cta-text {
    font-size: 1.75rem;
  }

  .footer-cta-desc {
    font-size: 0.875rem;
  }

  .service-title {
    font-size: 1.25rem;
  }

  .service-heading {
    font-size: 1.75rem;
  }

  .service-subtitle {
    font-size: 0.875rem;
    margin-bottom: 30px;
  }

  .project-heading {
    font-size: 1.75rem;
  }

  .descriptions-about {
    font-size: 1rem;
  }

  .about-label,
  .team-label,
  .project-label,
  .service-label {
    font-size: 0.85rem;
    margin-bottom: 20px;
    gap: 0.5rem;
  }

  .hero {
    padding: 80px 16px 20px;
  }

  .navbar {
    padding: 14px 16px;
  }

  .mobile-menu-close {
    right: 16px;
  }

  .btn-primary {
    padding: 12px 24px;
    font-size: 0.8125rem;
  }
}
