/* ========================================
   WEB HUNTED
   CLEAN MASTER STYLESHEET
======================================== */


/* ========================================
   RESET
======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f3f1ec;
  color: #111111;
  font-family: "Archivo", sans-serif;
  overflow-x: hidden;
}

button,
a {
  font: inherit;
}


/* ========================================
   HEADER
======================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  z-index: 1000;

  background: rgba(243, 241, 236, 0.90);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1600px, 94%);
  height: 88px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}


/* BRAND */

.brand {
  justify-self: start;

  color: #111111;

  text-decoration: none;

  font-size: 26px;
  font-weight: 800;

  letter-spacing: 2px;
}

.brand span {
  color: #168cff;
}


/* NAVIGATION */

.main-nav {
  display: flex;
  align-items: center;
  gap: 42px;
}

.main-nav a,
.header-cta {
  color: #111111;

  text-decoration: none;

  font-size: 15px;
  font-weight: 600;

  letter-spacing: 0.8px;

  transition: color 0.25s ease;
}

.main-nav a:hover,
.header-cta:hover {
  color: #168cff;
}


/* HEADER CTA */

.header-cta {
  justify-self: end;

  padding-bottom: 6px;

  border-bottom: 1px solid #168cff;
}


/* ========================================
   LUXURY SHOWCASE HERO
======================================== */

.luxury-showcase {
  position: relative;

  width: 100%;
  height: calc(100vh - 88px);

  margin-top: 88px;

  overflow: hidden;

  background: #11100e;
}


/* ========================================
   SHOWCASE SLIDES
======================================== */

.showcase-slide {
  position: absolute;
  inset: 0;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 1.6s ease,
    visibility 1.6s ease;
}

.showcase-slide.active {
  opacity: 1;
  visibility: visible;

  z-index: 2;
}


/* PROJECT IMAGE */

.showcase-slide img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  display: block;

  filter:
    saturate(0.78)
    contrast(1.05)
    sepia(0.10)
    brightness(0.88);

  transform: scale(1.015);

  transition: transform 7s ease;
}

.showcase-slide.active img {
  transform: scale(1.045);
}


/* VINTAGE / CINEMATIC OVERLAY */

.slide-overlay {
  position: absolute;
  inset: 0;

  z-index: 1;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(18, 14, 9, 0.34) 0%,
      rgba(18, 14, 9, 0.08) 45%,
      rgba(18, 14, 9, 0.18) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.12) 0%,
      transparent 45%,
      rgba(0, 0, 0, 0.52) 100%
    );
}


/* FILM GRAIN */

.luxury-showcase::after {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 5;

  pointer-events: none;

  opacity: 0.08;

  background-image:
    repeating-radial-gradient(
      circle at 20% 30%,
      rgba(255, 255, 255, 0.22) 0,
      rgba(255, 255, 255, 0.22) 0.5px,
      transparent 0.7px,
      transparent 3px
    );

  background-size: 7px 7px;

  mix-blend-mode: soft-light;
}


/* ========================================
   SHOWCASE PROJECT META
======================================== */

.slide-meta {
  position: absolute;

  left: 5%;
  bottom: 7%;

  z-index: 6;

  display: flex;
  align-items: flex-start;

  gap: 24px;

  color: #f5f1e8;
}

.slide-number {
  padding-top: 5px;

  font-family: "Cormorant Garamond", serif;

  font-size: 18px;
  font-weight: 500;

  opacity: 0.65;
}

.slide-meta p {
  margin-bottom: 8px;

  color: rgba(245, 241, 232, 0.68);

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 3px;
}

.slide-meta h2 {
  color: #f5f1e8;

  font-family: "Cormorant Garamond", serif;

  font-size: clamp(28px, 2.4vw, 46px);
  font-weight: 500;

  line-height: 1;

  letter-spacing: 1px;
}


/* ========================================
   SHOWCASE CONTROLS
======================================== */

.showcase-controls {
  position: absolute;

  right: 5%;
  bottom: 7%;

  z-index: 10;

  display: flex;
  align-items: center;

  gap: 20px;
}

