
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    text-align: start;
    max-width: 480px;
    margin: 0 auto;
    margin-top: 80px; 
    padding: 0 2px;
}

.hero-content h1 {
    font-size: 86px;       
    font-weight: 600;       
    line-height: 0.98;      
    color: #0b0b0b;         
    margin: 0 0 2px 0;
}

.hero-content p {
    font-size: 18px;
    font-weight: 600;
    color: rgba(0,0,0,0.85);  
    line-height: 1.55;
    margin-top: 10px;
    margin-bottom: 35px;
}

.cta-btn {
    background: #0E273C;         
    color: #fff;
    padding: 18px 36px;
    font-size: 22px;
    font-weight: 500;
    border-radius: 50px;        
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s ease;
}

.cta-icon-img {
    width: 38px;
    height: 38px;
    padding: 6px;
    background: #fff;
    border-radius: 50%;
    object-fit: contain;
    display: flex;
}

@media(max-width: 768px) {
    .hero-content {
        margin-top: 0;
    }
    .hero-content h1 {
        font-size: 42px;
        line-height: 1.15;
    }
    .hero-content p {
        font-size: 16px;
    }
    .cta-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
    .cta-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    .left-scroll-track,
    .scroll-track {
        display: none !important;
    }
}

.left-scroll-track {
  position: absolute;
  left: 95px;
  top: 22%;
  height: 64%;
  width: 48px;
  pointer-events: none;
  z-index: 40;
}

.left-scroll-track .scroll-indicator {
  position: relative;
  width: 100%;
  height: 100%;
  pointer-events: auto;
}

.left-scroll-track .scroll-text {
  position: absolute;
  left: 50%;
  top: 0;                    
  transform: translateX(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #000;

  pointer-events: none;
  user-select: none;
  z-index: 45;
}

.left-scroll-track .scroll-arrow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 140px;                
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: grab;
  pointer-events: auto;
  user-select: none;
  z-index: 44;
  background: transparent;
}

.left-scroll-track .scroll-arrow img {
  display: block;
  pointer-events: none;
}

.scroll-track {
  position: absolute;
  right: 95px;
  top: 13%;
  height: 50%;
  width: 3.5px;
  background: rgba(201, 195, 195, 0.788);
}
.scroll-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: black;
  border: 4px solid white;
  border-radius: 50%;
  cursor: grab;
  user-select: none;
}

@media(max-width: 768px) {
    .hero-content h1 {
        font-size: 40px;
    }
    .hero-content p {
        font-size: 15px;
    }
    .scroll-indicator {
        left: 20px;
    }
    .scroll-track {
        right: 20px;
    }
}
:root {
  --partners-bg: rgba(223, 227, 230, 1);
  --partners-gutter: 88px;
  --partners-max: 800px;
  --partners-title-size: 20px;
  --partners-title-weight: 600;
  --partners-italic-weight: 400;
  --partners-gap: 48px;
  --partners-logo-height: 66px;
  --partners-logo-width: 66px;
  --partners-row-height: 110px;
}

.partners {
  background: var(--partners-bg);
  width: 100%;
  display: block;
}

.partners-outer {
  max-width: 100%;
  padding-left: var(--partners-gutter);
  padding-right: var(--partners-gutter);
  box-sizing: border-box;
}

.partners-inner {
  max-width: var(--partners-max);
  margin: 0 auto;
  padding-top: 84px;
  padding-bottom: 34px;
  box-sizing: border-box;
}

.partners-title {
  margin: 0 0 22px 0;
  font-size: 30px;
  font-weight: var(--partners-title-weight);
  color: rgba(0, 0, 0, 1);
  text-align: center;
  letter-spacing: 0.4px;
  line-height: 1.2;
}

.partners-title-italic {
  font-style: italic;
  font-size: 30px;
  font-weight: var(--partners-italic-weight);
  color: rgba(0, 0, 0, 1);
  margin: 0 6px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: var(--partners-gap);
  align-items: center;
  justify-items: center;
  width: 100%;
  box-sizing: border-box;
}

.partner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--partners-row-height);
  width: 100%;
  box-sizing: border-box;
  padding: 8px 12px;
}

