* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #000;
}

/* HOME HERO */
.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  color: #fff4df;
  background: url("./hero.png") center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
  z-index: 1;
}

.top-bar {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 80px;
}

.brand {
  position: relative;
  z-index: 10;
  display: inline-block;
}

.slogan {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-65%);
  font-size: clamp(12px, 0.9vw, 16px);
  font-weight: 900;
  white-space: nowrap;
  letter-spacing: -0.5px;
  text-align: right;
}

.brand h1 {
  font-size: clamp(70px, 10vw, 140px);
  font-weight: 1000;
  line-height: 0.85;
  letter-spacing: -0.05em;
}

/* NAV */
.nav,
.about-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  position: relative;
  color: #fff4df;
  text-decoration: none;
  font-size: 16px;
  font-weight: 900;
  padding-bottom: 7px;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.dark-link {
  color: #2f3232;
}

/* HOME BLUR BOX */
.blur-box {
  position: absolute;
  z-index: 10;
  left: 60px;
  bottom: 40px;
  width: 320px;
  min-height: 280px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  color: #ffffff;
}

.blur-box h2 {
  font-size: 24px;
  line-height: 1.12;
  font-weight: 1000;
  text-align: left;
}

.divider {
  margin: 58px 0 28px;
  border-top: 2px dashed #ffffff;
}

.blur-box p {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 900;
  text-align: right;
}

/* SHARED ABOUT/SERVICES NAVBAR */
.about-navbar {
  width: 100%;
  height: 92px;
  padding: 0 56px;
  background: #fff4df;
  border-bottom: 2px solid #2f3232;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-logo {
  font-size: 34px;
  font-weight: 1000;
  letter-spacing: -0.06em;
  color: #2f3232;
}

/* ABOUT PAGE */
.about-body {
  min-height: 100vh;
  background: #fff4df;
  color: #2f3232;
}

.about-layout {
  width: 100%;
}

.about-title-strip {
  background: #fff4df;
  border-bottom: 2px solid #2f3232;
  padding: 18px 56px 10px;
}

.about-title-strip h1 {
  color: #2f3232;
  font-size: clamp(70px, 10vw, 150px);
  line-height: 0.85;
  font-weight: 1000;
  letter-spacing: -0.07em;
}

.about-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 460px 420px;
  min-height: 880px;
  border-bottom: 2px solid #2f3232;
}