.showcase-prev,
.showcase-next {
  appearance: none;

  border: 0;
  background: transparent;

  color: #f5f1e8;

  font-size: 20px;
  font-weight: 300;

  cursor: pointer;

  opacity: 0.65;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.showcase-prev:hover,
.showcase-next:hover {
  opacity: 1;
}

.showcase-prev:hover {
  transform: translateX(-4px);
}

.showcase-next:hover {
  transform: translateX(4px);
}


/* SLIDE INDICATORS */

.showcase-dots {
  display: flex;
  align-items: center;

  gap: 9px;
}

.showcase-dot {
  width: 26px;
  height: 1px;

  padding: 0;

  border: 0;

  background: rgba(245, 241, 232, 0.30);

  cursor: pointer;

  transition:
    width 0.4s ease,
    background 0.4s ease;
}

.showcase-dot.active {
  width: 48px;

  background: #f5f1e8;
}


/* ========================================
   BRAND STATEMENT
   CINEMATIC VIDEO SECTION
======================================== */

.brand-statement {
  position: relative;

  min-height: 100vh;

  overflow: hidden;

  display: flex;
  align-items: center;

  padding: 140px 0;

  background: #0e0e0e;
}


/* ========================================
   VIDEO BACKGROUND
======================================== */

.story-video-bg {
  position: absolute;
  inset: 0;

  z-index: 1;

  overflow: hidden;

  background: #111111;
}

.story-video {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  display: block;

  opacity: 0;
  visibility: hidden;

  transform: scale(1.02);

  transition:
    opacity 1.2s ease,
    visibility 1.2s ease,
    transform 7s ease;

  filter:
  sepia(0.32)
  saturate(0.68)
  contrast(1.12)
  brightness(0.82);
}

.story-video.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}


/* ========================================
   VIDEO WASH
======================================== */

.story-video-overlay {
  position: absolute;
  inset: 0;

  z-index: 2;
  pointer-events: none;

  background:
    radial-gradient(
      ellipse at center,
      transparent 45%,
      rgba(20, 15, 10, 0.10) 75%,
      rgba(20, 15, 10, 0.22) 100%
    ),
    linear-gradient(
      180deg,
      rgba(238, 222, 190, 0.08) 0%,
      rgba(40, 28, 18, 0.03) 55%,
      rgba(20, 14, 8, 0.16) 100%
    );
}

.story-video-bg::after {
  content: "";
  position: absolute;
  inset: 0;

  z-index: 3;
  pointer-events: none;

  opacity: 0.14;

  background-image:
    repeating-radial-gradient(
      circle,
      rgba(255, 255, 255, 0.22) 0,
      rgba(255, 255, 255, 0.22) 0.6px,
      transparent 0.8px,
      transparent 3px
    );

  background-size: 6px 6px;
  mix-blend-mode: soft-light;
}


/* ========================================
   STATEMENT FOREGROUND
======================================== */

.brand-statement-inner {
  position: relative;

  z-index: 5;

  width: min(1500px, 90%);

  margin: 0 auto;
}

.statement-eyebrow {
  position: relative;

  z-index: 6;

  margin-bottom: 28px;

  color: #168cff;

  font-family: "Archivo", sans-serif;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 3px;
}

.brand-statement h2 {
  position: relative;

  z-index: 6;

  max-width: 1200px;

  color: #ffffff;

  font-family: "Cormorant Garamond", serif;

  font-size: clamp(72px, 7vw, 132px);
  font-weight: 600;

  line-height: 0.92;

  letter-spacing: 0.5px;
}

.brand-statement h2 span {
  color: #168cff;
}

.statement-copy {
  position: relative;

  z-index: 6;

  max-width: 620px;

  margin-top: 42px;

  color: #ffffff;

  font-family: "Archivo", sans-serif;

  font-size: 18px;

  line-height: 1.7;
}


/* ========================================
   RESPONSIVE — TABLET
======================================== */

@media (max-width: 1100px) {

  .header-inner {
    width: 92%;
  }

  .main-nav {
    gap: 26px;
  }

  .brand-statement h2 {
    font-size: clamp(62px, 8vw, 100px);
  }

  .story-video-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(243, 241, 236, 0.94) 0%,
        rgba(243, 241, 236, 0.78) 48%,
        rgba(243, 241, 236, 0.28) 100%
      );
  }

}


/* ========================================
   RESPONSIVE — MOBILE
======================================== */

@media (max-width: 760px) {

  .header-inner {
    height: 74px;

    grid-template-columns: 1fr auto;
  }

  .brand {
    font-size: 20px;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    font-size: 12px;
  }

  .luxury-showcase {
    height: calc(100svh - 74px);
    margin-top: 74px;
  }

  .slide-meta {
    left: 6%;
    right: 6%;
    bottom: 10%;

    gap: 14px;
  }

  .slide-meta h2 {
    font-size: 30px;
  }

  .showcase-controls {
    right: 6%;
    bottom: 4%;
  }

  .brand-statement {
    min-height: 100svh;

    padding: 100px 0;
  }

  .brand-statement-inner {
    width: 88%;
  }

  .brand-statement h2 {
    font-size: clamp(52px, 14vw, 78px);

    line-height: 0.92;
  }

  .statement-copy {
    max-width: 430px;

    margin-top: 30px;

    font-size: 15px;
  }

  .story-video-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(243, 241, 236, 0.82) 0%,
        rgba(243, 241, 236, 0.66) 50%,
        rgba(243, 241, 236, 0.32) 100%
      );
  }

}