.partner img {
  max-height: var(--partners-logo-height);
  width: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 1100px) {
  :root {
    --partners-gutter: 64px;
    --partners-gap: 36px;
    --partners-logo-height: 52px;
    --partners-row-height: 96px;
    --partners-title-size: 18px;
  }

  .partners-inner {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --partners-gutter: 32px;
    --partners-gap: 28px;
    --partners-logo-height: 48px;
    --partners-row-height: 84px;
    --partners-title-size: 17px;
  }

  .partners-outer {
    padding-left: var(--partners-gutter);
    padding-right: var(--partners-gutter);
  }

  .partners-inner {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .partners-title {
    text-align: center;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 28px;
    row-gap: 18px;
    justify-items: center;
  }

  .partner {
    padding-left: 4px;
    padding-right: 4px;
  }
}

@media (max-width: 420px) {
  :root {
    --partners-gutter: 20px;
    --partners-logo-height: 48px;
    --partners-row-height: 72px;
    --partners-title-size: 15px;
  }

  .partners-inner {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .partners-title {
    font-size: var(--partners-title-size);
    text-align: center;
  }

  .partners-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .partner {
    height: var(--partners-row-height);
    justify-content: center;
  }

  .partner img {
    max-height: 48px;
  }
}

:root {
  --max-w: 1300px;
  --gutter: 88px;
  --accent: #213744;
  --bg: rgb(223, 227, 230);
}

.about-hero {
  background: var(--bg);
  padding: 48px 0 80px;
  position: relative;
  overflow: visible;
}

.about-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  box-sizing: border-box;
  position: relative;
}

.heading-block {
  position: relative;
  padding-bottom: 36px;
}

.eyebrow {
  font-size: 22px;
  color: rgba(0, 0, 0, 1);
  margin-bottom: 60px;
  font-weight: 600;
}

.serif-line {
  font-style: italic;
  font-weight: 400;
  font-size: 120px;
  line-height: 0.98;
  margin: 0;
  color: rgba(38, 35, 38, 1);
  letter-spacing: 0%;
  z-index: 1;
  margin-bottom: 12px;
}

.main-head {
  font-weight: 800;
  font-size: 125px;
  line-height: 0.92;
  margin: 6px 0 0 0;
  color: rgba(38, 35, 38, 1);
  letter-spacing: 0%;
  z-index: 1;
}

.art-card {
  position: absolute;
  left: calc((100% - var(--max-w))/1 + 130px);
  background: rgba(255, 255, 255, 0.466);
  backdrop-filter: blur(3px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 18px 40px rgba(11, 18, 26, 0.12);
  z-index: 5;
  top: 176px;
  border-radius: 20px;
  width: 298px;
  height: 460px;
  overflow: hidden;
  z-index: 2;
  display: block;
}

.art-card img {
  position: relative;
  width: 320px;
  height: auto;
  top: -40px;
  left: -20px;
}

.about-content {
  max-width: 690px;
  margin-left: auto;
  margin-top: 16px;
}

.kicker {
  font-size: 22px;
  color: rgba(0, 0, 0, 1);
  font-weight: 600;
  letter-spacing: 0.8px;
  margin-bottom: 2px;
}

.about-desc {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(0, 0, 0, 1);
  margin-bottom: 15px;
  font-weight: 500;

}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 7px 15px;
  background: #213744;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(33, 55, 68, 0.15);
  transition: all 0.3s ease;
}

.cta-arrow {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: inline-block;
  transition: transform 0.3s ease;
}

@media (max-width:1100px) {
  .serif-line {
    font-size: 64px;
    text-align: center;
  }

  .main-head {
    font-size: 96px;
  }

  .art-card {
    left: calc((100% - var(--max-w))/2 + 64px);
    width: 160px;
    height: 280px;
  }

  .art-card img {
    width: 280px;
    top: -30px;
    left: -24px;
  }
}

@media (max-width:860px) {
  .about-wrap {
    padding: 0 36px;
    text-align: center;
  }

  .serif-line {
    font-size: 40px;
  }

  .main-head {
    font-size: 36px;
  }

  .art-card {
    position: relative;
    left: 0;
    top: 0;
    margin: 8px auto 18px;
    width: 220px;
    height: 320px;
  }

  .art-card img {
    width: 100%;
    top: 0;
    left: 0;
  }

  .about-content {
    margin-left: 0;
    max-width: 100%;
  }
}

@media (max-width:420px) {
  .about-wrap {
    padding: 0 16px;
  }

  .serif-line {
    font-size: 28px;
  }

  .main-head {
    font-size: 28px;
  }

  .art-card {
    width: 160px;
    height: 220px;
  }

  .art-card img {
    width: 220px;
    top: 0;
    left: 0;
  }

  .about-desc {
    font-size: 13px;
  }
}

/* services 3-column layout */
:root {
  --max-w: 1200px;
  --gutter: 28px;
  --accent: #213744;
}

/* container & base */
.services-section {
  background: rgba(223, 227, 230, 1);
  padding: 56px 0;
}

.services-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  box-sizing: border-box;
}