.about-text-panel {
  background: #3f4242;
  color: #fff4df;
  padding: 44px 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-text-panel h2 {
  font-size: clamp(38px, 4.5vw, 76px);
  line-height: 0.95;
  font-weight: 1000;
  letter-spacing: -0.05em;
}

.about-text-panel h3 {
  font-size: 25px;
  font-weight: 1000;
  margin-bottom: 14px;
}

.about-text-panel p {
  max-width: 850px;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
  color: #ffffff;
}

.about-image {
  width: 100%;
  min-height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #2f3232;
}

.about-image-one {
  background-image: url("./hero2.webp");
  background-size: cover;
  border-left: 2px solid #2f3232;
}

.about-image-two {
  background-image: url("./hero3.webp");
  background-size: contain;
  border-top: 2px solid #2f3232;
}

.about-feature-panel {
  background: #fff4df;
  color: #3f4242;
  padding: 38px 44px;
  border-left: 2px solid #2f3232;
  border-top: 2px solid #2f3232;
  display: flex;
  align-items: center;
}

.about-feature-panel h2 {
  font-size: clamp(34px, 4vw, 64px);
  line-height: 0.9;
  font-weight: 1000;
  letter-spacing: -0.06em;
}

.about-written-section {
  background: #fff4df;
  color: #111;
  padding: 105px 80px 140px;
  border-top: 2px solid #2f3232;
  border-bottom: 2px solid #2f3232;
}

.about-written-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.about-written-inner h2 {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 70px;
}

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

.about-written-columns p {
  font-size: 22px;
  line-height: 1.28;
  font-weight: 500;
}

.about-written-columns p:last-child {
  margin-top: 90px;
}

/* SERVICES PAGE */
.services-body {
  background: #fff4df;
  color: #2f3232;
}

.services-page {
  background: #fff4df;
}

.section-label {
  font-size: 15px;
  font-weight: 1000;
  letter-spacing: 1px;
  margin-bottom: 22px;
}

/* HERO */
.services-hero {
  padding: 110px 80px 125px;
  border-bottom: 2px solid #2f3232;
}

.services-hero h1 {
  max-width: 1050px;
  font-size: clamp(58px, 8vw, 130px);
  line-height: 0.88;
  letter-spacing: -0.07em;
  font-weight: 1000;
  margin-bottom: 34px;
}

.services-hero p {
  max-width: 700px;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
}

/* SECTIONS */
.who-section,
.services-breakdown,
.process-section,
.proof-section,
.services-cta {
  padding: 95px 80px;
  border-bottom: 2px solid #2f3232;
}

.who-section h2,
.services-breakdown h2,
.process-section h2,
.proof-section h2,
.services-cta h2 {
  font-size: clamp(44px, 5vw, 86px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 1000;
  margin-bottom: 48px;
}

/* FEATURE BREAK SECTION */
.services-feature {
  background: #3f4242;
  color: #fff4df;
  padding: 120px 80px;
  text-align: center;
  border-bottom: 2px solid #2f3232;
}

.services-feature h2 {
  max-width: 1050px;
  margin: 0 auto;
  font-size: clamp(52px, 7vw, 115px);
  line-height: 0.88;
  letter-spacing: -0.07em;
  font-weight: 1000;
}

/* GRIDS */
.who-grid,
.process-grid,
.proof-grid {
  display: grid;
  gap: 24px;
}

.who-grid {
  grid-template-columns: repeat(3, 1fr);
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

/* INTERACTIVE CARDS */
.interactive-card,
.service-card {
  background: #3f4242;
  color: #fff4df;
  padding: 34px;
  min-height: 240px;
  border-radius: 28px;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.interactive-card:hover,
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(0,0,0,0.22);
}

.cream-card {
  background: #fff4df;
  color: #2f3232;
  border: 2px solid #2f3232;
}

.dark-card {
  background: #2f3232;
  color: #fff4df;
}

.accent-card {
  background: #7c6f5e;
  color: #fff4df;
}

.card-icon {
  display: block;
  font-size: 30px;
  font-weight: 1000;
  margin-bottom: 55px;
}

.who-grid h3,
.service-card h3,
.process-card h3 {
  font-size: 31px;
  line-height: 1;
  margin-bottom: 20px;
}

.who-grid p,
.service-card p,
.process-card p,
.proof-grid p {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
}

/* SERVICES BREAKDOWN */
.services-breakdown {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* PROCESS */
.process-card {
  position: relative;
}

.process-card span {
  display: block;
  font-size: 18px;
  font-weight: 1000;
  margin-bottom: 55px;
}

.process-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -24px;
  width: 24px;
  height: 2px;
  background: #2f3232;
}

/* PROOF */
.proof-grid strong {
  display: block;
  margin-top: 35px;
  font-size: 16px;
}

/* CTA */
.services-cta {
  background: #3f4242;
  color: #fff4df;
  text-align: center;
}

.services-cta h2 {
  max-width: 950px;
  margin: 0 auto 42px;
}

.services-cta a {
  display: inline-block;
  background: #fff4df;
  color: #2f3232;
  padding: 18px 36px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 1000;
  transition: transform 0.25s ease;
}

.services-cta a:hover {
  transform: translateY(-4px);
}


/* MOBILE */
@media (max-width: 850px) {
  .services-hero,
  .who-section,
  .services-breakdown,
  .process-section,
  .proof-section,
  .services-cta,
  .services-feature {
    padding: 65px 30px;
  }

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

  .process-card:not(:last-child)::after {
    display: none;
  }

  .interactive-card,
  .service-card {
    min-height: 220px;
  }
}
/* MOBILE */
@media (max-width: 850px) {
  .top-bar {
    padding: 30px;
    flex-direction: column;
    gap: 18px;
  }

  .slogan {
    position: static;
    transform: none;
    margin-bottom: 6px;
    text-align: left;
  }

  .brand h1 {
    font-size: 70px;
  }

  .nav,
  .about-nav {
    gap: 20px;
    flex-wrap: wrap;
  }

  .blur-box {
    left: 28px;
    bottom: 28px;
    width: 285px;
  }

  .about-navbar {
    height: auto;
    padding: 25px 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .about-title-strip {
    padding: 25px 30px 18px;
  }

  .about-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto 330px 330px auto;
    min-height: auto;
  }

  .about-text-panel {
    min-height: 520px;
    padding: 36px 30px;
  }

  .about-image-one,
  .about-image-two,
  .about-feature-panel {
    border-left: none;
  }

  .about-feature-panel {
    min-height: 220px;
  }

  .about-written-section {
    padding: 70px 30px 90px;
  }

  .about-written-inner h2 {
    margin-bottom: 45px;
  }

  .about-written-columns,
  .who-grid,
  .process-grid,
  .proof-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-written-columns p,
  .services-hero p {
    font-size: 18px;
  }

  .about-written-columns p:last-child {
    margin-top: 0;
  }

  .services-hero,
  .who-section,
  .services-breakdown,
  .process-section,
  .proof-section,
  .services-cta {
    padding: 65px 30px;
  }
}

/* CONTACT PAGE */
.contact-body {
  background: #fff4df;
  color: #2f3232;
}

.contact-page {
  background: #fff4df;
}

.contact-hero {
  padding: 100px 80px 110px;
  border-bottom: 2px solid #2f3232;
}

.contact-hero h1 {
  max-width: 950px;
  font-size: clamp(60px, 8vw, 125px);
  line-height: 0.9;
  letter-spacing: -0.07em;
  font-weight: 1000;
  margin-bottom: 30px;
}

.contact-hero p {
  max-width: 650px;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 32px;
  padding: 90px 80px;
}

.contact-info,
.contact-form {
  background: #3f4242;
  color: #fff4df;
  padding: 36px;
  border-radius: 24px;
}

.contact-info h2 {
  font-size: 44px;
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 1000;
  margin-bottom: 60px;
}

.contact-detail {
  border-top: 1px solid rgba(255, 244, 223, 0.35);
  padding: 24px 0;
}

.contact-detail span {
  display: block;
  font-size: 14px;
  font-weight: 1000;
  margin-bottom: 8px;
  opacity: 0.75;
}

.contact-detail p {
  font-size: 20px;
  font-weight: 800;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 2px solid transparent;
  outline: none;
  background: #fff4df;
  color: #2f3232;
  padding: 18px 20px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
}

.contact-form textarea {
  min-height: 220px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(47, 50, 50, 0.65);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ffffff;
}

.contact-form button {
  width: fit-content;
  border: none;
  cursor: pointer;
  background: #fff4df;
  color: #2f3232;
  padding: 18px 34px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 1000;
  transition: transform 0.25s ease;
}

.contact-form button:hover {
  transform: translateY(-3px);
}

@media (max-width: 850px) {
  .contact-hero,
  .contact-section {
    padding: 65px 30px;
  }

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

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