/* ========================================
   STATEMENT SHOW / HIDE
======================================== */

.brand-statement-inner {
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.brand-statement-inner.hide-for-video {
  opacity: 0;
  transform: translateY(-18px);
  pointer-events: none;
}

/* ========================================
   PROCESS INDICATOR
======================================== */

.process-indicator {
  position: absolute;
  left: 5%;
  bottom: 6%;

  z-index: 6;

  display: flex;
  align-items: flex-start;
  gap: 22px;

  color: #ffffff;

  opacity: 0;
  transform: translateY(10px);

  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.process-indicator.active {
  opacity: 1;
  transform: translateY(0);
}

.process-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  line-height: 1;
  color: #168cff;
}

.process-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
}

.process-description {
  font-size: 18px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.82);
}

/* ========================================
   FEATURED PROJECT
======================================== */

.project-feature {
  background: #f3f1ec;
  color: #111111;
  padding: 150px 0 0;
}

.project-feature-top {
  width: min(1500px, 90%);
  margin: 0 auto 70px;

  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: end;
}

.project-kicker {
  grid-column: 1 / -1;

  color: #168cff;
  font-family: "Archivo", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;

  margin-bottom: -35px;
}

.project-feature h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(76px, 7vw, 132px);
  line-height: 0.9;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.project-feature h2 span {
  color: #168cff;
}

.project-intro {
  max-width: 520px;
  justify-self: end;
  padding-bottom: 10px;
}

.project-intro p {
  color: #5e5e5e;
  font-size: 17px;
  line-height: 1.7;
}


/* ========================================
   PROJECT IMAGE
======================================== */

.project-feature-media {
  position: relative;

  width: 100%;
  min-height: 100vh;

  margin: 0;

  overflow: hidden;

  background: #111111;
}

.project-feature-media img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  display: block;

  transform: scale(1.01);

  filter:
    saturate(0.88)
    contrast(1.05);

  transition:
    transform 1.4s ease,
    filter 1.4s ease;
}

.project-feature-media:hover img {
  transform: scale(1.035);

  filter:
    saturate(1)
    contrast(1.08);
}


/* ========================================
   PROJECT DETAILS
======================================== */

.project-feature-bottom {
  width: min(1680px, 94%);
  margin: 0 auto 55px;

  display: grid;
  grid-template-columns: 1.35fr 1.6fr auto;
  gap: 80px;

  align-items: end;
}

.project-category {
  color: #168cff;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;

  margin-bottom: 10px;
}

.project-feature-bottom h3 {
  font-family: "Cormorant Garamond", serif;

  font-size: clamp(32px, 3vw, 52px);
  font-weight: 500;

  line-height: 1;
}


/* SPECIFICATIONS */

.project-details span {
  display: block;
  color: #168cff;
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  margin-bottom: 10px;
}

.project-details p {
  color: #5f5f5f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.6px;
  white-space: nowrap;
}

.project-link {
  color: #111111;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.4px;
  padding-bottom: 8px;
  border-bottom: 1px solid #168cff;
  transition: color 0.25s ease;
}


.project-link:hover {
  color: #168cff;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 900px) {

  .project-feature {
    padding: 100px 0 80px;
  }

  .project-feature-top {
    display: block;
  }

  .project-kicker {
    margin-bottom: 24px;
  }

  .project-intro {
    margin-top: 30px;
    justify-self: start;
  }

  .project-feature-media {
    min-height: 55vh;
  }

  .project-feature-bottom {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .project-details {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .project-link {
    width: fit-content;
  }

}

/* ========================================
   FORCE PROJECT DETAILS DESKTOP LAYOUT
======================================== */

.project-feature-bottom {
  width: min(1680px, 94%) !important;
  margin: 0 auto 55px !important;

  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;

  gap: 60px !important;
}

.project-feature-bottom > div:first-child {
  flex: 0 0 34%;
}

.project-details {
  flex: 1;

  display: flex !important;
  flex-direction: row !important;
  align-items: flex-end !important;
  justify-content: space-between !important;

  gap: 50px !important;
}

.project-details > div {
  min-width: 150px !important;
}

.project-link {
  flex: 0 0 auto;
  white-space: nowrap;
}

/* ========================================
   MOBILE — LUXURY SHOWCASE
======================================== */

@media (max-width: 700px) {

  .luxury-showcase {
    width: 100%;
    height: calc(100svh - 74px);
    min-height: 650px;
    overflow: hidden;
  }

  .showcase-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .showcase-slide img {
    position: absolute;

    width: auto;
    height: 100%;

    max-width: none;

    top: 0;
    left: 50%;

    transform: translateX(-50%);

    object-fit: cover;
  }

  .slide-overlay {
    background:
      linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0.15) 45%,
        rgba(0, 0, 0, 0.9) 100%
      );
  }

  .slide-meta {
    left: 28px;
    right: 28px;
    bottom: 82px;

    align-items: flex-start;
    gap: 14px;
  }

  .slide-number {
    font-size: 14px;
  }

  .slide-meta p {
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 8px;
  }

  .slide-meta h2 {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 0.95;
  }

  .showcase-controls {
    left: auto;
    right: 28px;
    bottom: 28px;

    transform: none;
  }

}