.services-grid {
  display: grid;
  grid-template-columns: 280px 1fr 370px;
  gap: 32px;
  align-items: start;
}

.services-label {
  font-size: 22px;
  font-weight: 600;
  color: #111;
  margin: 8px 0 0 0;
}

.services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: transparent;
  color: rgba(0, 0, 0, 1);
}

.service-item {
  display: grid;
  grid-template-columns: 56px 1fr 44px;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  cursor: pointer;
}

.service-item:first-child {
  border-top: none;
}

.num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #111;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.title {
  font-size: 15px;
  font-weight: 600;
  color: rgba(0, 0, 0, 1);
}

.arrow {
  justify-self: end;
  color: rgba(0, 0, 0, 0.25);
  font-size: 18px;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.3s ease;
}

.service-item:hover .arrow,
.service-item.active .arrow {
  opacity: 1;
  transform: translateX(4px);
  color: var(--accent);
}

.service-item.active .num {
  background: var(--accent);
}

.service-item.active .title {
  color: var(--accent);
}

.service-item.active .arrow {
  color: var(--accent);
}

.services-cta-wrap {
  margin-top: 26px;
  display: flex;
  justify-content: flex-start;
}

.services-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 26px rgba(33, 55, 68, 0.12);
  transition: all 0.3s ease;
}

.services-cta img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.services-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(33, 55, 68, 0.25);
}

.services-preview-col {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.preview-card {
  width: 330px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  min-height: 260px;
}

.preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.preview-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(6, 12, 18, 0.8) 100%);
  color: #fff;
}

.preview-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}

.preview-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.95;
}

.service-item .title {
  position: relative;
  display: inline-block;
  padding-bottom: 1px;
  transition: color 0.25s ease;
}

.service-item .title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 30%;
  width: 194px;
  height: 1px;
  background: var(--accent);
  border-radius: 2px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.service-item:hover .title,
.service-item:focus-within .title {
  color: var(--accent);
}

.service-item:hover .title::after,
.service-item:focus-within .title::after {
  transform: translateX(-50%) scaleX(1);
}

.service-item:hover {
  transition: background 0.3s ease;
}


@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 200px 1fr 300px;
    gap: 24px;
  }

  .services-label {
    font-size: 16px;
  }

  .preview-card {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-preview-col {
    order: -1;
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
  }

  .preview-card {
    width: 100%;
    max-width: 420px;
  }

  .services-cta-wrap {
    justify-content: center;
  }

  .services-label {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .services-inner {
    padding: 0 18px;
  }

  .service-item {
    grid-template-columns: 36px 1fr 24px;
  }

  .num {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }

  .title {
    font-size: 14px;
  }

  .services-label {
    font-size: 15px;
  }

  .preview-title {
    font-size: 16px;
  }

  .preview-desc {
    font-size: 14px;
  }

  .services-cta {
    font-size: 14px;
    padding: 6px 18px;
  }
}

@media (max-width: 420px) {
  .services-inner {
    padding: 0 12px;
  }

  .services-grid {
    gap: 16px;
  }

  .preview-card {
    max-width: 100%;
  }

  .preview-title {
    font-size: 15px;
  }

  .preview-desc {
    font-size: 13px;
  }

  .title::after {
    width: 120px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,600&family=Poppins:wght@400;600;700;800&display=swap');

:root {
  --container-w: 1200px;
  --gutter: 28px;
  --text: #111;
  --accent: #213744;
}

.projects-section {
  background: rgba(223, 227, 230, 1);
  padding: 56px 0 80px;
}

.projects-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  box-sizing: border-box;
}

.projects-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  margin-bottom: -1px;
}

.projects-eyebrow {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 80px;
  color: rgba(0, 0, 0, 0.7);
  align-self: center;
  text-align: center;
}

.projects-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 110px;
  letter-spacing: 1px;
  color: rgba(38, 35, 38, 1);
  margin: 0;
  text-align: left;
  position: relative;
  top: 30px;
}