/* ========================================
   MOBILE — SELECTED WORK FIX
======================================== */

@media (max-width: 700px) {

  .project-feature {
    padding: 80px 0 0 !important;
  }

  .project-feature-top {
    width: 86% !important;
    margin: 0 auto 55px !important;
    display: block !important;
  }

  .project-kicker {
    margin-bottom: 24px !important;
  }

  .project-feature h2 {
    font-size: clamp(54px, 15vw, 72px) !important;
    line-height: 0.9 !important;
  }

  .project-intro {
    margin-top: 30px !important;
    max-width: 100% !important;
  }

  .project-intro p {
    font-size: 16px !important;
    line-height: 1.65 !important;
  }


  /* PROJECT INFORMATION */

  .project-feature-bottom {
    width: 86% !important;
    margin: 0 auto 45px !important;

    display: block !important;
  }

  .project-feature-bottom > div:first-child {
    width: 100% !important;
    flex: none !important;

    margin-bottom: 35px !important;
  }

  .project-feature-bottom h3 {
    font-size: 38px !important;
    line-height: 0.95 !important;
  }


  /* SPECS */

  .project-details {
    width: 100% !important;

    display: grid !important;
    grid-template-columns: 1fr 1fr !important;

    gap: 25px 20px !important;

    margin-bottom: 35px !important;
  }

  .project-details > div {
    min-width: 0 !important;
  }

  .project-details span {
    font-size: 28px !important;
  }

  .project-details p {
    font-size: 11px !important;
    line-height: 1.4 !important;

    white-space: normal !important;
  }


  /* EXPLORE LINK */

  .project-link {
    display: inline-block !important;
    width: fit-content !important;

    font-size: 12px !important;

    flex: none !important;
  }


  /* WEBSITE IMAGE */

  .project-feature-media {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;

  overflow: visible !important;
  background: #111111;
}

.project-feature-media img {
  position: relative !important;
  inset: auto !important;

  display: block !important;

  width: 100% !important;
  height: auto !important;

  max-width: 100% !important;

  object-fit: contain !important;
  object-position: center top !important;

  transform: none !important;
}

}

/* ========================================
   SERVICES
======================================== */

.services-section {
  background: #111111;
  color: #ffffff;
  padding: 150px 0;
}

.services-header {
  width: min(1500px, 90%);
  margin: 0 auto 110px;

  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: end;
}

.services-kicker {
  grid-column: 1 / -1;

  color: #168cff;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;

  margin-bottom: -35px;
}

.services-header h2 {
  font-family: "Cormorant Garamond", serif;

  font-size: clamp(76px, 7vw, 132px);
  font-weight: 600;

  line-height: 0.9;
}

.services-header h2 span {
  color: #168cff;
}

.services-intro {
  max-width: 520px;
  justify-self: end;

  color: rgba(255, 255, 255, 0.62);

  font-size: 17px;
  line-height: 1.7;
}

/* ========================================
   SERVICE INDEX
======================================== */

.services-index {
  width: min(1500px, 90%);
  margin: 0 auto;

  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.service-row {
  min-height: 150px;

  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  align-items: center;
  gap: 50px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.16);

  transition:
    background 0.35s ease,
    padding 0.35s ease;
}

.service-row:hover {
  background: rgba(255, 255, 255, 0.035);
  padding-left: 24px;
  padding-right: 24px;
}

.service-number {
  color: #168cff;

  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
}

.service-row h3 {
  font-family: "Cormorant Garamond", serif;

  font-size: clamp(32px, 3vw, 52px);
  font-weight: 500;
  line-height: 1;
}

.service-row p {
  max-width: 480px;

  color: rgba(255, 255, 255, 0.55);

  font-size: 15px;
  line-height: 1.7;
}

/* ========================================
   SERVICES MOBILE
======================================== */

@media (max-width: 700px) {

  .services-section {
    padding: 90px 0;
  }

  .services-header {
    width: 86%;
    display: block;
    margin-bottom: 65px;
  }

  .services-kicker {
    margin-bottom: 24px;
  }

  .services-header h2 {
    font-size: clamp(54px, 15vw, 72px);
  }

  .services-intro {
    margin-top: 30px;
    font-size: 16px;
  }

  .services-index {
    width: 86%;
  }

  .service-row {
    min-height: 0;

    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 10px 15px;

    padding: 32px 0;
  }

  .service-number {
    grid-row: 1 / 3;
    font-size: 28px;
  }

  .service-row h3 {
    font-size: 30px;
  }

  .service-row p {
    grid-column: 2;
    font-size: 14px;
  }

  .service-row:hover {
    padding-left: 0;
    padding-right: 0;
  }
}

.services-section {
  padding-top: 190px;
}

.service-row {
  min-height: 175px;
}

.service-row p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
}

/* ========================================
   LUXURY SERVICE REVEALS
======================================== */

.service-row {
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.service-detail {
  width: 100%;
}

.service-toggle {
  width: 100%;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 30px;

  padding: 0;

  border: 0;
  background: transparent;

  color: inherit;
  text-align: left;

  cursor: pointer;
}

.service-summary {
  max-width: 520px;

  color: rgba(255, 255, 255, 0.62);

  font-size: 16px;
  line-height: 1.7;
}

.service-icon {
  flex: 0 0 auto;

  color: #168cff;

  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 400;

  line-height: 1;

  transition:
    transform 0.35s ease,
    color 0.35s ease;
}

.service-expanded {
  max-height: 0;

  overflow: hidden;

  opacity: 0;

  transform: translateY(-8px);

  transition:
    max-height 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease,
    transform 0.45s ease;
}

.service-expanded p {
  max-width: 520px;

  margin-top: 20px;
  padding-right: 40px;

  color: rgba(255, 255, 255, 0.82);

  font-size: 16px;
  line-height: 1.8;
}

.service-row.open .service-expanded {
  max-height: 240px;

  opacity: 1;

  transform: translateY(0);
}

.service-row.open .service-icon {
  transform: rotate(45deg);
  color: #ffffff;
}


/* MOBILE */

@media (max-width: 700px) {

  .service-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-toggle {
    gap: 20px;
  }

  .service-summary,
  .service-expanded p {
    font-size: 14px;
  }

  .service-expanded p {
    padding-right: 0;
  }

}

/* ========================================
   PRICING
======================================== */

.pricing-section {
  background: #f3f1ec;
  color: #111111;

  padding: 160px 0;
}

.pricing-header {
  width: min(1500px, 90%);
  margin: 0 auto 100px;

  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: end;
}

.pricing-kicker {
  grid-column: 1 / -1;

  color: #168cff;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;

  margin-bottom: -35px;
}

.pricing-header h2 {
  font-family: "Cormorant Garamond", serif;

  font-size: clamp(76px, 7vw, 132px);
  font-weight: 600;

  line-height: 0.9;
}

.pricing-header h2 span {
  color: #168cff;
}

.pricing-intro {
  width: 100%;
  max-width: 430px;

  justify-self: start;

  color: #5f5f5f;

  font-size: 17px;
  line-height: 1.7;
}

/* ========================================
   MAIN PRICING AREA
======================================== */

.pricing-main {
  width: min(1500px, 90%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.1fr 1fr 0.85fr;
  gap: 70px;
  align-items: end;

  padding-top: 70px;

  border-top: 1px solid rgba(0, 0, 0, 0.14);
}


/* PRICE */

.pricing-price {
  display: flex;
  flex-direction: column;
}

.pricing-from {
  margin-bottom: 16px;

  color: #168cff;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
}

.pricing-price strong {
  font-family: "Cormorant Garamond", serif;

  font-size: clamp(90px, 8vw, 150px);
  font-weight: 600;

  line-height: 0.85;
}


/* INCLUDED */

.pricing-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
}

.pricing-includes div {
  padding-top: 14px;

  border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.pricing-includes span {
  display: block;

  margin-bottom: 8px;

  color: #168cff;

  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
}

.pricing-includes p {
  color: #5a5a5a;

  font-size: 14px;
  font-weight: 700;

  letter-spacing: 1.4px;
}


/* ACTION */

.pricing-action {
  max-width: 360px;
  justify-self: end;
}

.pricing-action p {
  margin-bottom: 28px;

  color: #5f5f5f;

  font-size: 16px;
  line-height: 1.7;
}

.pricing-action a {
  display: inline-block;

  color: #111111;

  text-decoration: none;

  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;

  padding-bottom: 8px;

  border-bottom: 1px solid #168cff;

  transition: color 0.25s ease;
}

.pricing-action a:hover {
  color: #168cff;
}


/* ========================================
   PRICING MOBILE
======================================== */

@media (max-width: 700px) {

  .pricing-section {
    padding: 90px 0;
  }

  .pricing-header {
    width: 86%;

    display: block;

    margin-bottom: 60px;
  }

  .pricing-kicker {
    margin-bottom: 24px;
  }

  .pricing-header h2 {
    font-size: clamp(42px, 10.5vw, 56px);
  }

  .pricing-intro {
    margin-top: 30px;

    font-size: 16px;
  }

  .pricing-main {
    width: 86%;

    display: block;

    padding-top: 45px;
  }

  .pricing-price {
    margin-bottom: 55px;
  }

  .pricing-price strong {
    font-size: clamp(86px, 25vw, 120px);
  }

  .pricing-includes {
    grid-template-columns: 1fr;
    gap: 20px;

    margin-bottom: 50px;
  }

  .pricing-action {
    max-width: 100%;
    justify-self: start;
  }

}

/* ========================================
   PRICING HEADER FIX
======================================== */

.pricing-header {
  width: min(1500px, 90%) !important;
  margin: 0 auto 100px !important;

  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  column-gap: 80px !important;
  row-gap: 45px !important;
}

.pricing-kicker {
  grid-column: 1 / -1 !important;
  margin-bottom: 0 !important;
}

.pricing-header h2 {
  grid-column: 1 / -1 !important;

  width: 100% !important;
  max-width: none !important;
}

.pricing-intro {
  grid-column: 2 !important;

  width: 100% !important;
  max-width: 520px !important;
  min-width: 0 !important;

  justify-self: end !important;

  font-size: 17px !important;
  line-height: 1.7 !important;
}

/* ========================================
   CONTACT
======================================== */

.contact-section {
  background: #0e0e0e;
  color: #ffffff;

  padding: 170px 0 150px;
}

.contact-inner {
  width: min(1500px, 90%);
  margin: 0 auto;
}

.contact-kicker {
  margin-bottom: 42px;

  color: #168cff;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
}

.contact-inner h2 {
  max-width: 1250px;

  font-family: "Cormorant Garamond", serif;

  font-size: clamp(82px, 8vw, 150px);
  font-weight: 600;

  line-height: 0.88;
}

.contact-inner h2 span {
  color: #168cff;
}

.contact-bottom {
  margin-top: 95px;
  padding-top: 38px;

  display: grid;
  grid-template-columns: 1fr auto;

  gap: 80px;
  align-items: end;

  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-copy {
  max-width: 560px;

  color: rgba(255, 255, 255, 0.62);

  font-size: 17px;
  line-height: 1.7;
}

.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;

  color: #ffffff;

  text-decoration: none;

  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.6px;

  padding-bottom: 10px;

  border-bottom: 1px solid #168cff;

  transition:
    color 0.3s ease,
    gap 0.3s ease;
}

.whatsapp-cta span {
  color: #168cff;

  font-size: 18px;
}

.whatsapp-cta:hover {
  color: #168cff;
  gap: 26px;
}


/* MOBILE */

@media (max-width: 700px) {

  .contact-section {
    padding: 100px 0 90px;
  }

  .contact-inner {
    width: 86%;
  }

  .contact-kicker {
    margin-bottom: 28px;
  }

  .contact-inner h2 {
    font-size: clamp(58px, 16vw, 82px);
  }

  .contact-bottom {
    margin-top: 60px;

    display: block;
  }

  .contact-copy {
    margin-bottom: 40px;

    font-size: 16px;
  }

}

/* ========================================
   FOOTER
======================================== */

.site-footer {
  background: #0e0e0e;
  color: #ffffff;

  padding: 42px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-inner {
  width: min(1500px, 90%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

  gap: 40px;
}

.footer-brand {
  justify-self: start;

  color: #ffffff;
  text-decoration: none;

  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1.8px;
}

.footer-brand span {
  color: #168cff;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer-nav a,
.footer-contact {
  color: rgba(255, 255, 255, 0.68);

  text-decoration: none;

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;

  transition: color 0.25s ease;
}

.footer-nav a:hover,
.footer-contact:hover {
  color: #168cff;
}

.footer-contact {
  justify-self: end;

  padding-bottom: 5px;

  border-bottom: 1px solid #168cff;
}


/* ========================================
   FOOTER MOBILE
======================================== */

@media (max-width: 700px) {

  .site-footer {
    padding: 38px 0;
  }

  .footer-inner {
    width: 86%;

    grid-template-columns: 1fr;
    gap: 26px;

    align-items: start;
  }

  .footer-brand,
  .footer-contact {
    justify-self: start;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 18px 24px;
  }

}

/* ========================================
   ABOUT PAGE
======================================== */

.about-hero {
  min-height: 100vh;
  background: #0e0e0e;
  color: #ffffff;

  display: flex;
  align-items: center;

  padding: 180px 0 120px;
}

.about-hero-inner {
  width: min(1500px, 90%);
  margin: 0 auto;
}

.about-kicker,
.about-label {
  color: #168cff;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
}

.about-kicker {
  margin-bottom: 45px;
}

.about-hero h1 {
  max-width: 1400px;

  font-family: "Cormorant Garamond", serif;

  font-size: clamp(82px, 8vw, 150px);
  font-weight: 600;

  line-height: 0.88;
}

.about-hero h1 span {
  color: #168cff;
}

.about-hero-copy {
  width: 100%;
  max-width: 650px;

  margin: 80px 0 0 auto;

  display: grid;
  gap: 24px;
}

.about-hero-copy p {
  color: rgba(255, 255, 255, 0.65);

  font-size: 17px;
  line-height: 1.75;
}


/* ========================================
   ABOUT CONTENT
======================================== */

.about-section {
  padding: 160px 0;
}

.about-light {
  background: #f3f1ec;
  color: #111111;
}

.about-dark {
  background: #111111;
  color: #ffffff;
}

.about-grid {
  width: min(1500px, 90%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.15fr 0.85fr;

  gap: 120px;
  align-items: start;
}

.about-label {
  margin-bottom: 38px;
}

.about-heading h2 {
  font-family: "Cormorant Garamond", serif;

  font-size: clamp(70px, 6.5vw, 120px);
  font-weight: 600;

  line-height: 0.9;
}

.about-heading h2 span {
  color: #168cff;
}


/* COPY */

.about-copy-block {
  padding-top: 55px;

  display: grid;
  gap: 34px;
}

.about-copy-block p {
  max-width: 600px;

  font-size: 18px;
  line-height: 1.8;
}

.about-light .about-copy-block p {
  color: #5f5f5f;
}

.about-dark .about-copy-block p {
  color: rgba(255, 255, 255, 0.65);
}


/* ========================================
   ABOUT CTA
======================================== */

.about-cta {
  background: #0e0e0e;
  color: #ffffff;

  padding: 170px 0 140px;
}

.about-cta-inner {
  width: min(1500px, 90%);
  margin: 0 auto;
}

.about-cta h2 {
  margin-top: 42px;

  font-family: "Cormorant Garamond", serif;

  font-size: clamp(82px, 8vw, 150px);
  font-weight: 600;

  line-height: 0.88;
}

.about-cta h2 span {
  color: #168cff;
}

.about-cta-bottom {
  margin-top: 90px;
  padding-top: 38px;

  display: grid;
  grid-template-columns: 1fr auto;

  gap: 80px;
  align-items: end;

  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.about-cta-bottom p {
  max-width: 540px;

  color: rgba(255, 255, 255, 0.62);

  font-size: 17px;
  line-height: 1.7;
}

.about-cta-bottom a {
  color: #ffffff;

  text-decoration: none;

  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;

  padding-bottom: 9px;

  border-bottom: 1px solid #168cff;

  transition: color 0.25s ease;
}

.about-cta-bottom a:hover {
  color: #168cff;
}


/* ========================================
   ABOUT MOBILE
======================================== */

@media (max-width: 700px) {

  .about-hero {
    min-height: auto;

    padding: 130px 0 90px;
  }

  .about-hero-inner,
  .about-grid,
  .about-cta-inner {
    width: 86%;
  }

  .about-kicker,
  .about-label {
    margin-bottom: 26px;
  }

  .about-hero h1 {
    font-size: clamp(56px, 15vw, 78px);
  }

  .about-hero-copy {
    margin-top: 55px;
  }

  .about-hero-copy p {
    font-size: 16px;
  }


  .about-section {
    padding: 90px 0;
  }

  .about-grid {
    display: block;
  }

  .about-heading h2 {
    font-size: clamp(54px, 14vw, 72px);
  }

  .about-copy-block {
    padding-top: 55px;
    gap: 25px;
  }

  .about-copy-block p {
    font-size: 16px;
    line-height: 1.7;
  }


  .about-cta {
    padding: 100px 0 90px;
  }

  .about-cta h2 {
    margin-top: 28px;

    font-size: clamp(56px, 15vw, 78px);
  }

  .about-cta-bottom {
    margin-top: 60px;

    display: block;
  }

  .about-cta-bottom p {
    margin-bottom: 40px;

    font-size: 16px;
  }

}

/* ========================================
   WHAT WEB HUNTED DOES
======================================== */

.what-we-do-intro {
  background: #f3f1ec;
  color: #111111;

  padding: 120px 0 110px;
}

.what-we-do-inner {
  width: min(1500px, 90%);
  margin: 0 auto;
}

.what-we-do-kicker {
  margin-bottom: 32px;

  color: #168cff;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
}

.what-we-do-inner h2 {
  max-width: 1200px;

  font-family: "Cormorant Garamond", serif;

  font-size: clamp(72px, 7vw, 126px);
  font-weight: 600;

  line-height: 0.9;
}

.what-we-do-inner h2 span {
  color: #168cff;
}

.what-we-do-copy {
  max-width: 720px;

  margin-top: 42px;

  color: #5f5f5f;

  font-size: 18px;
  line-height: 1.75;
}

.what-we-do-meta {
  margin-top: 65px;
  padding-top: 28px;

  display: flex;
  gap: 34px;
  flex-wrap: wrap;

  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.what-we-do-meta span {
  color: #5f5f5f;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
}


/* MOBILE */

@media (max-width: 700px) {

  .what-we-do-intro {
    padding: 85px 0 80px;
  }

  .what-we-do-inner {
    width: 86%;
  }

  .what-we-do-inner h2 {
    font-size: clamp(54px, 15vw, 72px);
  }

  .what-we-do-copy {
    margin-top: 30px;

    font-size: 16px;
  }

  .what-we-do-meta {
    margin-top: 45px;
    gap: 18px 24px;
  }

}

/* ========================================
   WHAT WE DO — LUXURY TEXT HOVERS
======================================== */

.what-we-do-kicker,
.what-we-do-inner h2,
.what-we-do-copy,
.what-we-do-meta span {
  transition:
    color 0.3s ease,
    transform 0.35s ease,
    opacity 0.3s ease;
}


/* KICKER */

.what-we-do-kicker:hover {
  color: #111111;
  transform: translateX(6px);
}


/* MAIN HEADING */

.what-we-do-inner h2:hover {
  transform: translateX(6px);
}

.what-we-do-inner h2 span {
  transition:
    color 0.3s ease,
    letter-spacing 0.35s ease;
}

.what-we-do-inner h2:hover span {
  color: #111111;
  letter-spacing: 2px;
}


/* DESCRIPTION */

.what-we-do-copy:hover {
  color: #111111;
  transform: translateX(5px);
}


/* BOTTOM WORDS */

.what-we-do-meta span {
  position: relative;
  cursor: default;
}

.what-we-do-meta span::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -7px;

  width: 0;
  height: 1px;

  background: #168cff;

  transition: width 0.3s ease;
}

.what-we-do-meta span:hover {
  color: #111111;
  transform: translateY(-3px);
}

.what-we-do-meta span:hover::after {
  width: 100%;
}

/* ========================================
   SHORT DESCRIPTOR HOVERS ONLY
======================================== */

.project-details > div,
.pricing-includes div {
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.project-details > div:hover,
.pricing-includes div:hover {
  transform: translateY(-4px);
}

.project-details p,
.pricing-includes p {
  position: relative;

  transition:
    color 0.3s ease,
    letter-spacing 0.3s ease;
}

.project-details p::after,
.pricing-includes p::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -7px;

  width: 0;
  height: 1px;

  background: #168cff;

  transition: width 0.3s ease;
}

.project-details > div:hover p,
.pricing-includes div:hover p {
  color: #168cff;
  letter-spacing: 1.8px;
}

.project-details > div:hover p::after,
.pricing-includes div:hover p::after {
  width: 100%;
}

.project-details span,
.pricing-includes span {
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.project-details > div:hover span,
.pricing-includes div:hover span {
  transform: translateX(3px);
}

/* ========================================
   FINAL MOBILE WIDTH FIX
======================================== */

@media (max-width: 700px) {

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
  }


  /* PRICING */

  .pricing-section {
    width: 100% !important;
    overflow: hidden !important;
  }

  .pricing-header {
    width: 86% !important;
    max-width: none !important;

    margin: 0 auto 60px !important;

    display: block !important;
  }

  .pricing-kicker {
    margin-bottom: 24px !important;
  }

 .pricing-header h2 {
  width: 100% !important;
  max-width: 100% !important;

  font-size: clamp(48px, 13vw, 68px) !important;

  overflow-wrap: normal !important;
}

.pricing-header h2 span {
  display: block;
  white-space: nowrap;
  font-size: 0.72em;
  letter-spacing: -0.5px;
}

  .pricing-intro {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;

    margin-top: 30px !important;

    justify-self: auto !important;
  }

  .pricing-main {
    width: 86% !important;
    max-width: 86% !important;

    margin: 0 auto !important;

    display: block !important;
  }

  .pricing-price,
  .pricing-includes,
  .pricing-action {
    width: 100% !important;
    max-width: 100% !important;
  }


  /* CONTACT */

  .contact-section {
    width: 100% !important;
    overflow: hidden !important;
  }

  .contact-inner {
    width: 86% !important;
    max-width: 86% !important;

    margin: 0 auto !important;
  }

  .contact-inner h2 {
    width: 100% !important;
    max-width: 100% !important;

    font-size: clamp(52px, 14vw, 72px) !important;

    overflow-wrap: normal !important;
  }

  .contact-bottom {
    width: 100% !important;

    display: block !important;
  }

  .contact-copy {
    width: 100% !important;
    max-width: 100% !important;
  }


  /* FOOTER */

  .site-footer,
  .footer-inner {
    max-width: 100% !important;
  }

}