.projects-lead {
  margin-top: -30px;
  margin-bottom: 28px;
  color: rgba(0, 0, 0, 1);
  max-width: 510px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}


.projects-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 20px;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .projects-header {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 8px;
    margin-bottom: 8px;
    padding: 0 20px;
  }

  .projects-eyebrow {
    font-size: clamp(22px, 5.2vw, 44px);
    text-align: left;
    align-self: start;
    margin: 0;
    line-height: 0.95;
  }

  .projects-title {
    font-size: clamp(32px, 7.5vw, 72px);
    text-align: left;
    margin: 0;
    top: 0;
    position: static;
    line-height: 1.02;
  }

  .projects-lead {
    margin-top: 6px;
    margin-bottom: 18px;
    text-align: left;
    max-width: 100%;
    font-size: clamp(13px, 2.4vw, 16px);
    padding-right: 20%;
  }
}

@media (max-width: 480px) {
  .projects-header {
    padding-left: 16px;
    padding-right: 16px;
    gap: 6px;
  }

  .projects-eyebrow {
    font-size: clamp(18px, 6.5vw, 36px);
    text-align: center;
    margin-bottom: 4px;
  }

  .projects-title {
    font-size: clamp(26px, 8.5vw, 44px);
    text-align: center;
    margin: 0;
  }

  .projects-lead {
    margin-top: 8px;
    margin-bottom: 18px;
    text-align: center;
    padding-right: 0;
    max-width: 92%;
    margin-left: auto;
    margin-right: auto;
  }
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  align-items: stretch;
}

.proj-card {
  position: relative;
  display: block;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(11, 18, 26, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proj-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.proj-card:hover img,
.proj-card:focus img {
  transform: scale(1.05);
  filter: brightness(1.03) contrast(1.02);
}

.proj-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(11, 18, 26, 0.12);
}

.proj-top-tags {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
  pointer-events: none;
  transform: translateY(-6px);
  opacity: 0;
  transition: opacity .28s ease, transform .28s ease;
  z-index: 4;
}

.proj-top-tags .tag {
  background: #fff;
  color: #111;
  padding: 6px 14px;
  border-radius: 22px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(6, 12, 18, 0.06);
  white-space: nowrap;
}

.proj-caption {
  position: absolute;
  left: 18px;
  bottom: 8px;
  background: #fff;
  color: #111;
  padding: 6px 22px;
  border-radius: 26px;
  font-weight: 600;
  font-size: 12px;
  box-shadow: 0 12px 28px rgba(6, 12, 18, 0.06);
  transform: translateY(6px);
  opacity: 0;
  transition: opacity .28s ease, transform .28s ease;
  pointer-events: none;
  z-index: 4;
}

.proj-card:hover .proj-top-tags,
.proj-card:focus .proj-top-tags,
.proj-card.hovering .proj-top-tags {
  opacity: 1;
  transform: translateY(0);
}

.proj-card:hover .proj-caption,
.proj-card:focus .proj-caption,
.proj-card.hovering .proj-caption {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .projects-title {
    font-size: 56px;
    top: 16px;
  }

  .projects-eyebrow {
    font-size: 48px;
  }

  .proj-card img {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .proj-card img {
    height: 240px;
  }

  .projects-title {
    font-size: 42px;
    top: 8px;
  }

  .projects-eyebrow {
    font-size: 20px;
  }

  .projects-lead {
    font-size: 13px;
    margin-top: -6px;
  }

  .proj-caption {
    left: 14px;
    bottom: 14px;
    padding: 8px 14px;
  }

  .proj-top-tags {
    top: 14px;
    right: 14px;
    gap: 8px;
  }
}

@media (max-width: 420px) {
  .proj-card img {
    height: 200px;
  }

  .projects-title {
    font-size: 34px;
  }
}

.xcontact-section {
  background: #000;
  padding: 60px 0 90px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.xcontact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.xcontact-header {
  text-align: center;
  margin-bottom: 30px;
}

.xcontact-title {
  line-height: 1.0;
  margin: 0;
}

.xcontact-line-big {
  font-size: 78px;
  font-weight: 500;
  text-transform: uppercase;
}

.xcontact-line-italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 88px;
  color: #fff;
  ;
}

.xcontact-accent {
  color: #cfe9ff;
}

.xcontact-form {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.xcontact-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.xcontact-form input,
.xcontact-message {
  width: 100%;
  background: #131416;
  color: #fff;
  padding: 16px 14px;
  border-radius: 14px;
  border: none;
  outline: none;
  font-size: 14px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.xcontact-form input::placeholder,
.xcontact-message::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.xcontact-actions {
  text-align: end;
  margin-top: 10px;
}

.xcontact-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #213744;
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 8px 20px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(33, 55, 68, 0.3);
  transition: 0.25s ease;
}

.xcontact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 34px rgba(33, 55, 68, 0.4);
}

.xcontact-btn-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.xcontact-btn-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .xcontact-line-big {
    font-size: 32px;
  }

  .xcontact-line-italic {
    font-size: 34px;
  }

  .xcontact-row2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 120px 18px;
    transform: translateY(36px);
  }

  .hero-inner {
    max-width: 560px;
  }

  .hero-title {
    font-size: 44px;
    margin-top: 20px;
  }

  .hero-desc {
    max-width: 360px;
    font-size: 14px;
    margin-bottom: 36px;
  }
}

@media (max-width: 420px) {
  .logo img {
    height: 48px;
  }

  .hero-content {
    padding: 100px 14px;
    transform: translateY(18px);
  }

  .hero-title {
    font-size: 34px;
    line-height: 1.02;
  }

  .hero-desc {
    font-size: 13px;
  }
}

@media (max-width: 880px) {

  html,
  body {
    overflow-x: hidden;
  }

  .left-scroll {
    left: 10px !important;
    transform: none !important;
  }

  .right-dot {
    right: 10px !important;
    transform: none !important;
  }

  .right-dot .line {
    height: 120px !important;
  }

  .right-dot .dot {
    margin-top: 0 !important;
  }

  .header-inner {
    padding-left: 12px !important;
    padding-right: 12px !important;
    max-width: 100% !important;
  }

  .site-nav {
    width: 320px !important;
    right: 0 !important;
  }

  .art-card,
  .partners-outer,
  .partners-inner,
  .wt-footer__inner,
  .about-wrap,
  .services-inner,
  .projects-inner {
    max-width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    box-sizing: border-box !important;
  }

  img,
  video,
  iframe,
  svg {
    max-width: 100%;
    height: auto;
    display: block;
  }

  .art-card {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    margin: 8px auto 18px !important;
    width: min(86%, 360px) !important;
    height: auto !important;
    transform: none !important;
    overflow: hidden !important;
  }

  .art-card img {
    width: 100% !important;
    height: auto !important;
    left: 0;
    top: 0;
  }

  .hero-content {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .partners-outer,
  .about-wrap,
  .services-inner,
  .projects-inner,
  .wt-footer__inner {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

@media (max-width: 480px) {

  .hero-title,
  .projects-title,
  .projects-eyebrow,
  .main-head,
  .serif-line,
  .xcontact-line-italic {
    font-size: clamp(16px, 6.5vw, 34px) !important;
    line-height: 1.05 !important;
    word-break: break-word !important;
    white-space: normal !important;
  }

  .services-inner {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .services-preview-col {
    justify-content: center !important;
  }

  .wt-footer__inner {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}